svn commit: r51563 - in head/en_US.ISO8859-1/books/fdp-primer: doc-build structure stylesheets tools writing-style xml-primer
Mathieu Arnold
mat at FreeBSD.org
Tue Apr 17 11:20:40 UTC 2018
Author: mat
Date: Tue Apr 17 11:20:38 2018
New Revision: 51563
URL: https://svnweb.freebsd.org/changeset/doc/51563
Log:
Add missing xml:id to sectx elements.
Sponsored by: Absolight
Modified:
head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.xml
head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.xml
head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.xml
head/en_US.ISO8859-1/books/fdp-primer/tools/chapter.xml
head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.xml
head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml
Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -305,7 +305,7 @@ DOC_PREFIX?= ${.CURDIR}/../../..
</listitem>
</itemizedlist>
- <sect2>
+ <sect2 xml:id="includes-doc-project-mk">
<title><filename>doc.project.mk</filename></title>
<para>By inspection:</para>
@@ -325,7 +325,7 @@ PRI_LANG?= en_US.ISO8859-1
.include "doc.subdir.mk"
.include "doc.install.mk"</programlisting>
- <sect3>
+ <sect3 xml:id="doc-project-mk-variables">
<title>Variables</title>
@@ -351,7 +351,7 @@ PRI_LANG?= en_US.ISO8859-1
</note>
</sect3>
- <sect3>
+ <sect3 xml:id="doc-project-mk-conditionals">
<title>Conditionals</title>
<para>The <literal>.if defined(DOC)</literal> line is an
@@ -370,13 +370,13 @@ PRI_LANG?= en_US.ISO8859-1
</sect3>
</sect2>
- <sect2>
+ <sect2 xml:id="includes-doc-subdir-mk">
<title><filename>doc.subdir.mk</filename></title>
<para>This file is too long to explain in detail. These notes
describe the most important features.</para>
- <sect3>
+ <sect3 xml:id="doc-subdir-mk-variables">
<title>Variables</title>
<itemizedlist>
@@ -403,7 +403,7 @@ PRI_LANG?= en_US.ISO8859-1
</itemizedlist>
</sect3>
- <sect3>
+ <sect3 xml:id="doc-subdir-mk-targets-macro">
<title>Targets and Macros</title>
<para>Dependencies are described by
@@ -453,7 +453,7 @@ PRI_LANG?= en_US.ISO8859-1
goes <emphasis>down</emphasis>, not on the way back
up.</para>
- <sect4>
+ <sect4 xml:id="doc-subdir-mk-provided-targets">
<title>Provided Targets</title>
<itemizedlist>
@@ -478,7 +478,7 @@ PRI_LANG?= en_US.ISO8859-1
</sect4>
</sect3>
- <sect3>
+ <sect3 xml:id="doc-subdir-mk-conditionals">
<title>More on Conditionals</title>
<itemizedlist>
@@ -500,7 +500,7 @@ PRI_LANG?= en_US.ISO8859-1
</itemizedlist>
</sect3>
- <sect3>
+ <sect3 xml:id="doc-subdir-mk-looping">
<title>Looping Constructs in <command>make
(.for)</command></title>
Modified: head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/structure/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -179,7 +179,7 @@
<para>This section contains specific notes about particular
documents managed by the FDP.</para>
- <sect2>
+ <sect2 xml:id="structure-document-handbook">
<title>The Handbook</title>
<subtitle><filename>books/handbook/</filename></subtitle>
@@ -195,7 +195,7 @@
and subsections (<tag>sect2</tag>,
<tag>sect3</tag>) and so on.</para>
- <sect3>
+ <sect3 xml:id="structure-document-handbook-physical">
<title>Physical Organization</title>
<para>There are a number of files and directories within the
@@ -208,7 +208,7 @@
&a.doc;.</para>
</note>
- <sect4>
+ <sect4 xml:id="structure-document-handbook-physical-Makefile">
<title><filename>Makefile</filename></title>
<para>The <filename>Makefile</filename> defines some
@@ -220,7 +220,7 @@
documents from one format to another.</para>
</sect4>
- <sect4>
+ <sect4 xml:id="structure-document-handbook-physical-book-xml">
<title><filename>book.xml</filename></title>
<para>This is the top level document in the Handbook. It
@@ -236,7 +236,8 @@
Handbook.</para>
</sect4>
- <sect4>
+ <sect4
+ xml:id="structure-document-handbook-physical-chapters-xml">
<title><filename role="directory"><replaceable>directory</replaceable>/chapter.xml</filename></title>
<para>Each chapter in the Handbook is stored in a file
Modified: head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/stylesheets/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -58,7 +58,7 @@
document without abusing <acronym>XHTML</acronym> to do
so.</para>
- <sect2>
+ <sect2 xml:id="stylesheets-css-documents">
<title>The DocBook Documents</title>
<para>The &os; <acronym>XSLT</acronym> and
Modified: head/en_US.ISO8859-1/books/fdp-primer/tools/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/tools/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/tools/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -49,7 +49,7 @@
documentation. Some further notes on particular components are
given below.</para>
- <sect2>
+ <sect2 xml:id="tools-required-dtd-entities">
<title><acronym>DTD</acronym>s and
<acronym>Entities</acronym></title>
@@ -103,7 +103,7 @@
<para>These applications are not required, but can make working on
the documentation easier or add capabilities.</para>
- <sect2>
+ <sect2 xml:id="tools-optional-software">
<title>Software</title>
<variablelist>
Modified: head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/writing-style/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -259,7 +259,7 @@
many different people are editing it, please follow these style
conventions.</para>
- <sect2>
+ <sect2 xml:id="writing-style-letter-case">
<title>Letter Case</title>
<para>Tags are entered in lower case, <tag>para</tag>,
Modified: head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml Tue Apr 17 11:18:48 2018 (r51562)
+++ head/en_US.ISO8859-1/books/fdp-primer/xml-primer/chapter.xml Tue Apr 17 11:20:38 2018 (r51563)
@@ -356,7 +356,7 @@
in an environment variable so they can be found by the document
build tools.</para>
- <sect2>
+ <sect2 xml:id="xml-primer-elements-to-do">
<title>To Do…</title>
<para>Before running the examples in this document, install
@@ -528,7 +528,7 @@ example.xml:5: element head: validity error : Element
</varlistentry>
</variablelist>
- <sect2>
+ <sect2 xml:id="doctype-declaration-fpi">
<title>Formal Public Identifiers
(<acronym>FPI</acronym>s)</title>
@@ -638,7 +638,7 @@ example.xml:5: element head: validity error : Element
</varlistentry>
</variablelist>
- <sect3>
+ <sect3 xml:id="doctype-declaration-fpi-catalog">
<title><filename>catalog</filename> Files</title>
<para>With the syntax above, an <acronym>XML</acronym>
@@ -752,7 +752,7 @@ example.xml:5: element head: validity error : Element
<programlisting><!-- This comment--is wrong --></programlisting>
</example>
- <sect2>
+ <sect2 xml:id="xml-primer-comments-to-do">
<title>To Do…</title>
<procedure>
@@ -886,7 +886,7 @@ example.xml:5: element head: validity error : Element
</example>
</sect2>
- <sect2>
+ <sect2 xml:id="xml-primer-to-do">
<title>To Do…</title>
<procedure>
@@ -1020,7 +1020,7 @@ example.xml:5: element head: validity error : Element
</warning>
</sect2>
- <sect2>
+ <sect2 xml:id="xml-primer-include-parameter">
<title>Using Parameter Entities to Include Files</title>
<para>Parameter entities can only be used inside an
@@ -1073,10 +1073,10 @@ example.xml:5: element head: validity error : Element
</example>
</sect2>
- <sect2>
+ <sect2 xml:id="xml-primer-include-parameter-to-do">
<title>To Do…</title>
- <sect3>
+ <sect3 xml:id="xml-primer-include-general-entities-include">
<title>Use General Entities to Include Files</title>
<procedure>
@@ -1134,7 +1134,7 @@ example.xml:5: element head: validity error : Element
</procedure>
</sect3>
- <sect3>
+ <sect3 xml:id="xml-primer-include-parameter-entities-include">
<title>Use Parameter Entities to Include Files</title>
<note>
@@ -1366,7 +1366,7 @@ example.xml:5: element head: validity error : Element
</sect3>
</sect2>
- <sect2>
+ <sect2 xml:id="xml-primer-marked-section-keywords-to-do">
<title>To Do…</title>
<procedure>
More information about the svn-doc-head
mailing list