Automatic commit via /home/don/bin/deployweb Wed Jun 10 06:00:10 UTC 2015

This commit is contained in:
Don Harper 2015-06-10 06:00:10 +00:00
parent 43c8c29909
commit 5bb65e4a4a
48 changed files with 576 additions and 576 deletions

View file

@ -4,12 +4,12 @@ UNDEFINED = runtime.UNDEFINED
__M_dict_builtin = dict
__M_locals_builtin = locals
_magic_number = 10
_modified_time = 1433912407.378008
_modified_time = 1433916007.2678807
_enable_loop = True
_template_filename = 'themes/bootstrap/templates/post.tmpl'
_template_uri = 'post.tmpl'
_source_encoding = 'utf-8'
_exports = ['sourcelink', 'extra_head', 'content']
_exports = ['extra_head', 'content', 'sourcelink']
def _mako_get_namespace(context, name):
@ -19,12 +19,12 @@ def _mako_get_namespace(context, name):
_mako_generate_namespaces(context)
return context.namespaces[(__name__, name)]
def _mako_generate_namespaces(context):
ns = runtime.TemplateNamespace('helper', context._clean_inheritance_tokens(), templateuri='post_helper.tmpl', callables=None, calling_uri=_template_uri)
context.namespaces[(__name__, 'helper')] = ns
ns = runtime.TemplateNamespace('pheader', context._clean_inheritance_tokens(), templateuri='post_header.tmpl', callables=None, calling_uri=_template_uri)
context.namespaces[(__name__, 'pheader')] = ns
ns = runtime.TemplateNamespace('helper', context._clean_inheritance_tokens(), templateuri='post_helper.tmpl', callables=None, calling_uri=_template_uri)
context.namespaces[(__name__, 'helper')] = ns
ns = runtime.TemplateNamespace('comments', context._clean_inheritance_tokens(), templateuri='comments_helper.tmpl', callables=None, calling_uri=_template_uri)
context.namespaces[(__name__, 'comments')] = ns
@ -35,20 +35,20 @@ def render_body(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
__M_locals = __M_dict_builtin(pageargs=pageargs)
helper = _mako_get_namespace(context, 'helper')
site_has_comments = context.get('site_has_comments', UNDEFINED)
pheader = _mako_get_namespace(context, 'pheader')
post = context.get('post', UNDEFINED)
show_sourcelink = context.get('show_sourcelink', UNDEFINED)
messages = context.get('messages', UNDEFINED)
parent = context.get('parent', UNDEFINED)
def extra_head():
return render_extra_head(context._locals(__M_locals))
helper = _mako_get_namespace(context, 'helper')
comments = _mako_get_namespace(context, 'comments')
def sourcelink():
return render_sourcelink(context._locals(__M_locals))
comments = _mako_get_namespace(context, 'comments')
site_has_comments = context.get('site_has_comments', UNDEFINED)
show_sourcelink = context.get('show_sourcelink', UNDEFINED)
parent = context.get('parent', UNDEFINED)
def content():
return render_content(context._locals(__M_locals))
def extra_head():
return render_extra_head(context._locals(__M_locals))
post = context.get('post', UNDEFINED)
__M_writer = context.writer()
__M_writer('\n')
__M_writer('\n')
@ -74,35 +74,14 @@ def render_body(context,**pageargs):
context.caller_stack._pop_frame()
def render_sourcelink(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
post = context.get('post', UNDEFINED)
messages = context.get('messages', UNDEFINED)
show_sourcelink = context.get('show_sourcelink', UNDEFINED)
def sourcelink():
return render_sourcelink(context)
__M_writer = context.writer()
__M_writer('\n')
if show_sourcelink:
__M_writer(' <li>\n <a href="')
__M_writer(str(post.source_link()))
__M_writer('" id="sourcelink">')
__M_writer(str(messages("Source")))
__M_writer('</a>\n </li>\n')
return ''
finally:
context.caller_stack._pop_frame()
def render_extra_head(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
helper = _mako_get_namespace(context, 'helper')
parent = context.get('parent', UNDEFINED)
post = context.get('post', UNDEFINED)
def extra_head():
return render_extra_head(context)
parent = context.get('parent', UNDEFINED)
helper = _mako_get_namespace(context, 'helper')
post = context.get('post', UNDEFINED)
__M_writer = context.writer()
__M_writer('\n ')
__M_writer(str(parent.extra_head()))
@ -145,14 +124,14 @@ def render_extra_head(context,**pageargs):
def render_content(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
pheader = _mako_get_namespace(context, 'pheader')
helper = _mako_get_namespace(context, 'helper')
post = context.get('post', UNDEFINED)
messages = context.get('messages', UNDEFINED)
comments = _mako_get_namespace(context, 'comments')
site_has_comments = context.get('site_has_comments', UNDEFINED)
pheader = _mako_get_namespace(context, 'pheader')
def content():
return render_content(context)
messages = context.get('messages', UNDEFINED)
helper = _mako_get_namespace(context, 'helper')
post = context.get('post', UNDEFINED)
comments = _mako_get_namespace(context, 'comments')
__M_writer = context.writer()
__M_writer('\n<article class="post-')
__M_writer(str(post.meta('type')))
@ -181,8 +160,29 @@ def render_content(context,**pageargs):
context.caller_stack._pop_frame()
def render_sourcelink(context,**pageargs):
__M_caller = context.caller_stack._push_frame()
try:
def sourcelink():
return render_sourcelink(context)
post = context.get('post', UNDEFINED)
show_sourcelink = context.get('show_sourcelink', UNDEFINED)
messages = context.get('messages', UNDEFINED)
__M_writer = context.writer()
__M_writer('\n')
if show_sourcelink:
__M_writer(' <li>\n <a href="')
__M_writer(str(post.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
{"uri": "post.tmpl", "line_map": {"128": 20, "129": 20, "130": 20, "131": 20, "132": 20, "133": 22, "134": 22, "135": 22, "136": 23, "137": 23, "138": 24, "139": 24, "145": 27, "22": 2, "25": 3, "28": 4, "157": 27, "158": 28, "159": 28, "160": 29, "161": 29, "34": 0, "163": 31, "162": 31, "165": 35, "166": 36, "167": 36, "168": 39, "169": 40, "170": 41, "171": 41, "172": 42, "173": 42, "174": 45, "175": 45, "176": 45, "177": 47, "178": 47, "53": 2, "54": 3, "55": 4, "56": 5, "61": 25, "66": 48, "164": 35, "71": 56, "77": 50, "184": 178, "86": 50, "87": 51, "88": 52, "89": 53, "90": 53, "91": 53, "92": 53, "98": 7, "107": 7, "108": 8, "109": 8, "110": 9, "111": 10, "112": 10, "113": 10, "114": 12, "115": 13, "116": 13, "117": 13, "118": 15, "119": 15, "120": 15, "121": 16, "122": 17, "123": 17, "124": 17, "125": 17, "126": 17, "127": 19}, "source_encoding": "utf-8", "filename": "themes/bootstrap/templates/post.tmpl"}
{"filename": "themes/bootstrap/templates/post.tmpl", "line_map": {"150": 41, "136": 27, "137": 28, "138": 28, "139": 29, "140": 29, "141": 31, "142": 31, "143": 35, "144": 35, "145": 36, "146": 36, "147": 39, "148": 40, "149": 41, "22": 3, "151": 42, "152": 42, "25": 2, "154": 45, "155": 45, "28": 4, "157": 47, "34": 0, "163": 50, "156": 47, "172": 50, "173": 51, "174": 52, "175": 53, "176": 53, "177": 53, "178": 53, "53": 2, "54": 3, "55": 4, "56": 5, "61": 25, "66": 48, "71": 56, "77": 7, "184": 178, "86": 7, "87": 8, "88": 8, "89": 9, "90": 10, "91": 10, "92": 10, "93": 12, "94": 13, "95": 13, "96": 13, "97": 15, "98": 15, "99": 15, "100": 16, "101": 17, "102": 17, "103": 17, "104": 17, "105": 17, "106": 19, "107": 20, "108": 20, "109": 20, "110": 20, "111": 20, "112": 22, "113": 22, "114": 22, "115": 23, "116": 23, "117": 24, "118": 24, "153": 45, "124": 27}, "source_encoding": "utf-8", "uri": "post.tmpl"}
__M_END_METADATA
"""