1c0abf9e6Sopenharmony_ci/* 2c0abf9e6Sopenharmony_ci @licstart The following is the entire license notice for the JavaScript code in this file. 3c0abf9e6Sopenharmony_ci 4c0abf9e6Sopenharmony_ci The MIT License (MIT) 5c0abf9e6Sopenharmony_ci 6c0abf9e6Sopenharmony_ci Copyright (C) 1997-2020 by Dimitri van Heesch 7c0abf9e6Sopenharmony_ci 8c0abf9e6Sopenharmony_ci Permission is hereby granted, free of charge, to any person obtaining a copy of this software 9c0abf9e6Sopenharmony_ci and associated documentation files (the "Software"), to deal in the Software without restriction, 10c0abf9e6Sopenharmony_ci including without limitation the rights to use, copy, modify, merge, publish, distribute, 11c0abf9e6Sopenharmony_ci sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is 12c0abf9e6Sopenharmony_ci furnished to do so, subject to the following conditions: 13c0abf9e6Sopenharmony_ci 14c0abf9e6Sopenharmony_ci The above copyright notice and this permission notice shall be included in all copies or 15c0abf9e6Sopenharmony_ci substantial portions of the Software. 16c0abf9e6Sopenharmony_ci 17c0abf9e6Sopenharmony_ci THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING 18c0abf9e6Sopenharmony_ci BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19c0abf9e6Sopenharmony_ci NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 20c0abf9e6Sopenharmony_ci DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21c0abf9e6Sopenharmony_ci OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22c0abf9e6Sopenharmony_ci 23c0abf9e6Sopenharmony_ci @licend The above is the entire license notice for the JavaScript code in this file 24c0abf9e6Sopenharmony_ci */ 25c0abf9e6Sopenharmony_cifunction initMenu(relPath,searchEnabled,serverSide,searchPage,search) { 26c0abf9e6Sopenharmony_ci function makeTree(data,relPath) { 27c0abf9e6Sopenharmony_ci var result=''; 28c0abf9e6Sopenharmony_ci if ('children' in data) { 29c0abf9e6Sopenharmony_ci result+='<ul>'; 30c0abf9e6Sopenharmony_ci for (var i in data.children) { 31c0abf9e6Sopenharmony_ci result+='<li><a href="'+relPath+data.children[i].url+'">'+ 32c0abf9e6Sopenharmony_ci data.children[i].text+'</a>'+ 33c0abf9e6Sopenharmony_ci makeTree(data.children[i],relPath)+'</li>'; 34c0abf9e6Sopenharmony_ci } 35c0abf9e6Sopenharmony_ci result+='</ul>'; 36c0abf9e6Sopenharmony_ci } 37c0abf9e6Sopenharmony_ci return result; 38c0abf9e6Sopenharmony_ci } 39c0abf9e6Sopenharmony_ci 40c0abf9e6Sopenharmony_ci $('#main-nav').append(makeTree(menudata,relPath)); 41c0abf9e6Sopenharmony_ci $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); 42c0abf9e6Sopenharmony_ci if (searchEnabled) { 43c0abf9e6Sopenharmony_ci if (serverSide) { 44c0abf9e6Sopenharmony_ci $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.svg" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>'); 45c0abf9e6Sopenharmony_ci } else { 46c0abf9e6Sopenharmony_ci $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.svg" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.svg" alt=""/></a></span></div></li>'); 47c0abf9e6Sopenharmony_ci } 48c0abf9e6Sopenharmony_ci } 49c0abf9e6Sopenharmony_ci $('#main-menu').smartmenus(); 50c0abf9e6Sopenharmony_ci} 51c0abf9e6Sopenharmony_ci/* @license-end */ 52