make HTML_TIMESTAMP default FALSE
This commit is contained in:
parent
8effc62403
commit
df8727041b
@ -1,63 +0,0 @@
|
||||
diff -up doxygen-1.7.5/src/configoptions.cpp.timestamp doxygen-1.7.5/src/configoptions.cpp
|
||||
--- doxygen-1.7.5/src/configoptions.cpp.timestamp 2011-08-03 15:54:50.000000000 +0200
|
||||
+++ doxygen-1.7.5/src/configoptions.cpp 2011-08-23 12:55:56.000000000 +0200
|
||||
@@ -1173,6 +1173,14 @@ void addConfigOptions(Config *cfg)
|
||||
cs->setWidgetType(ConfigString::File);
|
||||
cs->addDependency("GENERATE_HTML");
|
||||
//----
|
||||
+ cb = cfg->addBool(
|
||||
+ "HTML_TIMESTAMP",
|
||||
+ "If the HTML_TIMESTAMP tag is set to YES then the generated HTML\n"
|
||||
+ "documentation will contain the timesstamp.",
|
||||
+ FALSE
|
||||
+ );
|
||||
+ cb->addDependency("GENERATE_HTML");
|
||||
+ //----
|
||||
cs = cfg->addString(
|
||||
"HTML_STYLESHEET",
|
||||
"The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n"
|
||||
diff -up doxygen-1.7.5/src/config.xml.timestamp doxygen-1.7.5/src/config.xml
|
||||
--- doxygen-1.7.5/src/config.xml.timestamp 2011-08-03 15:54:48.000000000 +0200
|
||||
+++ doxygen-1.7.5/src/config.xml 2011-08-23 12:55:56.000000000 +0200
|
||||
@@ -819,6 +819,11 @@ The HTML_FOOTER tag can be used to speci
|
||||
each generated HTML page. If it is left blank doxygen will generate a
|
||||
standard footer.
|
||||
' defval='' depends='GENERATE_HTML'/>
|
||||
+ <option type='bool' id='HTML_TIMESTAMP' docs='
|
||||
+If the HTML_TIMESTAMP tag is set to YES then the generated HTML
|
||||
+documentation will contain the timesstamp.
|
||||
+' defval='' depends='GENERATE_HTML'/>
|
||||
+
|
||||
<option type='string' id='HTML_STYLESHEET' format='file' docs='
|
||||
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
|
||||
diff -up doxygen-1.7.5/src/htmlgen.cpp.timestamp doxygen-1.7.5/src/htmlgen.cpp
|
||||
--- doxygen-1.7.5/src/htmlgen.cpp.timestamp 2011-08-01 22:10:17.000000000 +0200
|
||||
+++ doxygen-1.7.5/src/htmlgen.cpp 2011-08-23 13:01:16.000000000 +0200
|
||||
@@ -88,7 +88,7 @@ static const char svgpan_script[]=
|
||||
|
||||
static QCString g_header;
|
||||
static QCString g_footer;
|
||||
-
|
||||
+static bool timestamp=false;
|
||||
//------------------------- Pictures for the Tabs ------------------------
|
||||
|
||||
// active
|
||||
@@ -1072,6 +1072,8 @@ void HtmlGenerator::init()
|
||||
{
|
||||
g_footer = defaultHtmlFooter;
|
||||
}
|
||||
+ if (Config_getBool("HTML_TIMESTAMP"))
|
||||
+ timestamp=true;
|
||||
createSubDirs(d);
|
||||
|
||||
QCString fileName=dname+"/tabs.css";
|
||||
@@ -1285,7 +1287,7 @@ QCString HtmlGenerator::writeLogoAsStrin
|
||||
if (timeStamp)
|
||||
{
|
||||
result += theTranslator->trGeneratedAt(
|
||||
- dateToString(TRUE),
|
||||
+ dateToString(timestamp),
|
||||
Config_getString("PROJECT_NAME")
|
||||
);
|
||||
}
|
12
doxygen-1.8.1.1-html_timestamp_default_false.patch
Normal file
12
doxygen-1.8.1.1-html_timestamp_default_false.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -up doxygen-1.8.1.1/src/configoptions.cpp.html_timestamp_off.patch doxygen-1.8.1.1/src/configoptions.cpp
|
||||
--- doxygen-1.8.1.1/src/configoptions.cpp.html_timestamp_off.patch 2012-06-09 06:41:04.000000000 -0500
|
||||
+++ doxygen-1.8.1.1/src/configoptions.cpp 2012-06-13 13:31:15.291500215 -0500
|
||||
@@ -1270,7 +1270,7 @@ void addConfigOptions(Config *cfg)
|
||||
"If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n"
|
||||
"page will contain the date and time when the page was generated. Setting\n"
|
||||
"this to NO can help when comparing the output of multiple runs.",
|
||||
- TRUE
|
||||
+ FALSE
|
||||
);
|
||||
cb->addDependency("GENERATE_HTML");
|
||||
//----
|
@ -1,7 +1,7 @@
|
||||
Summary: A documentation system for C/C++
|
||||
Name: doxygen
|
||||
Version: 1.8.1.1
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Epoch: 1
|
||||
Group: Development/Tools
|
||||
# No version is specified.
|
||||
@ -14,7 +14,7 @@ Source1: doxywizard.png
|
||||
Source2: doxywizard.desktop
|
||||
|
||||
Patch1: doxygen-1.8.1-config.patch
|
||||
Patch2: doxygen-1.7.5-timestamp.patch
|
||||
Patch2: doxygen-1.8.1.1-html_timestamp_default_false.patch
|
||||
|
||||
BuildRequires: perl
|
||||
BuildRequires: texlive-dvips
|
||||
@ -47,7 +47,7 @@ are used by doxygen.
|
||||
%setup -q
|
||||
|
||||
%patch1 -p1 -b .config
|
||||
%patch2 -p1 -b .timestamp
|
||||
%patch2 -p1 -b .html_timestamp_default_false
|
||||
|
||||
%build
|
||||
unset QTDIR
|
||||
@ -101,6 +101,9 @@ rm -rf %{buildroot}
|
||||
%{_datadir}/pixmaps/*
|
||||
|
||||
%changelog
|
||||
* Wed Jun 13 2012 Rex Dieter <rdieter@fedoraproject.org> 1:1.8.1.1-2
|
||||
- make HTML_TIMESTAMP default FALSE
|
||||
|
||||
* Mon Jun 11 2012 Than Ngo <than@redhat.com> - 1:1.8.1.1-1
|
||||
- 1.8.1.1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user