confusion. Rationale: The ISO 8879 (SGML) specification defines this as case-insensitive and it must always be treated as one in the upper case when the SGML declaration does not include "NAMECASE GENERAL NO." On the other hand, in the XML specification (REC-xml-20040204) it is case-sensitive and no normalization with regard to the case must not be performed by an XML parser. We use HTML 4.01 (SGML) DTD in most of the files in the www tree and convert them into XHTML 1.0 (XML) DTD forcibly by using tidy. So, as long as we use both SGML and XML DTD in this way it is better to use upper case only for the id attribute to avoid the case sensitivity problem.
24 lines
966 B
Text
24 lines
966 B
Text
<!-- $FreeBSD: www/share/sgml/includes.navsupport.sgml,v 1.2 2005/10/06 15:27:30 simon Exp $ -->
|
|
|
|
<!ENTITY nav '<div id="SIDENAV">
|
|
<h2 class="blockhide">Section Navigation</h2>
|
|
<ul>
|
|
<li><a href="&base;/support.html">Support</a></li>
|
|
<li><a href="&base;/commercial/">Vendors</a>
|
|
<ul>
|
|
<li><a href="&base;/commercial/software_bycat.html">Software</a></li>
|
|
<li><a href="&base;/commercial/hardware.html">Hardware</a></li>
|
|
<li><a href="&base;/commercial/consult_bycat.html">Consulting</a></li>
|
|
<li><a href="&base;/commercial/isp.html">Internet Service Providers</a></li>
|
|
<li><a href="&base;/commercial/misc.html">Miscellaneous</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="&base;/security/">Security Information</a></li>
|
|
<li><a href="&base;/support/bugreports.html">Bug Reports</a>
|
|
<ul>
|
|
<li><a href="&base;/send-pr.html">Submit a Problem Report</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="&base;/support/webresources.html">Web Resources</a></li>
|
|
</ul>
|
|
</div> <!-- sidenav -->'>
|