diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/doc/htmlHeader | 1 | ||||
-rw-r--r-- | cpp/doc/indexFooter | 1 | ||||
-rw-r--r-- | cpp/doc/indexHeader | 2 | ||||
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 4 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cpp/doc/htmlHeader b/cpp/doc/htmlHeader index e9acbaf5783..6cf6ca219a0 100644 --- a/cpp/doc/htmlHeader +++ b/cpp/doc/htmlHeader @@ -58,5 +58,4 @@ TITLE </style> </head> <body> - <!-- SwishCommand index --> <div class="Page"> diff --git a/cpp/doc/indexFooter b/cpp/doc/indexFooter index 4d95b418770..ef5cc5bcb68 100644 --- a/cpp/doc/indexFooter +++ b/cpp/doc/indexFooter @@ -1,4 +1,3 @@ - <!-- SwishCommand noindex --> <hr> <div class="HeaderFooter"> <table class="ButtonTable"> diff --git a/cpp/doc/indexHeader b/cpp/doc/indexHeader index 58cb9185d57..286f6f31cbf 100644 --- a/cpp/doc/indexHeader +++ b/cpp/doc/indexHeader @@ -5,7 +5,6 @@ <title> TITLE </title> - <!-- SwishCommand noindex> <style type="text/css"> body { font-family: Arial, Helvetica, sans-serif; @@ -105,4 +104,3 @@ TITLE </table> </div> <hr> - <!-- SwishCommand index> diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 20d9f219684..c663b49bc48 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -678,6 +678,7 @@ Slice::GeneratorBase::printHeaderFooter(const ContainedPtr& c) indexImage = "<img class=\"Button\" src=\"" + path + indexImage + "\" alt=\"Index\"/>"; } + _out << nl << "<!-- SwishCommand noindex -->"; start("div", "HeaderFooter"); start("table", "ButtonTable"); @@ -743,6 +744,8 @@ Slice::GeneratorBase::printHeaderFooter(const ContainedPtr& c) printLogo(c, container, onEnumPage); + _out << nl << "<!-- SwishCommand index>"; + end(); } @@ -1528,6 +1531,7 @@ Slice::StartPageGenerator::~StartPageGenerator() printHeaderFooter(); + _out << nl << "<!-- SwishCommand noindex -->"; _out << nl << "<hr>"; start("h1"); |