tmf/lttng: Add Export To Text feature to User Guide
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.help / build.xml
CommitLineData
70f06a6f 1<?xml version="1.0" encoding="UTF-8"?>
82de5675 2<project name="org.eclipse.linuxtools.lttng.help" default="build">
12bf6834
FC
3 <description>
4 Generate Eclipse help content for the Linux Tools LTTng user guide
5 </description>
6
82de5675 7 <!-- Set correct values -->
12bf6834 8 <property name="help.doc.url.base" value="http://wiki.eclipse.org" />
6dc1ef9f 9 <property name="ug.path" value="Linux_Tools_Project/LTTng2/User_Guide" />
12bf6834
FC
10 <property name="ug.title" value="LTTng Plug-in User Guide" />
11
12bf6834 12 <path id="wikitext.tasks.classpath">
82de5675
AM
13 <!-- Search in the local Eclipse installation directory for the Wikitext plugin -->
14 <fileset dir="${eclipse.home}/plugins" erroronmissingdir="false">
12bf6834
FC
15 <include name="org.eclipse.mylyn.wikitext.*core*.jar" />
16 </fileset>
82de5675
AM
17
18 <!-- Search in the system-wide installation directory (Debian) -->
19 <fileset dir="/usr/share/eclipse/dropins/mylyn-wikitext/eclipse/plugins" erroronmissingdir="false">
20 <include name="org.eclipse.mylyn.wikitext.*core*.jar" />
21 </fileset>
22
23 <!-- For Maven builds: use the compile_classpath -->
24 <pathelement path="${compile_classpath}" />
12bf6834 25 </path>
82de5675 26
12bf6834
FC
27 <taskdef classpathref="wikitext.tasks.classpath" resource="org/eclipse/mylyn/internal/wikitext/mediawiki/core/tasks/tasks.properties" />
28 <taskdef classpathref="wikitext.tasks.classpath" resource="org/eclipse/mylyn/wikitext/core/util/anttask/tasks.properties" />
29
82de5675
AM
30 <target name="build" description="Generate Eclipse help content for the Linux Tools LTTng User Guide">
31 <wikitext-to-eclipse-help markupLanguage="MediaWiki"
ff25eb47
BH
32 validate="true"
33 failonvalidationerror="true"
82de5675
AM
34 overwrite="true"
35 multipleOutputFiles="true"
ff25eb47
BH
36 navigationimages="true"
37 title="${ug.title}"
38 formatoutput="true"
82de5675
AM
39 helpPrefix="doc">
40 <fileset dir="./doc">
41 <include name="User-Guide.mediawiki" />
42 </fileset>
ff25eb47
BH
43 <stylesheet url="book.css" />
44 </wikitext-to-eclipse-help>
45 <antcall target="test" />
12bf6834
FC
46 </target>
47
48 <target name="test" description="Verify that all of the HTML files are well-formed XML">
12bf6834
FC
49 <!--
50 Don't bother with DTD validation: we only care if the files are well-formed.
51 We therefore provide an empty DTD
52 -->
12bf6834 53 <xmlvalidate lenient="true">
ff25eb47 54 <fileset dir="doc">
12bf6834
FC
55 <include name="**/*.html" />
56 </fileset>
82de5675 57 <dtd publicid="-//W3C//DTD XHTML 1.0 Transitional//EN" location=".empty.dtd" />
12bf6834 58 </xmlvalidate>
12bf6834 59 </target>
82de5675
AM
60
61
62 <!-- If you need a proxy for the "download" target, set it here -->
63 <!--
64 <setproxy proxyhost="host" proxyport="port"/>
65 -->
66
67 <target name="download" description="Download the current contents of the LTTng User Guide from the Eclipse wiki">
68 <mediawiki-to-eclipse-help wikiBaseUrl="${help.doc.url.base}" title="${ug.title}" formatoutput="true" dest="." templateExcludes="*eclipseproject*">
69 <path name="${ug.path}" title="${ug.title}" generateToc="false" />
70 <stylesheet url="book.css" />
71 <pageAppendum>
72= Updating This Document =
73
74This document is maintained in a collaborative wiki. If you wish to update or modify this document please visit
75http://wiki.eclipse.org/Linux_Tools_Project/LTTng2/User_Guide.
76 </pageAppendum>
77 </mediawiki-to-eclipse-help>
78 </target>
79
80 <target name ="clean" description="Delete all generated files">
81 <delete failonerror="false" includeemptydirs="true">
82 <!-- Files under doc/ (generated locally) -->
83 <fileset dir="doc" includes="**/*.html" />
84 <fileset dir="doc" includes="**/*.xml" />
85
86 <!-- Files downloaded from the Eclipse wiki -->
87 <fileset dir="Linux_Tools_Project" />
88 <fileset file="toc.xml" />
89 </delete>
90 </target>
91
12bf6834 92</project>
This page took 0.045032 seconds and 5 git commands to generate.