summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Slive <slive@apache.org>2002-07-16 14:46:15 +0200
committerJoshua Slive <slive@apache.org>2002-07-16 14:46:15 +0200
commit97a203aca85904a11ad7419d3a68f7840be92957 (patch)
treef36a1bded8678dc1487c9d962bcc0b7ba472a8a6
parentExport functions declared by APR_DECLARE_INHERIT_SET/UNSET macros. (diff)
downloadapache2-97a203aca85904a11ad7419d3a68f7840be92957.tar.xz
apache2-97a203aca85904a11ad7419d3a68f7840be92957.zip
Fix definition of <section>, which was duplicated but not quite the same in
manualpage and common. Submitted by: Vincent de Lau <vincent@delau.nl> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96076 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/style/common.dtd8
-rw-r--r--docs/manual/style/manualpage.dtd6
2 files changed, 5 insertions, 9 deletions
diff --git a/docs/manual/style/common.dtd b/docs/manual/style/common.dtd
index c3e85cc90f..4fa0c41e3c 100644
--- a/docs/manual/style/common.dtd
+++ b/docs/manual/style/common.dtd
@@ -21,9 +21,11 @@
<!ELEMENT modulelist (module)+>
-<!ELEMENT section (section | title | %blocktags;)*>
-
-<!ATTLIST section id CDATA #IMPLIED>
+<!-- a page may have one or more sections. Each section is named by an
+ unique id. A section must have a title and some text. It may have
+ subsections and a list of related modules and directives -->
+<!ELEMENT section (title, (section | related | %blocktags;)*)>
+<!ATTLIST section id ID #IMPLIED>
<!ELEMENT module (#PCDATA)>
diff --git a/docs/manual/style/manualpage.dtd b/docs/manual/style/manualpage.dtd
index 30028b5d0e..8890f44559 100644
--- a/docs/manual/style/manualpage.dtd
+++ b/docs/manual/style/manualpage.dtd
@@ -6,12 +6,6 @@
<!-- <manualpage> is the root element -->
<!ELEMENT manualpage (title, summary?, seealso*, section*)>
-<!-- a page may have one or more sections. Each section is named by an
- unique id. A section must have a title and some text. It may have
- subsections and a list of related modules and directives -->
-<!ELEMENT section (title, (section | related | %blocktags;)*)>
-<!ATTLIST section id ID #IMPLIED>
-
<!-- the lists of related modules and/or related directives -->
<!ELEMENT related (modulelist | directivelist)+>