Update of /cvsroot/babeldoc/babeldoc
In directory sc8-pr-cvs1:/tmp/cvs-serv30555
Modified Files:
build.xml quickstart-en.txt
Log Message:
Changes to the build.xml, quickstart.txt and the documentation pipeline. The documentation pipeline now doesnt require a file - it loads the userguide and devguide automatically.
Index: build.xml
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** build.xml 29 Aug 2003 21:16:07 -0000 1.15
--- build.xml 4 Sep 2003 03:16:53 -0000 1.16
***************
*** 45,49 ****
<zip destfile="${bin_zip_file}.zip">
<zipfileset dir="." includes="quickstart*.txt" prefix="${bin_zip_file}"/>
! <zipfileset dir="readme" prefix="${bin_zip_file}/readme"/>
<zipfileset dir="build" includes="**/*" prefix="${bin_zip_file}"/>
</zip>
--- 45,49 ----
<zip destfile="${bin_zip_file}.zip">
<zipfileset dir="." includes="quickstart*.txt" prefix="${bin_zip_file}"/>
! <!--<zipfileset dir="readme" prefix="${bin_zip_file}/readme"/>-->
<zipfileset dir="build" includes="**/*" prefix="${bin_zip_file}"/>
</zip>
***************
*** 166,169 ****
--- 166,172 ----
</target>
+ <!--
+ Setup the project
+ -->
<target
name="setup"
***************
*** 176,179 ****
--- 179,183 ----
<moduleRunner target="setup" modules="${babeldoc_modules}"/>
</target>
+
<!--
Build target - call build on all the modules
***************
*** 187,190 ****
--- 191,197 ----
<moduleRunner target="build" modules="${babeldoc_modules}"/>
+ <copy toDir="build/readme">
+ <fileset dir="readme"/>
+ </copy>
</target>
Index: quickstart-en.txt
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/quickstart-en.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** quickstart-en.txt 27 Jun 2003 02:43:17 -0000 1.5
--- quickstart-en.txt 4 Sep 2003 03:16:53 -0000 1.6
***************
*** 15,23 ****
3. Building (if required)
-----------
! a1. Windows: build setup
! a2. Windows: build
- b1. Unix: ./build.sh setup (you might need to make this executable)
- b1. Unix: ./build.sh
4. Environment variables
--- 15,23 ----
3. Building (if required)
-----------
! a. Windows: build setup build
! b. Unix: ./build.sh setup build
!
! (you might need to make the build.sh script executable)
4. Environment variables
***************
*** 26,30 ****
attempt to find the correct BABELDOC_HOME directory.
! a. Set the BABELDOC_HOME environmet variable to the subdirectory
'build' in the directory you have installed Babeldoc.
b. Add %BABELDOC_HOME%\bin (Windows) or ${BABELDOC_HOME}\bin (*nix) to
--- 26,30 ----
attempt to find the correct BABELDOC_HOME directory.
! a. Set the BABELDOC_HOME environment variable to the subdirectory
'build' in the directory you have installed Babeldoc.
b. Add %BABELDOC_HOME%\bin (Windows) or ${BABELDOC_HOME}\bin (*nix) to
***************
*** 34,39 ****
5. Documentation: userguide
----------------------------
! a. Windows: build\bin\babeldoc process -p documentation -f readme\userguide.xml -a "style=html"
b1. Unix: You may need to make files executable: ./build.sh make-executable
! b2. Unix: build/bin/babeldoc process -p documentation -f readme/userguide.xml -a style=html
! (The documentation will be written to readme/userguide.xml.html)
--- 34,42 ----
5. Documentation: userguide
----------------------------
! a. Windows: babeldoc process -p documentation -a "style=html"
b1. Unix: You may need to make files executable: ./build.sh make-executable
! b2. Unix: babeldoc process -p documentation -a style=html
!
! The documentation will be written to the files:
! 1. readme/userguide.xml.html
! 2. readme/devguide.xml.html
|