diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-03-10 16:02:35 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-03-10 16:02:35 (GMT) |
commit | 57a81b6ed2c1f626c57c20f143468730322856da (patch) | |
tree | 6db5f7392588f3b8c9d05ab7d2651803bc00c4c1 /src/htmlgen.cpp | |
parent | c7bc295f92f56d1dea369663e058933f550a0187 (diff) | |
download | Doxygen-57a81b6ed2c1f626c57c20f143468730322856da.zip Doxygen-57a81b6ed2c1f626c57c20f143468730322856da.tar.gz Doxygen-57a81b6ed2c1f626c57c20f143468730322856da.tar.bz2 |
Release-1.2.14-20020310
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index af01a96..4f971c2 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -181,14 +181,16 @@ void HtmlGenerator::writeHeaderFile(QFile &file) void HtmlGenerator::writeFooterFile(QFile &file) { QTextStream t(&file); - t << "<hr><address><small>\n"; + t << "<hr><address align=\"right\"><small>\n"; t << theTranslator->trGeneratedAt( "$datetime", "$projectname" ); t << " <a href=\"http://www.doxygen.org/index.html\">\n" << "<img src=\"doxygen.png\" alt=\"doxygen\" " << "align=\"middle\" border=0 width=110 height=53>\n" - << "</a> $doxygenversion " << theTranslator->trWrittenBy() - << " <a href=\"mailto:dimitri@stack.nl\">Dimitri van Heesch</a>,\n" - << " © 1997-2002</small></address>\n" + << "</a> $doxygenversion"; + // << " " << theTranslator->trWrittenBy() + // << " <a href=\"mailto:dimitri@stack.nl\">Dimitri van Heesch</a>,\n" + // << " © 1997-2002" + t << "</small></address>\n" << "</body>\n" << "</html>\n"; } @@ -255,7 +257,7 @@ void HtmlGenerator::writeFooter(int part,bool external) { case 0: if (g_footer.isEmpty()) - t << "<hr><address><small>"; + t << "<hr><address align=\"right\"><small>"; else t << substituteKeywords(g_footer,convertToHtml(lastTitle)); break; @@ -280,8 +282,10 @@ void HtmlGenerator::writeFooter(int part,bool external) break; default: if (g_footer.isEmpty()) - t << " <a href=\"mailto:dimitri@stack.nl\">Dimitri van Heesch</a>,\n © " - "1997-2002</small></address>\n</body>\n</html>\n"; + { + //t << " <a href=\"mailto:dimitri@stack.nl\">Dimitri van Heesch</a>,\n © 1997-2002"; + t << "</small></address>\n</body>\n</html>\n"; + } break; } |