2007-09-19 17:05:28 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmDocumentationFormatterHTML.h"
|
2007-10-22 20:49:09 +04:00
|
|
|
#include "cmDocumentationSection.h"
|
2007-09-19 17:05:28 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static bool cmDocumentationIsHyperlinkChar(char c)
|
|
|
|
{
|
|
|
|
// This is not a complete list but works for CMake documentation.
|
|
|
|
return ((c >= 'A' && c <= 'Z') ||
|
|
|
|
(c >= 'a' && c <= 'z') ||
|
|
|
|
(c >= '0' && c <= '9') ||
|
|
|
|
c == '-' || c == '.' || c == '/' || c == '~' || c == '@' ||
|
|
|
|
c == ':' || c == '_' || c == '&' || c == '?' || c == '=');
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static void cmDocumentationPrintHTMLChar(std::ostream& os, char c)
|
|
|
|
{
|
|
|
|
// Use an escape sequence if necessary.
|
2007-10-22 20:49:09 +04:00
|
|
|
std::map<char,std::string> escapes;
|
|
|
|
escapes['<'] = "<";
|
|
|
|
escapes['>'] = ">";
|
|
|
|
escapes['&'] = "&";
|
|
|
|
escapes['\n'] = "<br>";
|
|
|
|
|
|
|
|
if (escapes.find(c) == escapes.end())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
// No escape sequence is needed.
|
|
|
|
os << c;
|
|
|
|
return;
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
2007-10-22 20:49:09 +04:00
|
|
|
|
|
|
|
os << escapes[c];
|
|
|
|
return;
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmDocumentationPrintHTMLLink(std::ostream& os, const char* begin)
|
|
|
|
{
|
|
|
|
// Look for the end of the link.
|
|
|
|
const char* end = begin;
|
|
|
|
while(cmDocumentationIsHyperlinkChar(*end))
|
|
|
|
{
|
|
|
|
++end;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print the hyperlink itself.
|
|
|
|
os << "<a href=\"";
|
|
|
|
for(const char* c = begin; c != end; ++c)
|
|
|
|
{
|
|
|
|
cmDocumentationPrintHTMLChar(os, *c);
|
|
|
|
}
|
|
|
|
os << "\">";
|
|
|
|
|
|
|
|
// The name of the hyperlink is the text itself.
|
|
|
|
for(const char* c = begin; c != end; ++c)
|
|
|
|
{
|
|
|
|
cmDocumentationPrintHTMLChar(os, *c);
|
|
|
|
}
|
|
|
|
os << "</a>";
|
|
|
|
|
|
|
|
// Return the position at which to continue scanning the input
|
|
|
|
// string.
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cmDocumentationFormatterHTML::cmDocumentationFormatterHTML()
|
|
|
|
:cmDocumentationFormatter()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
void cmDocumentationFormatterHTML
|
|
|
|
::PrintSection(std::ostream& os,
|
|
|
|
const cmDocumentationSection §ion,
|
|
|
|
const char* name)
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
if(name)
|
|
|
|
{
|
2007-11-27 23:59:22 +03:00
|
|
|
os << "<h2><a name=\"section_" << name << "\"/>" << name << "</h2>\n";
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
2007-10-22 20:49:09 +04:00
|
|
|
|
|
|
|
const std::vector<cmDocumentationEntry> &entries =
|
|
|
|
section.GetEntries();
|
2007-10-24 19:36:47 +04:00
|
|
|
|
|
|
|
os << "<ul>\n";
|
|
|
|
for(std::vector<cmDocumentationEntry>::const_iterator op
|
|
|
|
= entries.begin(); op != entries.end(); ++ op )
|
|
|
|
{
|
|
|
|
if(op->Name.size())
|
|
|
|
{
|
|
|
|
os << " <li><a href=\"#command_"
|
|
|
|
<< op->Name.c_str() << "\"><b><code>";
|
|
|
|
this->PrintHTMLEscapes(os, op->Name.c_str());
|
|
|
|
os << "</code></b></a></li>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
os << "</ul>\n" ;
|
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
for(std::vector<cmDocumentationEntry>::const_iterator op = entries.begin();
|
|
|
|
op != entries.end();)
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
if(op->Name.size())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os << "<ul>\n";
|
2007-10-22 20:49:09 +04:00
|
|
|
for(;op != entries.end() && op->Name.size(); ++op)
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os << " <li>\n";
|
2007-10-22 20:49:09 +04:00
|
|
|
if(op->Name.size())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
2007-10-24 19:36:47 +04:00
|
|
|
os << " <a name=\"command_"<<
|
|
|
|
op->Name.c_str() << "\"><b><code>";
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintHTMLEscapes(os, op->Name.c_str());
|
2007-10-24 19:36:47 +04:00
|
|
|
os << "</code></b></a>: ";
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintHTMLEscapes(os, op->Brief.c_str());
|
|
|
|
if(op->Full.size())
|
2007-09-19 17:05:28 +04:00
|
|
|
{
|
|
|
|
os << "<br>\n ";
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintFormatted(os, op->Full.c_str());
|
2007-09-19 17:05:28 +04:00
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
os << " </li>\n";
|
|
|
|
}
|
|
|
|
os << "</ul>\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
this->PrintFormatted(os, op->Brief.c_str());
|
2007-09-19 17:05:28 +04:00
|
|
|
os << "\n";
|
|
|
|
++op;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterHTML::PrintPreformatted(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
os << "<pre>";
|
|
|
|
this->PrintHTMLEscapes(os, text);
|
|
|
|
os << "</pre>\n ";
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDocumentationFormatterHTML::PrintParagraph(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
os << "<p>";
|
|
|
|
this->PrintHTMLEscapes(os, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-09-19 18:46:37 +04:00
|
|
|
void cmDocumentationFormatterHTML::PrintHeader(const char* /*name*/,
|
2007-09-19 17:05:28 +04:00
|
|
|
std::ostream& os)
|
|
|
|
{
|
|
|
|
os << "<html><body>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmDocumentationFormatterHTML::PrintFooter(std::ostream& os)
|
|
|
|
{
|
|
|
|
os << "</body></html>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmDocumentationFormatterHTML::PrintHTMLEscapes(std::ostream& os,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
// Hyperlink prefixes.
|
|
|
|
static const char* hyperlinks[] = {"http://", "ftp://", "mailto:", 0};
|
|
|
|
|
|
|
|
// Print each character.
|
|
|
|
for(const char* p = text; *p;)
|
|
|
|
{
|
|
|
|
// Handle hyperlinks specially to make them active.
|
|
|
|
bool found_hyperlink = false;
|
|
|
|
for(const char** h = hyperlinks; !found_hyperlink && *h; ++h)
|
|
|
|
{
|
|
|
|
if(strncmp(p, *h, strlen(*h)) == 0)
|
|
|
|
{
|
|
|
|
p = cmDocumentationPrintHTMLLink(os, p);
|
|
|
|
found_hyperlink = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print other characters normally.
|
|
|
|
if(!found_hyperlink)
|
|
|
|
{
|
|
|
|
cmDocumentationPrintHTMLChar(os, *p++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|