Documentation: Comply with "XHTML 1.0 Strict"

Ensure that the HTML documentation generated by CMake complies with
"XHTML 1.0 Strict":

  - All tags are properly closed and DOCTYPE is specified
  - Useful for downstream XML-processors (e.g. for extracting section
    titles)

See issue #10338.

Signed-off-by: Simon Harvey <simon.harvey@cambridgeflowsolutions.com>
This commit is contained in:
Simon Harvey 2010-03-01 12:15:25 +00:00 committed by Brad King
parent 03f8820e64
commit 5771dd2f15
1 changed files with 43 additions and 23 deletions

View File

@ -39,7 +39,7 @@ static void cmDocumentationPrintHTMLChar(std::ostream& os, char c)
os << "&amp;"; os << "&amp;";
break; break;
case '\n': case '\n':
os << "<br>"; os << "<br />";
break; break;
default: default:
os << c; os << c;
@ -125,23 +125,33 @@ void cmDocumentationFormatterHTML
{ {
if (name) if (name)
{ {
os << "<h2><a name=\"section_" << name << "\"/>" << name << "</h2>\n"; os << "<h2><a name=\"section_";
cmDocumentationPrintHTMLId(os, name);
os << "\"/>" << name << "</h2>\n";
} }
os << "<ul>\n"; // Is a list needed?
for(std::vector<cmDocumentationEntry>::const_iterator op for(std::vector<cmDocumentationEntry>::const_iterator op
= entries.begin(); op != entries.end(); ++ op ) = entries.begin(); op != entries.end(); ++ op )
{ {
if(op->Name.size()) if (op->Name.size())
{ {
os << " <li><a href=\"#" << prefix << ":"; os << "<ul>\n";
cmDocumentationPrintHTMLId(os, op->Name.c_str()); for(;op != entries.end() && op->Name.size(); ++op)
os << "\"><b><code>"; {
this->PrintHTMLEscapes(os, op->Name.c_str()); if(op->Name.size())
os << "</code></b></a></li>"; {
} os << " <li><a href=\"#" << prefix << ":";
cmDocumentationPrintHTMLId(os, op->Name.c_str());
os << "\"><b><code>";
this->PrintHTMLEscapes(os, op->Name.c_str());
os << "</code></b></a></li>";
}
}
os << "</ul>\n" ;
break; // Skip outer loop termination test
}
} }
os << "</ul>\n" ;
} }
for(std::vector<cmDocumentationEntry>::const_iterator op = entries.begin(); for(std::vector<cmDocumentationEntry>::const_iterator op = entries.begin();
@ -164,7 +174,7 @@ void cmDocumentationFormatterHTML
this->PrintHTMLEscapes(os, op->Brief.c_str()); this->PrintHTMLEscapes(os, op->Brief.c_str());
if(op->Full.size()) if(op->Full.size())
{ {
os << "<br>\n "; os << "<br />\n ";
this->PrintFormatted(os, op->Full.c_str()); this->PrintFormatted(os, op->Full.c_str());
} }
os << "\n"; os << "\n";
@ -194,6 +204,7 @@ void cmDocumentationFormatterHTML::PrintParagraph(std::ostream& os,
{ {
os << "<p>"; os << "<p>";
this->PrintHTMLEscapes(os, text); this->PrintHTMLEscapes(os, text);
os << "</p>\n";
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@ -201,7 +212,12 @@ void cmDocumentationFormatterHTML::PrintHeader(const char* docname,
const char* appname, const char* appname,
std::ostream& os) std::ostream& os)
{ {
os << "<html><head><title>"; os << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\""
<< " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
os << "<html xmlns=\"http://www.w3.org/1999/xhtml\""
<< " xml:lang=\"en\" lang=\"en\">\n";
os << "<head><meta http-equiv=\"Content-Type\" "
<< "content=\"text/html;charset=utf-8\" /><title>";
os << docname << " - " << appname; os << docname << " - " << appname;
os << "</title></head><body>\n"; os << "</title></head><body>\n";
} }
@ -253,16 +269,20 @@ void cmDocumentationFormatterHTML
return; return;
} }
os << "<h2><a name=\"section_Index\"/>Master Index " os << "<h2><a name=\"section_Index\">Master Index "
<< "CMake " << cmVersion::GetCMakeVersion() << "CMake " << cmVersion::GetCMakeVersion()
<< "</h2>\n"; << "</a></h2>\n";
os << "<ul>\n";
for(unsigned int i=0; i < sections.size(); ++i) if (!sections.empty())
{ {
std::string name = sections[i]-> os << "<ul>\n";
GetName((this->GetForm())); for(unsigned int i=0; i < sections.size(); ++i)
os << " <li><a href=\"#section_" {
<< name << "\"<b>" << name << "</b></a></li>\n"; std::string name = sections[i]->GetName((this->GetForm()));
os << " <li><a href=\"#section_";
cmDocumentationPrintHTMLId(os, name.c_str());
os << "\"><b>" << name << "</b></a></li>\n";
}
os << "</ul>\n";
} }
os << "</ul>\n";
} }