diff options
author | Brad King <brad.king@kitware.com> | 2008-05-05 16:02:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-05-05 16:02:36 (GMT) |
commit | 199e85910f9ce308c4c53ffcb0f934706f16c5cd (patch) | |
tree | 290fef0ea4992a634e2bd602a5cd73c08c072755 /Source/cmDocumentationFormatterHTML.cxx | |
parent | 1b23b65ed5ff1ea22e912ad25ba94b53e4e91828 (diff) | |
download | CMake-199e85910f9ce308c4c53ffcb0f934706f16c5cd.zip CMake-199e85910f9ce308c4c53ffcb0f934706f16c5cd.tar.gz CMake-199e85910f9ce308c4c53ffcb0f934706f16c5cd.tar.bz2 |
ENH: Fix generated documentation internal links.
- Previously all links started in 'command_' which led to conflicts
and was confusing for non-command items.
- Use a per-section name that is meaningful to humans.
- Fix link id names to be valid HTML.
Diffstat (limited to 'Source/cmDocumentationFormatterHTML.cxx')
-rw-r--r-- | Source/cmDocumentationFormatterHTML.cxx | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/Source/cmDocumentationFormatterHTML.cxx b/Source/cmDocumentationFormatterHTML.cxx index cb8fac1..a40ce99 100644 --- a/Source/cmDocumentationFormatterHTML.cxx +++ b/Source/cmDocumentationFormatterHTML.cxx @@ -52,6 +52,31 @@ static void cmDocumentationPrintHTMLChar(std::ostream& os, char c) } //---------------------------------------------------------------------------- +bool cmDocumentationHTMLIsIdChar(char c) +{ + // From the HTML specification: + // ID and NAME tokens must begin with a letter ([A-Za-z]) and may + // be followed by any number of letters, digits ([0-9]), hyphens + // ("-"), underscores ("_"), colons (":"), and periods ("."). + return ((c >= 'A' && c <= 'Z') || + (c >= 'a' && c <= 'z') || + (c >= '0' && c <= '9') || + c == '-' || c == '_' || c == ':' || c == '.'); +} + +//---------------------------------------------------------------------------- +void cmDocumentationPrintHTMLId(std::ostream& os, const char* begin) +{ + for(const char* c = begin; *c; ++c) + { + if(cmDocumentationHTMLIsIdChar(*c)) + { + os << *c; + } + } +} + +//---------------------------------------------------------------------------- const char* cmDocumentationPrintHTMLLink(std::ostream& os, const char* begin) { // Look for the end of the link. @@ -97,6 +122,8 @@ void cmDocumentationFormatterHTML os << "<h2><a name=\"section_" << name << "\"/>" << name << "</h2>\n"; } + std::string prefix = this->ComputeSectionLinkPrefix(name); + const std::vector<cmDocumentationEntry> &entries = section.GetEntries(); @@ -106,8 +133,9 @@ void cmDocumentationFormatterHTML { if(op->Name.size()) { - os << " <li><a href=\"#command_" - << op->Name.c_str() << "\"><b><code>"; + 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>"; } @@ -125,8 +153,9 @@ void cmDocumentationFormatterHTML os << " <li>\n"; if(op->Name.size()) { - os << " <a name=\"command_"<< - op->Name.c_str() << "\"><b><code>"; + os << " <a name=\"" << prefix << ":"; + cmDocumentationPrintHTMLId(os, op->Name.c_str()); + os << "\"><b><code>"; this->PrintHTMLEscapes(os, op->Name.c_str()); os << "</code></b></a>: "; } |