Specify the filename for a PDF

A DITA-OT build parameter enables you to specify the filename for a PDF.

About this task

By default, PDFs generated from the Output Generator have the source map's filename: abc1234567890987.pdf, for example. This is not very useful for humans and can change when a map is forked.

The DITA-OT includes a build parameter, outputFile.base, that enables you to enter or select a filename when you generate PDF output.

Note: This process is not the same as the Predictable Filename preprocessor. Predictable Filename applies to HTML-based outputs.

Procedure

  1. Check out and open %OutputGenDir%/conf/client/preprocessors.xml.

    If you use the Output Generator Access Tool, be sure to follow the established process.

  2. Add a user parameter for outputFile.base.

    This step creates a new option on the Generate Output dialog. You can add the parameter as a simple string, where the user can enter a filename each time they generate the PDF:

    <parameter label="PDF Filename" name="acme.args.outputFile.base" mandatory="false" type="string"/>

    Or you can add the parameter as a list, where the user can select the appropriate filename. This requires a little more setup and ongoing updates but ensures that filenames remain consistent.

    <parameter label="PDF Filename" name="acme.args.outputFile.base" mandatory="false" type="choice">
    	<value name="ACME-Admin-Guide">ACME-Admin-Guide</value>
    	<value name="ACME-User-Guide">ACME-User-Guide</value>
    	<value name="ACME-FAQs">ACME-FAQs</value>
    	<value name="ACME-Training-Guide">ACME-Training-Guide</value>
    </parameter>
  3. Save and check in the preprocessors.xml file.
  4. Check out and open the %OutputGenDir%/data/conductor-client.xml file (or wherever your PDF target lives).
  5. In the appropriate target, add a new parameter.
    <ot_build_set_parameter name="outputFile.base" value="${outgen.job.userparam.acme.args.outputFile.base}"/>

    This step passes the user input on the Generate Outputdialog to the Output Generator.

  6. Save and check in the conductor-client.xml file.

    You do not have to restart the Output Generator The changes are available automatically.

    To use the outputFile.base in a Build Manifest, continue with the following steps.

  7. Check out and open the Build Manifest.
  8. Open the Outputs tab and select a PDF output.
  9. Select the Override default ditaval/languages/parameters check box.
  10. In the User parameters grid, right-click and select Add.
  11. As the key, enter the name of the parameter.

    In this example, that is acme.args.outputFile.base.

  12. As the value, enter the filename you want to give the PDF.
  13. Save and check in the Build Manifest.