@@ -432,9 +432,7 @@ static QCString substituteHtmlKeywords(const QCString &file,
432432 if (disableIndex || !Config_getBool (HTML_DYNAMIC_MENUS) || Config_getBool (FULL_SIDEBAR))
433433 {
434434 searchCssJs += " <script type=\" text/javascript\" >\n "
435- " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n "
436435 " $(function() { init_search(); });\n "
437- " /* @license-end */\n "
438436 " </script>" ;
439437 }
440438 }
@@ -443,11 +441,9 @@ static QCString substituteHtmlKeywords(const QCString &file,
443441 if (disableIndex || !Config_getBool (HTML_DYNAMIC_MENUS))
444442 {
445443 searchCssJs += " <script type=\" text/javascript\" >\n "
446- " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n "
447444 " $(function() {\n "
448445 " if ($('.searchresults').length > 0) { searchBox.DOMSearchField().focus(); }\n "
449446 " });\n "
450- " /* @license-end */\n "
451447 " </script>\n " ;
452448 }
453449
@@ -1471,18 +1467,14 @@ void HtmlGenerator::startFile(const QCString &name,const QCString &,
14711467 if (searchEngine /* && !generateTreeView*/ )
14721468 {
14731469 m_t << " <script type=\" text/javascript\" >\n " ;
1474- m_t << " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n " ;
14751470 m_t << " var searchBox = new SearchBox(\" searchBox\" , \" "
14761471 << m_relPath<< " search/\" ,'" << Doxygen::htmlFileExtension << " ');\n " ;
1477- m_t << " /* @license-end */\n " ;
14781472 m_t << " </script>\n " ;
14791473 }
14801474 if (Config_getBool (HTML_CODE_FOLDING))
14811475 {
14821476 m_t << " <script type=\" text/javascript\" >\n " ;
1483- m_t << " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n " ;
14841477 m_t << " $(function() { codefold.init(); });\n " ;
1485- m_t << " /* @license-end */\n " ;
14861478 m_t << " </script>\n " ;
14871479 }
14881480 m_sectionCount=0 ;
@@ -2927,7 +2919,6 @@ static void writeDefaultQuickLinks(TextStream &t,
29272919 t << " <script type=\" text/javascript\" src=\" " << relPath << " menudata.js\" ></script>\n " ;
29282920 t << " <script type=\" text/javascript\" src=\" " << relPath << " menu.js\" ></script>\n " ;
29292921 t << " <script type=\" text/javascript\" >\n " ;
2930- t << " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n " ;
29312922 t << " $(function() {\n " ;
29322923 t << " initMenu('" << relPath << " ',"
29332924 << (searchEngine && !(generateTreeView && fullSidebar)?" true" :" false" ) << " ,"
@@ -2953,7 +2944,6 @@ static void writeDefaultQuickLinks(TextStream &t,
29532944 }
29542945 }
29552946 t << " });\n " ;
2956- t << " /* @license-end */\n " ;
29572947 t << " </script>\n " ;
29582948 t << " <div id=\" main-nav\" ></div>\n " ;
29592949 }
@@ -3006,7 +2996,7 @@ void HtmlGenerator::endQuickIndices()
30062996 }
30072997}
30082998
3009- QCString HtmlGenerator::writeSplitBarAsString (const QCString &name,const QCString &relpath,bool showListOfAllMembers )
2999+ QCString HtmlGenerator::writeSplitBarAsString (const QCString &name,const QCString &relpath,const QCString &allMembersFile )
30103000{
30113001 bool generateTreeView = Config_getBool (GENERATE_TREEVIEW);
30123002 QCString result;
@@ -3031,12 +3021,7 @@ QCString HtmlGenerator::writeSplitBarAsString(const QCString &name,const QCStrin
30313021 " </div>\n "
30323022 " </div>\n "
30333023 " <script type=\" text/javascript\" >\n "
3034- " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n "
3035- " $(function(){initNavTree('" + fn +
3036- " ','" + relpath +
3037- " '" + QCString (showListOfAllMembers ? " ,true" : " " ) +
3038- " ); initResizable(true); });\n "
3039- " /* @license-end */\n "
3024+ " $(function(){initNavTree('" + fn + " ','" + relpath + " ','" + allMembersFile + " '); initResizable(true); });\n "
30403025 " </script>\n " ;
30413026 if (Config_getBool (DISABLE_INDEX) || !Config_getBool (FULL_SIDEBAR))
30423027 {
@@ -3046,17 +3031,15 @@ QCString HtmlGenerator::writeSplitBarAsString(const QCString &name,const QCStrin
30463031 else
30473032 {
30483033 result += " <script type=\" text/javascript\" >\n "
3049- " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n "
30503034 " $(function(){ initResizable(false); });\n "
3051- " /* @license-end */\n "
30523035 " </script>\n " ;
30533036 }
30543037 return result;
30553038}
30563039
3057- void HtmlGenerator::writeSplitBar (const QCString &name,bool showListOfAllMembers )
3040+ void HtmlGenerator::writeSplitBar (const QCString &name,const QCString &allMembersFile )
30583041{
3059- m_t << writeSplitBarAsString (name,m_relPath,showListOfAllMembers );
3042+ m_t << writeSplitBarAsString (name,m_relPath,allMembersFile );
30603043}
30613044
30623045void HtmlGenerator::writeNavigationPath (const QCString &s)
@@ -3141,10 +3124,8 @@ void HtmlGenerator::writeSearchPage()
31413124 t << " <!-- " << theTranslator->trGeneratedBy () << " Doxygen "
31423125 << getDoxygenVersion () << " -->\n " ;
31433126 t << " <script type=\" text/javascript\" >\n " ;
3144- t << " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n " ;
3145- t << " var searchBox = new SearchBox(\" searchBox\" , \" "
3127+ t << " var searchBox = new SearchBox(\" searchBox\" , \" "
31463128 << " search/\" ,'" << Doxygen::htmlFileExtension << " ');\n " ;
3147- t << " /* @license-end */\n " ;
31483129 t << " </script>\n " ;
31493130
31503131 if (!disableIndex && !quickLinksAfterSplitbar)
@@ -3155,7 +3136,7 @@ void HtmlGenerator::writeSearchPage()
31553136 {
31563137 t << " </div><!-- top -->\n " ;
31573138 }
3158- t << writeSplitBarAsString (" search.php" ,QCString (),false );
3139+ t << writeSplitBarAsString (" search.php" ,QCString (),QCString () );
31593140 if (quickLinksAfterSplitbar)
31603141 {
31613142 writeDefaultQuickLinks (t,HighlightedItem::Search,QCString (),QCString (),false );
@@ -3208,10 +3189,8 @@ void HtmlGenerator::writeExternalSearchPage()
32083189 t << " <!-- " << theTranslator->trGeneratedBy () << " Doxygen "
32093190 << getDoxygenVersion () << " -->\n " ;
32103191 t << " <script type=\" text/javascript\" >\n " ;
3211- t << " /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */\n " ;
3212- t << " var searchBox = new SearchBox(\" searchBox\" , \" "
3192+ t << " var searchBox = new SearchBox(\" searchBox\" , \" "
32133193 << " search/\" ,'" << Doxygen::htmlFileExtension << " ');\n " ;
3214- t << " /* @license-end */\n " ;
32153194 t << " </script>\n " ;
32163195
32173196 if (!disableIndex && !quickLinksAfterSplitbar)
@@ -3222,7 +3201,7 @@ void HtmlGenerator::writeExternalSearchPage()
32223201 {
32233202 t << " </div><!-- top -->\n " ;
32243203 }
3225- t << writeSplitBarAsString (" search.php" ,QCString (),false );
3204+ t << writeSplitBarAsString (" search.php" ,QCString (),QCString () );
32263205 if (quickLinksAfterSplitbar)
32273206 {
32283207 writeDefaultQuickLinks (t,HighlightedItem::Search,QCString (),QCString (),false );
@@ -3558,8 +3537,10 @@ void HtmlGenerator::writePageOutline()
35583537{
35593538 m_t << " <div id=\" page-nav\" class=\" page-nav-panel\" >\n " ;
35603539 m_t << " <div id=\" page-nav-resize-handle\" ></div>\n " ;
3540+ m_t << " <div id=\" page-nav-tree\" >\n " ;
35613541 m_t << " <div id=\" page-nav-contents\" >\n " ;
35623542 m_t << " </div><!-- page-nav-contents -->\n " ;
3543+ m_t << " </div><!-- page-nav-tree -->\n " ;
35633544 m_t << " </div><!-- page-nav -->\n " ;
35643545}
35653546
0 commit comments