1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmDocumentationFormatterDocbook.cxx,v $
6 Date: $Date: 2008-10-10 15:23:35 $
7 Version: $Revision: 1.4 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #include "cmDocumentationFormatterDocbook.h"
18 #include "cmDocumentationSection.h"
19 //----------------------------------------------------------------------------
21 // this function is a copy of the one in the HTML formatter
22 // the three functions below are slightly modified copies
23 static bool cmDocumentationIsHyperlinkCharDocbook(char c
)
25 // This is not a complete list but works for CMake documentation.
26 return ((c
>= 'A' && c
<= 'Z') ||
27 (c
>= 'a' && c
<= 'z') ||
28 (c
>= '0' && c
<= '9') ||
29 c
== '-' || c
== '.' || c
== '/' || c
== '~' || c
== '@' ||
30 c
== ':' || c
== '_' || c
== '&' || c
== '?' || c
== '=');
33 //----------------------------------------------------------------------------
34 static void cmDocumentationPrintDocbookChar(std::ostream
& os
, char c
)
36 // Use an escape sequence if necessary.
53 //----------------------------------------------------------------------------
54 const char* cmDocumentationPrintDocbookLink(std::ostream
& os
,const char* begin
)
56 // Look for the end of the link.
57 const char* end
= begin
;
58 while(cmDocumentationIsHyperlinkCharDocbook(*end
))
63 // Print the hyperlink itself.
64 os
<< "<ulink url=\"";
65 for(const char* c
= begin
; c
!= end
; ++c
)
67 cmDocumentationPrintDocbookChar(os
, *c
);
74 //----------------------------------------------------------------------------
75 void cmDocumentationPrintDocbookEscapes(std::ostream
& os
, const char* text
)
77 // Hyperlink prefixes.
78 static const char* hyperlinks
[] = {"http://", "ftp://", "mailto:", 0};
80 // Print each character.
81 for(const char* p
= text
; *p
;)
83 // Handle hyperlinks specially to make them active.
84 bool found_hyperlink
= false;
85 for(const char** h
= hyperlinks
; !found_hyperlink
&& *h
; ++h
)
87 if(strncmp(p
, *h
, strlen(*h
)) == 0)
89 p
= cmDocumentationPrintDocbookLink(os
, p
);
90 found_hyperlink
= true;
94 // Print other characters normally.
97 cmDocumentationPrintDocbookChar(os
, *p
++);
103 cmDocumentationFormatterDocbook::cmDocumentationFormatterDocbook()
104 :cmDocumentationFormatter()
108 void cmDocumentationFormatterDocbook
109 ::PrintSection(std::ostream
& os
,
110 const cmDocumentationSection
§ion
,
115 std::string id
= "section_";
117 if (this->EmittedLinkIds
.find(id
) == this->EmittedLinkIds
.end())
119 this->EmittedLinkIds
.insert(id
);
120 os
<< "<sect1 id=\"section_" << name
<< "\">\n"
121 "<title>\n" << name
<< "</title>\n";
125 static unsigned int i
=0;
127 os
<< "<sect1 id=\"section_" << name
<< i
<< "\">\n"
128 "<title>\n" << name
<< "</title>\n";
132 std::string prefix
= this->ComputeSectionLinkPrefix(name
);
134 const std::vector
<cmDocumentationEntry
> &entries
=
135 section
.GetEntries();
137 os
<< "<itemizedlist>\n";
138 for(std::vector
<cmDocumentationEntry
>::const_iterator op
139 = entries
.begin(); op
!= entries
.end(); ++ op
)
143 os
<< " <listitem><link linkend=\"" << prefix
<< "_";
144 cmDocumentationPrintDocbookEscapes(os
, op
->Name
.c_str());
145 os
<< "\"><emphasis><literal>";
146 cmDocumentationPrintDocbookEscapes(os
, op
->Name
.c_str());
147 os
<< "</literal></emphasis></link></listitem>\n";
150 os
<< "</itemizedlist>\n" ;
152 for(std::vector
<cmDocumentationEntry
>::const_iterator op
= entries
.begin();
153 op
!= entries
.end();)
157 for(;op
!= entries
.end() && op
->Name
.size(); ++op
)
161 os
<< " <para id=\"" << prefix
<< "_";
162 cmDocumentationPrintDocbookEscapes(os
, op
->Name
.c_str());
164 // make sure that each id exists only once. Since it seems
165 // not easily possible to determine which link refers to which id,
166 // we have at least to make sure that the duplicated id's get a
167 // different name (by appending an increasing number), Alex
168 std::string id
= prefix
;
171 if (this->EmittedLinkIds
.find(id
) == this->EmittedLinkIds
.end())
173 this->EmittedLinkIds
.insert(id
);
177 static unsigned int i
=0;
181 // continue as normal...
183 os
<< "\"><sect2><title>";
184 cmDocumentationPrintDocbookEscapes(os
, op
->Name
.c_str());
185 os
<< "</title></sect2> ";
187 cmDocumentationPrintDocbookEscapes(os
, op
->Brief
.c_str());
195 // a line break seems to be simply a line break with docbook
197 this->PrintFormatted(os
, op
->Full
.c_str());
204 this->PrintFormatted(os
, op
->Brief
.c_str());
215 void cmDocumentationFormatterDocbook::PrintPreformatted(std::ostream
& os
,
218 os
<< "<literallayout>";
219 cmDocumentationPrintDocbookEscapes(os
, text
);
220 os
<< "</literallayout>\n ";
223 void cmDocumentationFormatterDocbook::PrintParagraph(std::ostream
& os
,
227 cmDocumentationPrintDocbookEscapes(os
, text
);
231 //----------------------------------------------------------------------------
232 void cmDocumentationFormatterDocbook::PrintHeader(const char* docname
,
236 // this one is used to ensure that we don't create multiple link targets
237 // with the same name. We can clear it here since we are at the
238 // start of a document here.
239 this->EmittedLinkIds
.clear();
241 os
<< "<?xml version=\"1.0\" ?>\n"
242 "<!DOCTYPE article PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\" "
243 "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\" [\n"
244 "<!ENTITY % addindex \"IGNORE\">\n"
245 "<!ENTITY % English \"INCLUDE\"> ]>\n"
248 "<title>" << docname
<< " - " << appname
<< "</title>\n"
252 //----------------------------------------------------------------------------
253 void cmDocumentationFormatterDocbook::PrintFooter(std::ostream
& os
)
255 os
<< "</article>\n";