100 lines
4.6 KiB
Python
100 lines
4.6 KiB
Python
# -*- coding:utf-8 -*-
|
|
from mako import runtime, filters, cache
|
|
UNDEFINED = runtime.UNDEFINED
|
|
__M_dict_builtin = dict
|
|
__M_locals_builtin = locals
|
|
_magic_number = 10
|
|
_modified_time = 1434078007.3917303
|
|
_enable_loop = True
|
|
_template_filename = '/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/comments_helper_disqus.tmpl'
|
|
_template_uri = 'comments_helper_disqus.tmpl'
|
|
_source_encoding = 'utf-8'
|
|
_exports = ['comment_form', 'comment_link_script', 'comment_link']
|
|
|
|
|
|
import json
|
|
|
|
def render_body(context,**pageargs):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
__M_locals = __M_dict_builtin(pageargs=pageargs)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
__M_writer('\n\n')
|
|
__M_writer('\n\n')
|
|
__M_writer('\n\n\n')
|
|
__M_writer('\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_form(context,url,title,identifier):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
lang = context.get('lang', UNDEFINED)
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <div id="disqus_thread"></div>\n <script>\n var disqus_shortname ="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('",\n')
|
|
if url:
|
|
__M_writer(' disqus_url="')
|
|
__M_writer(str(url))
|
|
__M_writer('",\n')
|
|
__M_writer(' disqus_title=')
|
|
__M_writer(str(json.dumps(title)))
|
|
__M_writer(',\n disqus_identifier="')
|
|
__M_writer(str(identifier))
|
|
__M_writer('",\n disqus_config = function () {\n')
|
|
if lang == 'es':
|
|
__M_writer(' this.language = "es_ES";\n')
|
|
else:
|
|
__M_writer(' this.language = "')
|
|
__M_writer(str(lang))
|
|
__M_writer('";\n')
|
|
__M_writer(' };\n (function() {\n var dsq = document.createElement(\'script\'); dsq.async = true;\n dsq.src = \'//\' + disqus_shortname + \'.disqus.com/embed.js\';\n (document.getElementsByTagName(\'head\')[0] || document.getElementsByTagName(\'body\')[0]).appendChild(dsq);\n })();\n </script>\n <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>\n <a href="//disqus.com" class="dsq-brlink" rel="nofollow">Comments powered by <span class="logo-disqus">Disqus</span></a>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_link_script(context):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <script>var disqus_shortname="')
|
|
__M_writer(str(comment_system_id))
|
|
__M_writer('";(function(){var a=document.createElement("script");a.async=true;a.src="//"+disqus_shortname+".disqus.com/count.js";(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(a)}());</script>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
def render_comment_link(context,link,identifier):
|
|
__M_caller = context.caller_stack._push_frame()
|
|
try:
|
|
comment_system_id = context.get('comment_system_id', UNDEFINED)
|
|
__M_writer = context.writer()
|
|
__M_writer('\n')
|
|
if comment_system_id:
|
|
__M_writer(' <a href="')
|
|
__M_writer(str(link))
|
|
__M_writer('#disqus_thread" data-disqus-identifier="')
|
|
__M_writer(str(identifier))
|
|
__M_writer('">Comments</a>\n')
|
|
return ''
|
|
finally:
|
|
context.caller_stack._pop_frame()
|
|
|
|
|
|
"""
|
|
__M_BEGIN_METADATA
|
|
{"source_encoding": "utf-8", "line_map": {"15": 3, "17": 0, "22": 2, "23": 3, "24": 31, "25": 37, "26": 44, "32": 5, "38": 5, "39": 6, "40": 7, "41": 9, "42": 9, "43": 10, "44": 11, "45": 11, "46": 11, "47": 13, "48": 13, "49": 13, "50": 14, "51": 14, "52": 16, "53": 17, "54": 18, "55": 19, "56": 19, "57": 19, "58": 21, "64": 40, "69": 40, "70": 41, "71": 42, "72": 42, "73": 42, "79": 33, "84": 33, "85": 34, "86": 35, "87": 35, "88": 35, "89": 35, "90": 35, "96": 90}, "filename": "/usr/lib/python3.4/site-packages/nikola/data/themes/base/templates/comments_helper_disqus.tmpl", "uri": "comments_helper_disqus.tmpl"}
|
|
__M_END_METADATA
|
|
"""
|