Installing the DITA Tookit full package distribution

Installing the full package distribution

To install the full package:
  • Download the full package from http://sourceforge.net/projects/dita-ot.
  • Unzip the package into the C:\ditaot directory on Windows, or into a home directory on Linux.
  • On Windows, create a new shortcut for C:\ditaot\startcmd.bat to be used to run DITA builds. On Linux execute the shell script startcmd.sh before running a DITA build.
Note: You cannot run a DITA Toolkit build until you have installed the Java SDK.
Note: You may want to install other optional tools to complete your build environment.

Verifying the installation

Unzip or extract the "fullpackage" zip file to a convenient directory, such as your C: drive's root directory. The package will install a directory called dita-ot1.3.1 that contains not only the usual Toolkit materials but also all the run-time components needed to run the Toolkit in a basic evaluation mode.

Browse to this new directory and double-click on the startcmd.bat file in that directory. A new command shell window will open up, with the environment variables already set to enable the Toolkit to run within that shell.

At the command prompt (usually C:\dita-ot1.3.1 for this version), type ant samples.web -f build_demo.xml After a series of processing messages, there should be a new \out directory in the dita-ot1.3.1 directory that contains a folder with the resulting HTML output in it.

Now try the full set of transforms from a single command: ant all -f build_demo.xml This command will process every DITA example in the Toolkit into each of the supported output types. After a much longer flurry of messages stops, the \out directory should have a number of folders in it, each with several forms of deliverable produced by the Toolkit demos. If you have the Microsoft HTMLHelp Workshop or the JavaHelp toolset installed, you will even get ready-to use .chm and .javahelp output files. By comparing the outputs with the various source materials in the distribution, you can get an idea about how the processing works. See Processing (building) and publishing DITA documents for more information on processing.

Demo targets

 all                             Build all output
 clean                           Delete all output
   clean.demo                      Remove the demo output
     clean.demo.book                 Remove the book demo output
     clean.demo.elementref           Remove the Element Reference demo output
     clean.demo.enote                Remove the eNote demo output
     clean.demo.faq                  Remove the FAQ demo output
     clean.demo.langref              Remove the Language Reference demo output
     clean.demo.langref.compilehelp  Remove the Language Reference as HTML Help output
   clean.doc                       Remove the documentation output
     clean.doc.articles              Delete the articles directory in doc.
     clean.doc.langref               Delete the langref directory in doc.
   clean.docbook                   Remove the docbook output
   clean.samples                   Remove the sample output
     clean.samples.eclipse           Remove the sample Eclipse output
     clean.samples.htmlhelp          Remove the sample HTMLHelp output
     clean.samples.javahelp          Remove the sample JavaHelp output
     clean.samples.pdf               Remove the sample PDF output
     clean.samples.web               Remove the sample web output
 demo                            Build the demos
   demo.book                       Build the book demo
   demo.elementref                 Build the element reference demo
   demo.enote                      Build the eNote demo
   demo.faq                        Build the FAQ demo
   demo.langref                    Build the Language Reference book as a demo
   demo.langref.compilehelp        Build the Language Reference as HTML Help (if the workshop is installed)
 doc                             Build the documentation
   doc.articles.chm                Build the articles of dita as document.
   doc.articles.pdf                Build the articles of dita as document.
   doc.articles.web                Build the articles of dita as document.
   doc.langref.chm                 Build the langref document.
   doc.langref.pdf                 Build the langref document.
   doc.langref.web                 Build the langref document.
 docbook                         Transform the samples to DocBook
 prompt                          Prompt to build anything
 samples                         Build the sample output
   samples.eclipse                 Build the samples for Eclipse
   samples.htmlhelp                Build the samples for HTMLHelp
   samples.javahelp                Build the samples for JavaHelp
   samples.pdf                     Build the samples as PDF
   samples.troff                   Build the samples as troff
   samples.web                     Build the samples for the web
   

If you do not specify a target for build_demo.xml, the default target is prompt.

You can also try your hand at modifying some of the sample scripts in the ant directory. These represent the kind of driver files that you would create for your own projects. You can easily adapt these to process your own test DITA files. Run the other ant samples using this example:

C:\dita-ot1.3.1>ant -f ant/sample_xhtml.xml

This is basically the same as running ant samples.web -f build_demo.xml, but intended for you to modify.

You will find the output for this exercise in the ant directory itself. You can add parameters to the sample_xhtml.xml file to change where your outputs end up, and also to modify the build process in other ways. See Ant processing parameters to learn more about processing options.