diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-09 13:55:42 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-09 13:55:42 (GMT) |
commit | 18ce24c7486fedc792276721515c9ddefc62ebee (patch) | |
tree | 527cfa357957b02432cdabea88c918948ac6f37a /Source/cmDocumentationFormatterHTML.cxx | |
parent | b02cbf5fadd70bf173882a1eca94e1d74d640248 (diff) | |
download | CMake-18ce24c7486fedc792276721515c9ddefc62ebee.zip CMake-18ce24c7486fedc792276721515c9ddefc62ebee.tar.gz CMake-18ce24c7486fedc792276721515c9ddefc62ebee.tar.bz2 |
ENH: make documentation entries actually store their data
Diffstat (limited to 'Source/cmDocumentationFormatterHTML.cxx')
-rw-r--r-- | Source/cmDocumentationFormatterHTML.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Source/cmDocumentationFormatterHTML.cxx b/Source/cmDocumentationFormatterHTML.cxx index 16823b1..010f003 100644 --- a/Source/cmDocumentationFormatterHTML.cxx +++ b/Source/cmDocumentationFormatterHTML.cxx @@ -33,13 +33,13 @@ static void cmDocumentationPrintHTMLChar(std::ostream& os, char c) // Use an escape sequence if necessary. static cmDocumentationEntry escapes[] = { - {"<", "<", 0}, - {">", ">", 0}, - {"&", "&", 0}, - {"\n", "<br>", 0}, - {0,0,0} + {"<", "<", ""}, + {">", ">", ""}, + {"&", "&", ""}, + {"\n", "<br>", ""}, + {"","",""} }; - for(const cmDocumentationEntry* op = escapes; op->name; ++op) + for(const cmDocumentationEntry* op = escapes; op->name.size(); ++op) { if(op->name[0] == c) { @@ -97,25 +97,25 @@ void cmDocumentationFormatterHTML::PrintSection(std::ostream& os, os << "<h2>" << name << "</h2>\n"; } if(!section) { return; } - for(const cmDocumentationEntry* op = section; op->brief;) + for(const cmDocumentationEntry* op = section; op->brief.size();) { - if(op->name) + if(op->name.size()) { os << "<ul>\n"; - for(;op->name;++op) + for(;op->name.size();++op) { os << " <li>\n"; if(op->name[0]) { os << " <b><code>"; - this->PrintHTMLEscapes(os, op->name); + this->PrintHTMLEscapes(os, op->name.c_str()); os << "</code></b>: "; } - this->PrintHTMLEscapes(os, op->brief); - if(op->full) + this->PrintHTMLEscapes(os, op->brief.c_str()); + if(op->full.size()) { os << "<br>\n "; - this->PrintFormatted(os, op->full); + this->PrintFormatted(os, op->full.c_str()); } os << "\n"; os << " </li>\n"; @@ -124,7 +124,7 @@ void cmDocumentationFormatterHTML::PrintSection(std::ostream& os, } else { - this->PrintFormatted(os, op->brief); + this->PrintFormatted(os, op->brief.c_str()); os << "\n"; ++op; } |