13 |
|
#include "Page.hpp" |
14 |
|
|
15 |
|
string program; |
16 |
< |
bool debug = false; |
16 |
> |
bool debug(false); |
17 |
|
|
18 |
|
int main(int argc, char* argv[]) |
19 |
|
{ |
21 |
|
|
22 |
|
string siteIndex, siteMap; |
23 |
|
|
24 |
< |
for (int index = 1; index < argc; index++) |
24 |
> |
for (int index(1); index < argc; index++) |
25 |
|
{ |
26 |
|
string arg(argv[index]); |
27 |
|
Matcher matcher; |
229 |
|
<< "<?xml-stylesheet type=\"text/xsl\" href=\"stylesheets/sitemap.xsl" |
230 |
|
<< "\"?>\n" |
231 |
|
<< "<!DOCTYPE page SYSTEM \"stylesheets/page.dtd\">\n" |
232 |
< |
<< "<!-- /sitemap.xml -->\n" |
232 |
> |
<< "<!-- $Id$ -->\n" |
233 |
|
<< "<page>\n" |
234 |
|
<< "\t<title>Sitemap</title>\n" |
235 |
|
<< "\t<section>\n" |