-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add "set" rootelement to the DAPS User Guide. * Add "set" rootelement to daps-init. * Add set templates for Daps. * Mention "set" in the help of daps-init. Signed-off-by: Fabian Baumanis <fabian.baumanis@suse.com>
- Loading branch information
Fabian Baumanis
committed
Apr 11, 2018
1 parent
864a2b4
commit dd7549c
Showing
4 changed files
with
138 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0"?> | ||
<set lang="en"><title>Example Set</title> | ||
|
||
<book id="book.a"> | ||
<title>Example Book 1</title> | ||
<subtitle>generated by DAPS</subtitle> | ||
|
||
<bookinfo> | ||
<releaseinfo>Version 0.1</releaseinfo> | ||
<releaseinfo>Revision: 0</releaseinfo> | ||
<date>§§DATE§§</date> | ||
<legalnotice> | ||
<para> | ||
<ulink url="http://www.gnu.org/licenses/fdl-1.3-standalone.html">GNU | ||
Free Documentation License</ulink> | ||
</para> | ||
</legalnotice> | ||
</bookinfo> | ||
<!-- --> | ||
<chapter id="cha.template.examples"><chapterinfo> | ||
<abstract> | ||
<para> You may use this file as a template. For a complete | ||
DocBook reference, see | ||
<citetitle>DocBook: The Definitive Guide</citetitle> | ||
(<ulink url="http://www.docbook.org/tdg51/en/html/docbook.html"/>). | ||
</para> | ||
</abstract> | ||
</chapterinfo> | ||
<title>Examples: the most commonly used DocBook XML constructs</title> | ||
<para>This is an example paragraph.</para> | ||
</chapter> | ||
</book> | ||
|
||
<book id="book.b"> | ||
<title>Example Book 2</title> | ||
<subtitle>generated by DAPS</subtitle> | ||
|
||
<bookinfo> | ||
<releaseinfo>Version 0.1</releaseinfo> | ||
<releaseinfo>Revision: 0</releaseinfo> | ||
<date>§§DATE§§</date> | ||
<legalnotice> | ||
<para> | ||
<ulink url="http://www.gnu.org/licenses/fdl-1.3-standalone.html">GNU | ||
Free Documentation License</ulink> | ||
</para> | ||
</legalnotice> | ||
</bookinfo> | ||
<!-- --> | ||
<chapter id="cha.template.another_example"><chapterinfo> | ||
<abstract> | ||
<para> You may use this file as a template as well. For a complete | ||
DocBook reference, see | ||
<citetitle>DocBook: The Definitive Guide</citetitle> | ||
(<ulink url="http://www.docbook.org/tdg51/en/html/docbook.html"/>). | ||
</para> | ||
</abstract> | ||
</chapterinfo> | ||
<title>Examples: More commonly used DocBook XML constructs</title> | ||
<para>This is an example paragraph.</para> | ||
</chapter> | ||
</book> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<set xmlns="http://docbook.org/ns/docbook" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.1" | ||
xml:lang="en"> | ||
<title>Example Set</title> | ||
<info/> | ||
|
||
<book xml:id="book.a"> | ||
<info> | ||
<title>Example Book 1</title> | ||
<subtitle>generated by DAPS</subtitle> | ||
<releaseinfo>Version 0.1</releaseinfo> | ||
<releaseinfo>Revision: 0</releaseinfo> | ||
<date>§§DATE§§</date> | ||
<legalnotice> | ||
<para> | ||
<link xlink:href="http://www.gnu.org/licenses/fdl-1.3-standalone.html">GNU | ||
Free Documentation License</link> | ||
</para> | ||
</legalnotice> | ||
</info> | ||
<!-- --> | ||
<chapter xml:id="cha.template.examples"> | ||
<title>Examples: the most commonly used DocBook XML constructs</title> | ||
<info> | ||
<abstract> | ||
<para> You may use this file as a template. For a complete | ||
DocBook reference, see | ||
<citetitle>DocBook: The Definitive Guide</citetitle> | ||
(<link xlink:href="http://www.docbook.org/tdg51/en/html/docbook.html"/>). | ||
</para> | ||
</abstract> | ||
</info> | ||
<para>This is an example paragraph.</para> | ||
</chapter> | ||
</book> | ||
|
||
<book xml:id="book.b"> | ||
<info> | ||
<title>Example Book 2</title> | ||
<subtitle>generated by DAPS</subtitle> | ||
<releaseinfo>Version 0.1</releaseinfo> | ||
<releaseinfo>Revision: 0</releaseinfo> | ||
<date>§§DATE§§</date> | ||
<legalnotice> | ||
<para> | ||
<link xlink:href="http://www.gnu.org/licenses/fdl-1.3-standalone.html">GNU | ||
Free Documentation License</link> | ||
</para> | ||
</legalnotice> | ||
</info> | ||
<!-- --> | ||
<chapter xml:id="cha.template.another_example"> | ||
<title>Examples: More commonly used DocBook XML constructs</title> | ||
<info> | ||
<abstract> | ||
<para> You may use this file as a template as well. For a complete | ||
DocBook reference, see | ||
<citetitle>DocBook: The Definitive Guide</citetitle> | ||
(<link xlink:href="http://www.docbook.org/tdg51/en/html/docbook.html"/>). | ||
</para> | ||
</abstract> | ||
</info> | ||
<para>This is an example paragraph.</para> | ||
</chapter> | ||
</book> | ||
</set> |