Blame templates/html/htmljsmenudata.tpl

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