Blame templates/html/htmljsmenudata.tpl

Packit 1c1d7e
/*
Packit 1c1d7e
 @licstart  The following is the entire license notice for the
Packit 1c1d7e
 JavaScript code in this file.
Packit 1c1d7e
Packit 1c1d7e
 Copyright (C) 1997-2017 by Dimitri van Heesch
Packit 1c1d7e
Packit 1c1d7e
 This program is free software; you can redistribute it and/or modify
Packit 1c1d7e
 it under the terms of the GNU General Public License as published by
Packit 1c1d7e
 the Free Software Foundation; either version 2 of the License, or
Packit 1c1d7e
 (at your option) any later version.
Packit 1c1d7e
Packit 1c1d7e
 This program is distributed in the hope that it will be useful,
Packit 1c1d7e
 but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1c1d7e
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 1c1d7e
 GNU General Public License for more details.
Packit 1c1d7e
Packit 1c1d7e
 You should have received a copy of the GNU General Public License along
Packit 1c1d7e
 with this program; if not, write to the Free Software Foundation, Inc.,
Packit 1c1d7e
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit 1c1d7e
Packit 1c1d7e
 @licend  The above is the entire license notice
Packit 1c1d7e
 for the JavaScript code in this file
Packit 1c1d7e
 */
Packit 1c1d7e
var menudata={children:[
Packit 1c1d7e
{text:'{{ tr.mainPage }}',url:'index{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% if pageTree.tree %}
Packit 1c1d7e
,{text:'{{ tr.pages }}',url:'pages{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if moduleTree.tree %}
Packit 1c1d7e
,{text:'{{ tr.modules }}',url:'modules{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if namespaceList %}
Packit 1c1d7e
,{text:'{{ tr.namespaces }}',url:'namespaces{{ config.HTML_FILE_EXTENSION }}',children:[
Packit 1c1d7e
 {text:'{{ tr.namespaceList }}',url:'namespaces{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% if namespaceMembersIndex.all %}
Packit 1c1d7e
,{text:'{{ tr.namespaceMembers }}',url:'namespacemembers{{ config.HTML_FILE_EXTENSION }}',children:[
Packit 1c1d7e
  {% with page=namespaceMembersIndex %}
Packit 1c1d7e
    {% include 'htmljsmenumembersdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
 ]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if classList %}
Packit 1c1d7e
,{text:'{{ tr.classes }}',url:'annotated{{ config.HTML_FILE_EXTENSION }}',children:[
Packit 1c1d7e
 {text:'{{ tr.classList }}',url:'annotated{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% if classHierarchy.tree %}
Packit 1c1d7e
,{text:'{{ tr.classHierarchy }}',url:'hierarchy{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if classMembersIndex.all %}
Packit 1c1d7e
,{text:'{{ tr.classMembers }}',url:'functions{{ config.HTML_FILE_EXTENSION }}',children:[
Packit 1c1d7e
  {% with page=classMembersIndex %}
Packit 1c1d7e
    {% include 'htmljsmenumembersdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if fileList %}
Packit 1c1d7e
,{text:'{{ tr.files }}',url:'files{{ config.HTML_FILE_EXTENSION }}',children[
Packit 1c1d7e
 {text:'{{ tr.fileList }}',url:'files{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% if globalsIndex.all %}
Packit 1c1d7e
,{text:'{{ tr.fileMembers }}',url'globals{{ config.HTML_FILE_EXTENSION }}',children:[
Packit 1c1d7e
  {% with page=globalsIndex %}
Packit 1c1d7e
    {% include 'htmljsmenumembersdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
]}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{% if exampleTree.tree %}
Packit 1c1d7e
,{text:'{{ tr.examples }}',url:'examples{{ config.HTML_FILE_EXTENSION }}'}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
]}