]> granicus.if.org Git - apache/commitdiff
common.dtd: add idtype attribute to directive
authorLuca Toscano <elukey@apache.org>
Fri, 18 Aug 2017 08:37:29 +0000 (08:37 +0000)
committerLuca Toscano <elukey@apache.org>
Fri, 18 Aug 2017 08:37:29 +0000 (08:37 +0000)
This change completes r1805372 and also fixes
links generation for <ManageDomain> and <SSLPolicy>
in sections.xml

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1805376 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/sections.xml
docs/manual/style/common.dtd

index cba6256121d2cea70d7a7cde3e9752a50c1fe4cd..43f7e1d52d706361ec179b4322e6deafdd8af1a4 100644 (file)
@@ -51,10 +51,10 @@ to change the scope of other configuration directives.</p>
 <directive type="section" module="mod_version">IfVersion</directive>
 <directive type="section" module="core">Location</directive>
 <directive type="section" module="core">LocationMatch</directive>
-<directive type="section" module="md">MangedDomain</directive>
+<directive type="section" idtype="section" module="md">MangedDomain</directive>
 <directive type="section" module="mod_proxy">Proxy</directive>
 <directive type="section" module="mod_proxy">ProxyMatch</directive>
-<directive type="section" module="ssl">SSLPolicy</directive>
+<directive type="section" idtype="section" module="mod_ssl">SSLPolicy</directive>
 <directive type="section" module="core">VirtualHost</directive>
 </directivelist>
 </related>
index 93c6f19e8894fc3b72ac1f591989c475255108ab..ed8d1e03bc86f2a65ae5129eff2d66d491ec4939 100644 (file)
@@ -78,9 +78,13 @@ highlight | blockquote">
                  outdated (true) #IMPLIED>
 
 <!ELEMENT directive (#PCDATA)>
-<!-- name attribute is preferred over contents when generating links -->
+<!-- name attribute is preferred over contents when generating links,
+     and idtype is used to disambiguate two directives sharing the
+     same name but with different type (for example section and non-section).
+-->
 <!ATTLIST directive  module CDATA  #IMPLIED
                      type   CDATA  #IMPLIED
+                     idtype CDATA  #IMPLIED
                      status CDATA  #IMPLIED
                      name   CDATA  #IMPLIED >