Changeset 3153


Ignore:
Timestamp:
Mar 5, 2007, 1:34:17 PM (17 years ago)
Author:
Nicklas Nordborg
Message:

Added docbook DTD:s and stylesheets

Location:
trunk
Files:
1060 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r3126 r3153  
    237237  />
    238238 
     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 
    239247  <!-- init targets -->
    240248  <target
     
    912920    name="doc.init"
    913921    >
     922    <property name="docbook.src" location="doc/src/docbook"
     923      description="Location of docbook source XML files" />
    914924    <path id="javadoc.classpath" description="Class path for generating javadoc">
    915925      <path refid="core.classpath" />
     
    988998  </target>
    989999 
     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 
    9901017  <target
    9911018    name="doc.dist"
     
    10871114    <delete dir="${tempdir}" />
    10881115  </target>
    1089 
     1116 
    10901117</project>
  • trunk/doc/3rd-party-components.txt

    r3117 r3153  
    207207            ganymed.jar
    208208
     209
     210Docbook
     211-------
     212A set of DTD:s and stylesheets for creating documentation. We use
     213the DocBook styler suite (see below) but has upgraded it to Docbook 4.5.
     214
     215More info: http://www.docbook.org/
     216Version  : 4.5
     217License  : docbook.license.txt
     218Files    : Everything in lib/docbook/docbook
     219
     220
     221Docbook styler guide
     222--------------------
     223An extension to docbook created by Dawid Weiss which simplifies
     224file inclusion and building from ant.
     225
     226More info: http://www.cs.put.poznan.pl/dweiss/xml/projects/ant-docbook-styler/index.xml?lang=en
     227Version  : 2004_06_22-21_12
     228License  : docbook.styler.guide.txt
     229Files    : Everything in lib/docbook except the 'docbook' subdirectory
     230
     231
     232
     233
Note: See TracChangeset for help on using the changeset viewer.