diff options
author | André Malo <nd@apache.org> | 2003-04-11 03:17:08 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2003-04-11 03:17:08 +0200 |
commit | 6dea9992a78c7cc62f013417292037d96b217847 (patch) | |
tree | 45c134c501d4894752563256dc0becda9cbc8af6 | |
parent | add license in xml/html format. I'll keep the text version for now, at (diff) | |
download | apache2-6dea9992a78c7cc62f013417292037d96b217847.tar.xz apache2-6dea9992a78c7cc62f013417292037d96b217847.zip |
add support for metafile attribute.
(not backported yet; but later)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99325 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/style/manualpage.dtd | 2 | ||||
-rw-r--r-- | docs/manual/style/modulesynopsis.dtd | 8 | ||||
-rw-r--r-- | docs/manual/style/sitemap.dtd | 4 |
3 files changed, 14 insertions, 0 deletions
diff --git a/docs/manual/style/manualpage.dtd b/docs/manual/style/manualpage.dtd index a0ef109ee9..585ba28503 100644 --- a/docs/manual/style/manualpage.dtd +++ b/docs/manual/style/manualpage.dtd @@ -6,3 +6,5 @@ <!-- <manualpage> is the root element --> <!ELEMENT manualpage (relativepath, parentdocument?, title, summary?, seealso*, section*)> + +<!ATTLIST manualpage metafile CDATA #REQUIRED> diff --git a/docs/manual/style/modulesynopsis.dtd b/docs/manual/style/modulesynopsis.dtd index ce9ae954be..1e5403098b 100644 --- a/docs/manual/style/modulesynopsis.dtd +++ b/docs/manual/style/modulesynopsis.dtd @@ -7,6 +7,8 @@ identifier? , compatibility? , summary? , seealso* , section*, directivesynopsis*)> +<!ATTLIST modulesynopsis metafile CDATA #REQUIRED> + <!ELEMENT directivesynopsis (name , description? , syntax? , default? , contextlist? , override? , modulelist?, status?, compatibility? , usage?, seealso*)> @@ -43,9 +45,15 @@ usage?, seealso*)> <!-- Used in index.xml --> <!ELEMENT moduleindex (title, summary, seealso*, sitemap)> +<!ATTLIST moduleindex metafile CDATA #REQUIRED> + <!-- Used in directive.xml --> <!ELEMENT directiveindex (title | summary | sitemap)+> +<!ATTLIST directiveindex metafile CDATA #REQUIRED> + <!-- Used in quickreference.xml --> <!ELEMENT quickreference (title | summary | legend | sitemap)+> +<!ATTLIST quickreference metafile CDATA #REQUIRED> + <!ELEMENT legend (table, table)> diff --git a/docs/manual/style/sitemap.dtd b/docs/manual/style/sitemap.dtd index e326afdbd9..8c7b57e9a3 100644 --- a/docs/manual/style/sitemap.dtd +++ b/docs/manual/style/sitemap.dtd @@ -6,9 +6,13 @@ <!-- <sitemap> is the root element --> <!ELEMENT sitemap (relativepath, title, summary?, seealso*, category*)> +<!ATTLIST sitemap metafile CDATA #REQUIRED> + <!-- <indexpage> is another root element --> <!ELEMENT indexpage (relativepath, parentdocument, title, category*)> +<!ATTLIST indexpage metafile CDATA #REQUIRED> + <!ELEMENT category (title, page*, modulefilelist? )> <!ATTLIST category id ID #IMPLIED> |