summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/build.xml31
1 files changed, 30 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index 14a3c1e0f6..a406f11f5a 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -364,8 +364,37 @@
</javadoc>
</target>
+ <target name="manual-fo" depends="init">
+ <path id="docbook-xsl.classpath">
+ <pathelement path="build/lib/fserializer.jar" />
+ <pathelement path="build/lib/xalan.jar" />
+ <pathelement path="build/lib/xercesImpl.jar" />
+ <pathelement path="build/lib/xml-apis.jar" />
+ </path>
+ <java classname="org.apache.xalan.xslt.Process" failonerror="yes" fork="yes" maxmemory="1300m">
+ <arg value="-in" />
+ <arg value="doc/manual/book.xml" />
+ <arg value="-xsl" />
+ <arg value="build/docbook/conf/custom-fo-docbook.xsl" />
+ <arg value="-out" />
+ <arg value="${output-dir}/doc/manual/book.fo" />
+ <arg value="-param" />
+ <arg value="section.autolabel" />
+ <arg value="1" />
+ <arg value="-param" />
+ <arg value="section.label.includes.component.label" />
+ <arg value="1" />
+ <arg value="-param" />
+ <arg value="section.autolabel.max.depth" />
+ <arg value="2" />
+ <classpath refid="docbook-xsl.classpath" />
+ </java>
+ </target>
+
<target name="manual-pdf" depends="init">
- <!-- TODO Include XEP-based FO building in future -->
+ <!-- property name="xep" location="/opt/RenderX/XEP/xep"/ -->
+ <exec executable="/opt/RenderX/XEP/xep" input="${output-dir}/doc/manual/book.fo" output="${output-dir}/doc/manual/book.pdf" error="xep.err">
+ </exec>
</target>
<target name="manual-html" depends="init">
>backport/40394/stable27 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/lib/private/serviceunavailableexception.php
blob: fb4920b3607289065ba4f346ab82db8a3a68ead7 (plain)
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