-
Notifications
You must be signed in to change notification settings - Fork 0
/
porting_pdf.xml
29 lines (25 loc) · 1.15 KB
/
porting_pdf.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This file is part of the DITA Open Toolkit project hosted on
Sourceforge.net. See the accompanying license.txt file for
applicable licenses.-->
<!-- (c) Copyright IBM Corp. 2004, 2006 All Rights Reserved. -->
<!-- revise @PLACEHOLDER@ names and values-->
<!--
| basedir can be specified to other places base on your need.
|
| Note: input, output, and temp directories will base on the basedir if
| they are relative paths.
* -->
<project name="porting_pdf" default="template_pdf" basedir=".">
<!-- dita.dir should point to the toolkit's root directory -->
<property name="dita.dir" location="${basedir}${file.separator}..${file.separator}DITA-OT"/>
<target name="template_pdf">
<ant antfile="${dita.dir}${file.separator}build.xml">
<!-- please refer to the toolkit's document for supported parameters, and
specify them base on your needs -->
<property name="args.input" location="porting.ditamap"/>
<property name="output.dir" location="out"/>
<property name="transtype" value="pdf"/>
</ant>
</target>
</project>