123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- # -*- coding:utf-8 -*-
- from mako import runtime, filters, cache
- UNDEFINED = runtime.UNDEFINED
- STOP_RENDERING = runtime.STOP_RENDERING
- __M_dict_builtin = dict
- __M_locals_builtin = locals
- _magic_number = 10
- _modified_time = 1676236796.419754
- _enable_loop = True
- _template_filename = 'themes/bootstrap3/templates/listing.tmpl'
- _template_uri = 'listing.tmpl'
- _source_encoding = 'utf-8'
- _exports = ['content', 'sourcelink']
-
-
- def _mako_get_namespace(context, name):
- try:
- return context.namespaces[(__name__, name)]
- except KeyError:
- _mako_generate_namespaces(context)
- return context.namespaces[(__name__, name)]
- def _mako_generate_namespaces(context):
- ns = runtime.TemplateNamespace('ui', context._clean_inheritance_tokens(), templateuri='crumbs.tmpl', callables=None, calling_uri=_template_uri)
- context.namespaces[(__name__, 'ui')] = ns
-
- def _mako_inherit(template, context):
- _mako_generate_namespaces(context)
- return runtime._inherit_from(context, 'base.tmpl', _template_uri)
- def render_body(context,**pageargs):
- __M_caller = context.caller_stack._push_frame()
- try:
- __M_locals = __M_dict_builtin(pageargs=pageargs)
- _import_ns = {}
- _mako_get_namespace(context, 'ui')._populate(_import_ns, ['bar'])
- title = _import_ns.get('title', context.get('title', UNDEFINED))
- code = _import_ns.get('code', context.get('code', UNDEFINED))
- crumbs = _import_ns.get('crumbs', context.get('crumbs', UNDEFINED))
- files = _import_ns.get('files', context.get('files', UNDEFINED))
- messages = _import_ns.get('messages', context.get('messages', UNDEFINED))
- def content():
- return render_content(context._locals(__M_locals))
- ui = _mako_get_namespace(context, 'ui')
- def sourcelink():
- return render_sourcelink(context._locals(__M_locals))
- source_link = _import_ns.get('source_link', context.get('source_link', UNDEFINED))
- folders = _import_ns.get('folders', context.get('folders', UNDEFINED))
- __M_writer = context.writer()
- __M_writer('\n')
- __M_writer('\n')
- if 'parent' not in context._data or not hasattr(context._data['parent'], 'content'):
- context['self'].content(**pageargs)
-
-
- __M_writer('\n\n')
- if 'parent' not in context._data or not hasattr(context._data['parent'], 'sourcelink'):
- context['self'].sourcelink(**pageargs)
-
-
- __M_writer('\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_content(context,**pageargs):
- __M_caller = context.caller_stack._push_frame()
- try:
- _import_ns = {}
- _mako_get_namespace(context, 'ui')._populate(_import_ns, ['bar'])
- title = _import_ns.get('title', context.get('title', UNDEFINED))
- code = _import_ns.get('code', context.get('code', UNDEFINED))
- crumbs = _import_ns.get('crumbs', context.get('crumbs', UNDEFINED))
- files = _import_ns.get('files', context.get('files', UNDEFINED))
- messages = _import_ns.get('messages', context.get('messages', UNDEFINED))
- def content():
- return render_content(context)
- ui = _mako_get_namespace(context, 'ui')
- source_link = _import_ns.get('source_link', context.get('source_link', UNDEFINED))
- folders = _import_ns.get('folders', context.get('folders', UNDEFINED))
- __M_writer = context.writer()
- __M_writer('\n')
- __M_writer(str(ui.bar(crumbs)))
- __M_writer('\n')
- if folders or files:
- __M_writer('<ul>\n')
- for name in folders:
- __M_writer(' <li><a href="')
- __M_writer(filters.url_escape(str(name)))
- __M_writer('"><i class="glyphicon glyphicon-folder-open"></i> ')
- __M_writer(filters.html_escape(str(name)))
- __M_writer('</a>\n')
- for name in files:
- __M_writer(' <li><a href="')
- __M_writer(filters.url_escape(str(name)))
- __M_writer('.html"><i class="glyphicon glyphicon-file"></i> ')
- __M_writer(filters.html_escape(str(name)))
- __M_writer('</a>\n')
- __M_writer('</ul>\n')
- if code:
- __M_writer('<h1>')
- __M_writer(str(title))
- __M_writer('\n')
- if source_link:
- __M_writer(' <small><a href="')
- __M_writer(str(source_link))
- __M_writer('">(')
- __M_writer(str(messages("Source")))
- __M_writer(')</a></small>\n')
- __M_writer(' </h1>\n ')
- __M_writer(str(code))
- __M_writer('\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- def render_sourcelink(context,**pageargs):
- __M_caller = context.caller_stack._push_frame()
- try:
- _import_ns = {}
- _mako_get_namespace(context, 'ui')._populate(_import_ns, ['bar'])
- messages = _import_ns.get('messages', context.get('messages', UNDEFINED))
- def sourcelink():
- return render_sourcelink(context)
- source_link = _import_ns.get('source_link', context.get('source_link', UNDEFINED))
- __M_writer = context.writer()
- __M_writer('\n')
- if source_link:
- __M_writer(' <li>\n <a href="')
- __M_writer(str(source_link))
- __M_writer('" id="sourcelink">')
- __M_writer(str(messages("Source")))
- __M_writer('</a>\n </li>\n')
- return ''
- finally:
- context.caller_stack._pop_frame()
-
-
- """
- __M_BEGIN_METADATA
- {"filename": "themes/bootstrap3/templates/listing.tmpl", "uri": "listing.tmpl", "source_encoding": "utf-8", "line_map": {"23": 3, "29": 0, "48": 2, "49": 3, "54": 24, "59": 32, "65": 4, "81": 4, "82": 5, "83": 5, "84": 6, "85": 7, "86": 8, "87": 9, "88": 9, "89": 9, "90": 9, "91": 9, "92": 11, "93": 12, "94": 12, "95": 12, "96": 12, "97": 12, "98": 14, "99": 16, "100": 17, "101": 17, "102": 17, "103": 18, "104": 19, "105": 19, "106": 19, "107": 19, "108": 19, "109": 21, "110": 22, "111": 22, "117": 26, "127": 26, "128": 27, "129": 28, "130": 29, "131": 29, "132": 29, "133": 29, "139": 133}}
- __M_END_METADATA
- """
|