[Idrs-commit] CVS: Idrs/dev build.xml,1.10,1.11
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-09-09 21:27:46
|
Update of /cvsroot/idrs/Idrs/dev
In directory usw-pr-cvs1:/tmp/cvs-serv10950
Modified Files:
build.xml
Log Message:
added transaction support and new form handling
Index: build.xml
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** build.xml 23 Aug 2002 00:40:07 -0000 1.10
--- build.xml 9 Sep 2002 21:27:42 -0000 1.11
***************
*** 56,68 ****
<!-- Tag the results -->
! <cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" command="tag ${tag}" />
<!-- export results to temp file -->
! <cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" tag="${tag}" command="export" dest="${tmp_export}" />
<!-- for debugging -->
! <!--<copy todir="${tmp_export}/Idrs">
! <fileset dir="/home/mlb/Idrs" />
! </copy> -->
<!-- create distribution -->
--- 56,71 ----
<!-- Tag the results -->
! <cvs cvsRoot="${cvsroot}" cvsRsh="ssh" command="tag ${tag}" />
<!-- export results to temp file -->
! <!--<cvs package="Idrs" cvsRoot="${cvsroot}" cvsRsh="ssh" tag="${tag}" command="export" dest="${tmp_export}" /> -->
<!-- for debugging -->
! <copy todir="${tmp_export}/Idrs">
! <fileset dir="/home/mlb/projects/Idrs">
! <exclude name="**/CVS" />
! <exclude name="dist" />
! </fileset>
! </copy>
<!-- create distribution -->
***************
*** 91,96 ****
<copy todir="${tmp}/bin/WEB-INF" file="${tmp_export}/Idrs/dev/xml/web.xml" />
! <copy todir="${tmp}/sql_dir">
! <fileset dir="${tmp_export}/Idrs/sql_dir" />
</copy>
--- 94,99 ----
<copy todir="${tmp}/bin/WEB-INF" file="${tmp_export}/Idrs/dev/xml/web.xml" />
! <copy todir="${tmp}/sql_scripts">
! <fileset dir="${tmp_export}/Idrs/sql_scripts" />
</copy>
***************
*** 102,106 ****
<fileset dir="${tmp_export}/Idrs/docs/tutorials" />
</copy>
!
<copy todir="${tmp}">
<fileset dir="${tmp_export}/Idrs/docs" includes="**/RML.htm" />
--- 105,109 ----
<fileset dir="${tmp_export}/Idrs/docs/tutorials" />
</copy>
!
<copy todir="${tmp}">
<fileset dir="${tmp_export}/Idrs/docs" includes="**/RML.htm" />
***************
*** 108,121 ****
<copy todir="${tmp}" file="${tmp_export}/Idrs/README" />
-
!
!
!
<!-- copy directory to dist -->
<copy todir="${dist}/package-${tag}/idrs-${tag}">
<fileset dir="${tmp}" />
</copy>
!
<!-- package the files into distributions -->
<tar destfile="${dist}/packages/idrs-${tag}.tar" basedir="${dist}/package-${tag}" />
--- 111,124 ----
<copy todir="${tmp}" file="${tmp_export}/Idrs/README" />
!
!
!
!
<!-- copy directory to dist -->
<copy todir="${dist}/package-${tag}/idrs-${tag}">
<fileset dir="${tmp}" />
</copy>
!
<!-- package the files into distributions -->
<tar destfile="${dist}/packages/idrs-${tag}.tar" basedir="${dist}/package-${tag}" />
|