Commit dfc29899 authored by Luca Toscano's avatar Luca Toscano
Browse files

common.dtd: add idtype attribute to directive

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
parent 5f1f3b8e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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>
+5 −1
Original line number Diff line number Diff line
@@ -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 >