Changeset 3156


Ignore:
Timestamp:
Mar 5, 2007, 1:47:18 PM (16 years ago)
Author:
Nicklas Nordborg
Message:

Added info about how to build the docbook documentation.
Clean up files before building documentation.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r3153 r3156  
    122122      <fileset dir="www/WEB-INF" includes="web.xml" defaultexcludes="no" />
    123123      <fileset dir="doc/api" defaultexcludes="no" />
     124      <fileset dir="doc/docbook" defaultexcludes="no" />
    124125      <fileset file="doc/development/plugins/exampleplugins.tar.gz" />
    125126    </delete>
     
    10051006    <mkdir dir="${doc}/docbook" />
    10061007    <mkdir dir="${build}/docbook" />
    1007     <delete dir="${build}/docbook" includes="**/*.*" />
     1008    <delete description="Delete existing documents">
     1009      <fileset dir="${build}/docbook" defaultexcludes="no" />
     1010      <fileset dir="${doc}/docbook" defaultexcludes="no" />
     1011    </delete>
    10081012    <ant antfile="${lib}/docbook/ant-build-docbook.xml" inheritall="false" target="html.chunked">
    10091013      <property name="ant.docbook.styler.dir" location="${lib}/docbook" />
  • trunk/doc/development/build.html

    r2959 r3156  
    245245    Generate documentation for local use.
    246246  </dd>
     247 
     248  <dt>ant docbook</dt>
     249  <dd>
     250    Temporary target for generating the docbook-based user documentation.
     251    In the future this will be included in the 'ant doc' target. Note!
     252    Docbook will work with pure Java but performance is a lot better if
     253    <a href="http://xmlsoft.org/XSLT/">XSLTPROC</a> is installed. The
     254    documentation is generated in the directory 'doc/docbook'.
     255  </dd>
    247256  </dl>
    248257
Note: See TracChangeset for help on using the changeset viewer.