diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-08-01 13:36:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-08-01 13:36:28 (GMT) |
commit | b2a69f2504808f5cc62105eeb08dbb5d9689b82c (patch) | |
tree | 412f33fa1e7a0086e8d74c3860ae83cf7043e25c | |
parent | 4a1c9f98bc5f9c82e81a694160fecc5a22f0e02c (diff) | |
parent | fbe1bcdbd09848cd512e01d9006842ecc4fd665b (diff) | |
download | Doxygen-b2a69f2504808f5cc62105eeb08dbb5d9689b82c.zip Doxygen-b2a69f2504808f5cc62105eeb08dbb5d9689b82c.tar.gz Doxygen-b2a69f2504808f5cc62105eeb08dbb5d9689b82c.tar.bz2 |
Merge branch 'albert-github-feature/bug_chm_tests'
-rw-r--r-- | src/configimpl.l | 8 | ||||
-rw-r--r-- | src/htmlhelp.cpp | 59 | ||||
-rw-r--r-- | src/htmlhelp.h | 1 |
3 files changed, 43 insertions, 25 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index 9eda61d..25fa78b 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -1577,6 +1577,14 @@ void Config::checkAndCorrect() } //------------------------ + // check if GENERATE_HTMLHELP and HTML_FILE_EXTENSION is not .html + if (Config_getString(HTML_FILE_EXTENSION)!=".html" && Config_getBool(GENERATE_HTMLHELP)) + { + err("When enabling GENERATE_HTMLHELP the HTML_FILE_EXTENSION should be \".html\". I'll do it for you.\n"); + Config_updateString(HTML_FILE_EXTENSION,".html"); + } + + //------------------------ // check if SEARCHENGINE and GENERATE_HTMLHELP are both enabled if (Config_getBool(SEARCHENGINE) && Config_getBool(GENERATE_HTMLHELP)) { diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index 8ef3d19..f5856e5 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -23,6 +23,7 @@ #include <qdict.h> #include <qregexp.h> #include <qfile.h> +#include <qfileinfo.h> #include "qtextcodec.h" #include "sortdict.h" @@ -74,6 +75,7 @@ class HtmlHelpIndex const char *url, const char *anchor, bool hasLink,bool reversed); void writeFields(FTextStream &t); + int dictCount(void) {return dict->count();}; private: IndexFieldSDict *dict; HtmlHelp *m_help; @@ -375,20 +377,20 @@ void HtmlHelp::initialize() 0x404 Chinese (Taiwan) New LCIDs: - 0x421 Indonesian - 0x41A Croatian - 0x418 Romanian - 0x424 Slovenian - 0x41B Slovak - 0x422 Ukrainian - 0x81A Serbian (Serbia, Latin) - 0x403 Catalan - 0x426 Latvian - 0x427 Lithuanian - 0x436 Afrikaans - 0x42A Vietnamese - 0x429 Persian (Iran) - 0xC01 Arabic (Egypt) - I don't know which version of arabic is used inside translator_ar.h , + 0x421 Indonesian + 0x41A Croatian + 0x418 Romanian + 0x424 Slovenian + 0x41B Slovak + 0x422 Ukrainian + 0x81A Serbian (Serbia, Latin) + 0x403 Catalan + 0x426 Latvian + 0x427 Lithuanian + 0x436 Afrikaans + 0x42A Vietnamese + 0x429 Persian (Iran) + 0xC01 Arabic (Egypt) - I don't know which version of arabic is used inside translator_ar.h , so I have chosen Egypt at random */ @@ -468,6 +470,12 @@ void HtmlHelp::createProjectFile() { FTextStream t(&f); + char *hhcFile = "\"index.hhc\""; + char *hhkFile = "\"index.hhk\""; + int hhkPresent = index->dictCount(); + if (!ctsItemPresent) hhcFile = ""; + if (!hhkPresent) hhkFile = ""; + QCString indexName="index"+Doxygen::htmlFileExtension; t << "[OPTIONS]\n"; if (!Config_getString(CHM_FILE).isEmpty()) @@ -475,12 +483,12 @@ void HtmlHelp::createProjectFile() t << "Compiled file=" << Config_getString(CHM_FILE) << "\n"; } t << "Compatibility=1.1\n" - "Full-text search=Yes\n" - "Contents file=index.hhc\n" - "Default Window=main\n" - "Default topic=" << indexName << "\n" - "Index file=index.hhk\n" - "Language=" << getLanguageString() << endl; + "Full-text search=Yes\n"; + if (ctsItemPresent) t << "Contents file=index.hhc\n"; + t << "Default Window=main\n" + "Default topic=" << indexName << "\n"; + if (hhkPresent) t << "Index file=index.hhk\n"; + t << "Language=" << getLanguageString() << endl; if (Config_getBool(BINARY_TOC)) t << "Binary TOC=YES\n"; if (Config_getBool(GENERATE_CHI)) t << "Create CHI file=YES\n"; t << "Title=" << recode(Config_getString(PROJECT_NAME)) << endl << endl; @@ -499,14 +507,14 @@ void HtmlHelp::createProjectFile() // Value has been taken from htmlhelp.h file of the HTML Help Workshop if (Config_getBool(BINARY_TOC)) { - t << "main=\"" << recode(Config_getString(PROJECT_NAME)) << "\",\"index.hhc\"," - "\"index.hhk\",\"" << indexName << "\",\"" << + t << "main=\"" << recode(Config_getString(PROJECT_NAME)) << "\"," << hhcFile << "," + << hhkFile << ",\"" << indexName << "\",\"" << indexName << "\",,,,,0x23520,,0x70387e,,,,,,,,0" << endl << endl; } else { - t << "main=\"" << recode(Config_getString(PROJECT_NAME)) << "\",\"index.hhc\"," - "\"index.hhk\",\"" << indexName << "\",\"" << + t << "main=\"" << recode(Config_getString(PROJECT_NAME)) << "\"," << hhcFile << "," + << hhkFile << ",\"" << indexName << "\",\"" << indexName << "\",,,,,0x23520,,0x10387e,,,,,,,,0" << endl << endl; } @@ -520,7 +528,7 @@ void HtmlHelp::createProjectFile() uint i; for (i=0;i<imageFiles.count();i++) { - t << imageFiles.at(i) << endl; + t << QFileInfo(imageFiles.at(i)).fileName().data() << endl; } f.close(); } @@ -639,6 +647,7 @@ void HtmlHelp::addContentsItem(bool isDir, //file = 0; //anchor = 0; //} + ctsItemPresent = true; int i; for (i=0;i<dc;i++) cts << " "; cts << "<LI><OBJECT type=\"text/sitemap\">"; cts << "<param name=\"Name\" value=\"" << convertToHtml(recode(name),TRUE) << "\">"; diff --git a/src/htmlhelp.h b/src/htmlhelp.h index 184b929..043fa1a 100644 --- a/src/htmlhelp.h +++ b/src/htmlhelp.h @@ -92,6 +92,7 @@ class HtmlHelp : public IndexIntf QFile *cf,*kf; FTextStream cts,kts; + bool ctsItemPresent = false; HtmlHelpIndex *index; int dc; QStrList indexFiles; |