summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-07-31 19:02:14 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-07-31 19:02:14 (GMT)
commit0b0da24cdb9b47309b00eccd8f352f3bad3906fe (patch)
tree5d14e86e82eedb8c30468fc9768cc3c6b8b6095c
parentf01aa606027faa7fd5b3202999a6e39ea0e821b3 (diff)
parenta0a7ed0c244dbfd88b24a32410681f7a90e0f9db (diff)
downloadDoxygen-0b0da24cdb9b47309b00eccd8f352f3bad3906fe.zip
Doxygen-0b0da24cdb9b47309b00eccd8f352f3bad3906fe.tar.gz
Doxygen-0b0da24cdb9b47309b00eccd8f352f3bad3906fe.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
-rw-r--r--src/cite.cpp11
-rw-r--r--src/debug.cpp3
-rw-r--r--src/debug.h3
-rwxr-xr-xtemplates/html/bib2xhtml.pl7
4 files changed, 15 insertions, 9 deletions
diff --git a/src/cite.cpp b/src/cite.cpp
index 044651b..fd6fe3e 100644
--- a/src/cite.cpp
+++ b/src/cite.cpp
@@ -22,6 +22,7 @@
#include "portable.h"
#include "resourcemgr.h"
#include "util.h"
+#include "debug.h"
#include <qfile.h>
#include <qfileinfo.h>
@@ -30,10 +31,6 @@
#include <map>
#include <string>
-// Remove the temporary files
-#define RM_TMP_FILES (true)
-//#define RM_TMP_FILES (false)
-
const char *bibTmpFile = "bibTmpFile_";
const char *bibTmpDir = "bibTmpDir/";
@@ -232,6 +229,8 @@ void CitationManager::generatePage()
// do not generate an empty citations page
if (isEmpty()) return; // nothing to cite
+ bool citeDebug = Debug::isFlagSet(Debug::Cite);
+
// 0. add cross references from the bib files to the cite dictionary
QFile f;
const StringVector &citeDataList = Config_getList(CITE_BIB_FILES);
@@ -308,7 +307,7 @@ void CitationManager::generatePage()
int exitCode;
Portable::sysTimerStop();
if ((exitCode=Portable::system("perl","\""+bib2xhtmlFile+"\" "+bibOutputFiles+" \""+
- citeListFile+"\"")) != 0)
+ citeListFile+"\"" + (citeDebug ? " -d" : ""))) != 0)
{
err("Problems running bibtex. Verify that the command 'perl --version' works from the command line. Exit code: %d\n",
exitCode);
@@ -402,7 +401,7 @@ void CitationManager::generatePage()
}
// 9. Remove temporary files
- if (RM_TMP_FILES)
+ if (!citeDebug)
{
thisDir.remove(citeListFile);
thisDir.remove(doxygenBstFile);
diff --git a/src/debug.cpp b/src/debug.cpp
index 6815b3b..f56ef3a 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -42,7 +42,8 @@ static std::map< std::string, Debug::DebugMask > s_labels =
{ "filteroutput", Debug::FilterOutput },
{ "lex", Debug::Lex },
{ "plantuml", Debug::Plantuml },
- { "fortranfixed2free", Debug::FortranFixed2Free }
+ { "fortranfixed2free", Debug::FortranFixed2Free },
+ { "cite", Debug::Cite }
};
//------------------------------------------------------------------------
diff --git a/src/debug.h b/src/debug.h
index edc95e2..e71595f 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -36,7 +36,8 @@ class Debug
FilterOutput = 0x00001000,
Lex = 0x00002000,
Plantuml = 0x00004000,
- FortranFixed2Free = 0x00008000
+ FortranFixed2Free = 0x00008000,
+ Cite = 0x00010000
};
static void print(DebugMask mask,int prio,const char *fmt,...);
diff --git a/templates/html/bib2xhtml.pl b/templates/html/bib2xhtml.pl
index ca40b5f..539aaab 100755
--- a/templates/html/bib2xhtml.pl
+++ b/templates/html/bib2xhtml.pl
@@ -118,11 +118,14 @@ sub html_ent {
s/\\lfloor\b/&lfloor;/g;
s/\\rfloor\b/&rfloor;/g;
}
+$bdebug = 0;
foreach (@ARGV) {
if (/\.bib$/) {
$bibfile = $_;
$bibfile =~ s/\.bib$//;
push(@bibfiles,$bibfile);
+ } elsif ("$_" eq "-d") {
+ $bdebug = 1;
} else {
$htmlfile = $_;
}
@@ -315,5 +318,7 @@ close (OHTMLFILE);
close(HTMLFILE);
chmod($mode, "$htmlfile$$");
rename("$htmlfile$$", $htmlfile);
-unlink(@tmpfiles);
+if ($bdebug == 0) {
+ unlink(@tmpfiles);
+}
exit(0);