source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/roundtrip/param.xml@ c158fe6

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since c158fe6 was b1a51ac1, checked in by Krejzi <krejzi@…>, 11 years ago

Import new branch

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10389 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="ASCII"?>
2<book version="5.0">
3 <info>
4 <title>Roundtrip Parameter Reference</title>
5 <releaseinfo role="meta">
6 $Id: param.xweb 9130 2011-10-11 08:05:37Z dpawson $
7 </releaseinfo>
8 <author>
9 <personname>
10 <surname>Ball</surname>
11 <firstname>Steve</firstname>
12 </personname>
13 </author>
14 <copyright>
15 <year>2004-2011</year>
16
17 <holder>Steve Ball</holder>
18 </copyright>
19 <abstract>
20 <para>This is reference documentation for all user-configurable
21 parameters in the DocBook &#8220;Roundtrip&#8221; Stylesheets (for
22 transforming DocBook to WordML, OpenDocument, and Apple Pages,
23 and for converting from those formats back to DocBook).</para>
24 </abstract>
25 </info>
26 <reference xml:id="params">
27 <title>Parameters</title>
28<refentry version="5.0" xml:id="wordml.template">
29<refmeta>
30<refentrytitle>wordml.template</refentrytitle>
31<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
32</refmeta>
33<refnamediv>
34<refname>wordml.template</refname>
35<refpurpose>Specify the template WordML document</refpurpose>
36</refnamediv>
37
38<refsynopsisdiv>
39<programlisting xml:id="wordml.template.frag">
40&lt;xsl:param name="wordml.template"&gt;&lt;/xsl:param&gt;
41</programlisting>
42</refsynopsisdiv>
43
44<refsection><info><title>Description</title></info>
45
46<para>The <parameter>wordml.template</parameter> parameter specifies a WordML document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored.</para>
47
48<para>A template document is used in order to allow maintenance of the paragraph and character styles to be done using Word itself, rather than these XSL stylesheets.</para>
49
50</refsection>
51</refentry>
52
53<refentry version="5.0" xml:id="pages.template">
54<refmeta>
55<refentrytitle>pages.template</refentrytitle>
56<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
57</refmeta>
58<refnamediv>
59<refname>pages.template</refname>
60<refpurpose>Specify the template Pages document</refpurpose>
61</refnamediv>
62
63<refsynopsisdiv>
64<programlisting xml:id="pages.template.frag">
65&lt;xsl:param name="pages.template"&gt;&lt;/xsl:param&gt;
66</programlisting>
67</refsynopsisdiv>
68
69<refsection><info><title>Description</title></info>
70
71<para>The <parameter>pages.template</parameter> parameter specifies a Pages (the Apple word processing application) document to use as a template for the generated document. The template document is used to define the (extensive) headers for the generated document, in particular the paragraph and character styles that are used to format the various elements. Any content in the template document is ignored.</para>
72
73<para>A template document is used in order to allow maintenance of the paragraph and character styles to be done using Pages itself, rather than these XSL stylesheets.</para>
74
75</refsection>
76</refentry>
77
78 </reference>
79 <appendix xml:id="stylesheet">
80 <title>The Stylesheet</title>
81 <para>The <filename>param.xsl</filename> stylesheet is just a
82 wrapper around all of these parameters.</para>
83 <programlisting xml:id="top">
84&lt;xsl:stylesheet exclude-result-prefixes="src" version="1.0"&gt;
85
86&lt;!-- This file is generated from param.xweb --&gt;
87
88&lt;!-- ********************************************************************
89 $Id: param.xweb 9130 2011-10-11 08:05:37Z dpawson $
90 ********************************************************************
91
92 This file is part of the XSL DocBook Stylesheet distribution.
93 See ../README or http://docbook.sf.net/release/xsl/current/ for
94 copyright and other information.
95
96 ******************************************************************** --&gt;
97
98&lt;src:fragref linkend="wordml.template.frag"&gt;&lt;/src:fragref&gt;
99&lt;src:fragref linkend="pages.template.frag"&gt;&lt;/src:fragref&gt;
100&lt;/xsl:stylesheet&gt;
101 </programlisting>
102 </appendix>
103</book>
Note: See TracBrowser for help on using the repository browser.