summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile.old
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile.old')
0 files changed, 0 insertions, 0 deletions
073041ac4da6f4d (diff)downloadDoxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.zip
Doxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.tar.gz
Doxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.tar.bz2
Release-1.5.8-20090304
Diffstat
-rw-r--r--INSTALL4
-rw-r--r--README4
-rw-r--r--addon/doxywizard/expert.cpp2
-rw-r--r--addon/doxywizard/inputstring.cpp2
-rwxr-xr-xconfigure4
-rw-r--r--doc/config.doc22
-rw-r--r--doc/docblocks.doc4
-rw-r--r--doc/language.doc30
-rw-r--r--doc/language.tpl4
-rw-r--r--doc/maintainers.txt5
-rw-r--r--doc/translator_report.txt84
-rw-r--r--doc/xmlcmds.doc2
-rw-r--r--src/classdef.cpp139
-rw-r--r--src/code.l41
-rw-r--r--src/config.xml28
-rw-r--r--src/configoptions.cpp25
-rw-r--r--src/definition.cpp74
-rw-r--r--src/definition.h2
-rw-r--r--src/doxygen.cpp11
-rw-r--r--src/filedef.cpp17
-rw-r--r--src/fortranscanner.l59
-rw-r--r--src/lang_cfg.h3
-rw-r--r--src/language.cpp15
-rw-r--r--src/latexdocvisitor.cpp23
-rw-r--r--src/latexgen.cpp218
-rw-r--r--src/latexgen.h22
-rw-r--r--src/libdoxycfg.pro.in2
-rw-r--r--src/portable.cpp29
-rw-r--r--src/portable.h11
-rw-r--r--src/portable_c.c24
-rw-r--r--src/scanner.l14
-rw-r--r--src/translator_eo.h1780
-rw-r--r--src/translator_es.h318
-rw-r--r--src/translator_jp.h222
-rw-r--r--src/translator_sv.h (renamed from src/translator_se.h)227
-rw-r--r--src/vhdlscanner.l4
-rw-r--r--src/xmlgen.cpp2
37 files changed, 2979 insertions, 498 deletions
diff --git a/INSTALL b/INSTALL
index 3ae9eda..3633c8a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,7 +1,7 @@
-DOXYGEN Version 1.5.8-20090129
+DOXYGEN Version 1.5.8-20090304
Please read the installation section of the manual
(http://www.doxygen.org/install.html) for instructions.
--------
-Dimitri van Heesch (29 January 2009)
+Dimitri van Heesch (04 March 2009)
diff --git a/README b/README
index 3ae756e..d8e2c8c 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-DOXYGEN Version 1.5.8_20090129
+DOXYGEN Version 1.5.8_20090304
Please read INSTALL for compilation instructions.
@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.
Enjoy,
-Dimitri van Heesch (dimitri@stack.nl) (29 January 2009)
+Dimitri van Heesch (dimitri@stack.nl) (04 March 2009)
diff --git a/addon/doxywizard/expert.cpp b/addon/doxywizard/expert.cpp
index 1e0adb1..7c16c28 100644
--- a/addon/doxywizard/expert.cpp
+++ b/addon/doxywizard/expert.cpp
@@ -498,7 +498,7 @@ static QString getStringOption(
bool Expert::htmlOutputPresent(const QString &workingDir) const
{
bool generateHtml = getBoolOption(m_options,QString::fromAscii("GENERATE_HTML"));
- if (!generateHtml) return false;
+ if (!generateHtml || workingDir.isEmpty()) return false;
QString indexFile = getHtmlOutputIndex(workingDir);
QFileInfo fi(indexFile);
return fi.exists() && fi.isFile();
diff --git a/addon/doxywizard/inputstring.cpp b/addon/doxywizard/inputstring.cpp