This commit is contained in:
Than Ngo 2010-01-04 11:00:05 +00:00
parent 8526d5800e
commit 648c9e7be1
4 changed files with 25 additions and 26 deletions

View File

@ -18,3 +18,4 @@ doxygen-1.5.8.src.tar.gz
doxygen-1.5.9.src.tar.gz doxygen-1.5.9.src.tar.gz
doxygen-1.6.0.src.tar.gz doxygen-1.6.0.src.tar.gz
doxygen-1.6.1.src.tar.gz doxygen-1.6.1.src.tar.gz
doxygen-1.6.2.src.tar.gz

View File

@ -1,9 +1,7 @@
diff -up doxygen-1.6.0/src/config.cpp.orig doxygen-1.6.0/src/config.cpp diff -up doxygen-1.6.2/src/configoptions.cpp.timestamp doxygen-1.6.2/src/configoptions.cpp
diff -up doxygen-1.6.0/src/config.l.orig doxygen-1.6.0/src/config.l --- doxygen-1.6.2/src/configoptions.cpp.timestamp 2009-12-28 11:39:11.000000000 +0100
diff -up doxygen-1.6.0/src/configoptions.cpp.orig doxygen-1.6.0/src/configoptions.cpp +++ doxygen-1.6.2/src/configoptions.cpp 2010-01-04 11:58:33.000000000 +0100
--- doxygen-1.6.0/src/configoptions.cpp.orig 2009-08-24 12:04:45.000000000 +0200 @@ -1088,6 +1088,14 @@ void addConfigOptions(Config *cfg)
+++ doxygen-1.6.0/src/configoptions.cpp 2009-08-24 12:06:34.000000000 +0200
@@ -1072,6 +1072,14 @@ void addConfigOptions(Config *cfg)
cs->setWidgetType(ConfigString::File); cs->setWidgetType(ConfigString::File);
cs->addDependency("GENERATE_HTML"); cs->addDependency("GENERATE_HTML");
//---- //----
@ -18,10 +16,10 @@ diff -up doxygen-1.6.0/src/configoptions.cpp.orig doxygen-1.6.0/src/configoption
cs = cfg->addString( cs = cfg->addString(
"HTML_STYLESHEET", "HTML_STYLESHEET",
"The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n" "The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n"
diff -up doxygen-1.6.0/src/config.xml.orig doxygen-1.6.0/src/config.xml diff -up doxygen-1.6.2/src/config.xml.timestamp doxygen-1.6.2/src/config.xml
--- doxygen-1.6.0/src/config.xml.orig 2009-08-24 11:55:46.000000000 +0200 --- doxygen-1.6.2/src/config.xml.timestamp 2009-12-28 11:38:55.000000000 +0100
+++ doxygen-1.6.0/src/config.xml 2009-08-24 12:03:06.000000000 +0200 +++ doxygen-1.6.2/src/config.xml 2010-01-04 11:58:33.000000000 +0100
@@ -751,6 +751,10 @@ The HTML_FOOTER tag can be used to speci @@ -761,6 +761,10 @@ The HTML_FOOTER tag can be used to speci
each generated HTML page. If it is left blank doxygen will generate a each generated HTML page. If it is left blank doxygen will generate a
standard footer. standard footer.
' defval='' depends='GENERATE_HTML'/> ' defval='' depends='GENERATE_HTML'/>
@ -32,10 +30,10 @@ diff -up doxygen-1.6.0/src/config.xml.orig doxygen-1.6.0/src/config.xml
<option type='string' id='HTML_STYLESHEET' format='file' docs=' <option type='string' id='HTML_STYLESHEET' format='file' docs='
The HTML_STYLESHEET tag can be used to specify a user-defined cascading The HTML_STYLESHEET tag can be used to specify a user-defined cascading
style sheet that is used by each HTML page. It can be used to style sheet that is used by each HTML page. It can be used to
diff -up doxygen-1.6.0/src/htmlgen.cpp.orig doxygen-1.6.0/src/htmlgen.cpp diff -up doxygen-1.6.2/src/htmlgen.cpp.timestamp doxygen-1.6.2/src/htmlgen.cpp
--- doxygen-1.6.0/src/htmlgen.cpp.orig 2009-08-24 11:55:20.000000000 +0200 --- doxygen-1.6.2/src/htmlgen.cpp.timestamp 2009-12-21 11:24:22.000000000 +0100
+++ doxygen-1.6.0/src/htmlgen.cpp 2009-08-24 11:53:29.000000000 +0200 +++ doxygen-1.6.2/src/htmlgen.cpp 2010-01-04 12:04:31.000000000 +0100
@@ -56,6 +56,7 @@ static const char search_script[]= @@ -54,6 +54,7 @@ static const char search_script[]=
static QCString g_header; static QCString g_header;
static QCString g_footer; static QCString g_footer;
@ -43,7 +41,7 @@ diff -up doxygen-1.6.0/src/htmlgen.cpp.orig doxygen-1.6.0/src/htmlgen.cpp
//------------------------- Pictures for the Tabs ------------------------ //------------------------- Pictures for the Tabs ------------------------
@@ -640,6 +641,8 @@ void HtmlGenerator::init() @@ -693,6 +694,8 @@ void HtmlGenerator::init()
if (!Config_getString("HTML_FOOTER").isEmpty()) if (!Config_getString("HTML_FOOTER").isEmpty())
{ {
g_footer=fileToString(Config_getString("HTML_FOOTER")); g_footer=fileToString(Config_getString("HTML_FOOTER"));
@ -52,12 +50,12 @@ diff -up doxygen-1.6.0/src/htmlgen.cpp.orig doxygen-1.6.0/src/htmlgen.cpp
//printf("g_footer='%s'\n",g_footer.data()); //printf("g_footer='%s'\n",g_footer.data());
} }
createSubDirs(d); createSubDirs(d);
@@ -864,7 +867,7 @@ static void writePageFooter(QTextStream @@ -932,7 +935,7 @@ static void writePageFooter(QTextStream
if (timeStamp)
{ {
t << "<hr size=\"1\"/><address style=\"text-align: right;\"><small>";
t << theTranslator->trGeneratedAt( t << theTranslator->trGeneratedAt(
- dateToString(TRUE), - dateToString(TRUE),
+ dateToString(timestamp), + dateToString(timestamp),
Config_getString("PROJECT_NAME") Config_getString("PROJECT_NAME")
); );
t << "&nbsp;" << endl << "<a href=\"http://www.doxygen.org/index.html\">"; }

View File

@ -6,7 +6,7 @@ Epoch: 1
Url: http://www.stack.nl/~dimitri/doxygen/index.html Url: http://www.stack.nl/~dimitri/doxygen/index.html
Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz
Patch1: doxygen-1.6.0-config.patch Patch1: doxygen-1.6.0-config.patch
Patch2: doxygen-1.6.0-timestamp.patch Patch2: doxygen-1.6.2-timestamp.patch
Group: Development/Tools Group: Development/Tools
# No version is specified. # No version is specified.
License: GPL+ License: GPL+

View File

@ -1 +1 @@
2ec343643e134f0d3ce2069420bcb4f0 doxygen-1.6.1.src.tar.gz 70260101ef60952cb99484700241c99e doxygen-1.6.2.src.tar.gz