Changeset 3153
- Timestamp:
- Mar 5, 2007, 1:34:17 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 1060 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r3126 r3153 237 237 /> 238 238 239 <target 240 name="docbook" 241 depends="dev.init,doc.docbook" 242 description="Generate docbook documentation. This target is temporary. 243 It will be included in the 'doc' target in the future." 244 /> 245 246 239 247 <!-- init targets --> 240 248 <target … … 912 920 name="doc.init" 913 921 > 922 <property name="docbook.src" location="doc/src/docbook" 923 description="Location of docbook source XML files" /> 914 924 <path id="javadoc.classpath" description="Class path for generating javadoc"> 915 925 <path refid="core.classpath" /> … … 988 998 </target> 989 999 1000 <target 1001 name="doc.docbook" 1002 depends="doc.init" 1003 description="Generate docbook user and admin documentation." 1004 > 1005 <mkdir dir="${doc}/docbook" /> 1006 <mkdir dir="${build}/docbook" /> 1007 <delete dir="${build}/docbook" includes="**/*.*" /> 1008 <ant antfile="${lib}/docbook/ant-build-docbook.xml" inheritall="false" target="html.chunked"> 1009 <property name="ant.docbook.styler.dir" location="${lib}/docbook" /> 1010 <property name="docbook.xml.dir" location="${docbook.src}" /> 1011 <property name="docbook.resources.dir" location="${docbook.src}/images" /> 1012 <property name="distribution.dir" location="${doc}/docbook" /> 1013 <property name="build.dir" location="${build}/docbook" /> 1014 </ant> 1015 </target> 1016 990 1017 <target 991 1018 name="doc.dist" … … 1087 1114 <delete dir="${tempdir}" /> 1088 1115 </target> 1089 1116 1090 1117 </project> -
trunk/doc/3rd-party-components.txt
r3117 r3153 207 207 ganymed.jar 208 208 209 210 Docbook 211 ------- 212 A set of DTD:s and stylesheets for creating documentation. We use 213 the DocBook styler suite (see below) but has upgraded it to Docbook 4.5. 214 215 More info: http://www.docbook.org/ 216 Version : 4.5 217 License : docbook.license.txt 218 Files : Everything in lib/docbook/docbook 219 220 221 Docbook styler guide 222 -------------------- 223 An extension to docbook created by Dawid Weiss which simplifies 224 file inclusion and building from ant. 225 226 More info: http://www.cs.put.poznan.pl/dweiss/xml/projects/ant-docbook-styler/index.xml?lang=en 227 Version : 2004_06_22-21_12 228 License : docbook.styler.guide.txt 229 Files : Everything in lib/docbook except the 'docbook' subdirectory 230 231 232 233
Note: See TracChangeset
for help on using the changeset viewer.