当前位置: 首页>>代码示例>>Python>>正文


Python Renderer.__init__方法代码示例

本文整理汇总了Python中appy.pod.renderer.Renderer.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Renderer.__init__方法的具体用法?Python Renderer.__init__怎么用?Python Renderer.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在appy.pod.renderer.Renderer的用法示例。


在下文中一共展示了Renderer.__init__方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from appy.pod.renderer import Renderer [as 别名]
# 或者: from appy.pod.renderer.Renderer import __init__ [as 别名]
 def __init__(self, ar, template, context, result, **kw):
     self.ar = ar
     #~ context.update(appy_renderer=self)
     context.update(restify=self.restify_func)
     context.update(html=self.html_func)
     context.update(jinja=self.jinja_func)
     context.update(table=self.insert_table)
     context.update(as_odt=self.as_odt)
     #~ context.update(story=self.insert_story)
     #~ context.update(html2odf=html2odf)
     context.update(ehtml=html2odf)
     context.update(toxml=toxml)
     #~ from lino.extjs import ui
     #~ self.extjs_ui = ui
     #~ self.extjs_ui = settings.SITE.ui
     #~ context.update(ui=self.extjs_ui)
     context.update(ui=settings.SITE.ui)
     context.update(settings=settings)
     context.update(sc=settings.SITE.site_config)
     context.update(settings.SITE.modules)
     kw.update(finalizeFunction=self.finalize_func)
     AppyRenderer.__init__(self,template,context,result, **kw)
     #~ self.my_automaticstyles = odf.style.automaticstyles()
     #~ self.my_styles = odf.style.styles()
     self.my_automaticstyles = []
     self.my_styles = []
开发者ID:MaxTyutyunnikov,项目名称:lino,代码行数:28,代码来源:appy_pod.py

示例2: __init__

# 需要导入模块: from appy.pod.renderer import Renderer [as 别名]
# 或者: from appy.pod.renderer.Renderer import __init__ [as 别名]
 def __init__(self, ar, template, context, result, **kw):
     self.ar = copy(ar)
     # self.ar.renderer = settings.SITE.kernel.html_renderer
     # self.ar.renderer = settings.SITE.plugins.bootstrap3.renderer
     self.ar.renderer = settings.SITE.plugins.jinja.renderer
     #~ context.update(appy_renderer=self)
     context.update(restify=self.restify_func)
     context.update(html=self.insert_html)
     context.update(jinja=self.insert_jinja)
     context.update(table=self.insert_table)
     context.update(story=self.insert_story)
     context.update(as_odt=self.as_odt)
     #~ context.update(html2odf=html2odf)
     context.update(ehtml=html2odf)
     context.update(toxml=toxml)
     #~ from lino.extjs import ui
     #~ self.extjs_ui = ui
     context.update(ui=settings.SITE.kernel)
     context.update(settings=settings)
     context.update(sc=settings.SITE.site_config)
     if False:
         context.update(settings.SITE.models)
         # 20150810 removed above line because this "feature"
         # caused the name `jinja` defined above to be overridden.
     kw.update(finalizeFunction=self.finalize_func)
     OriginalAppyRenderer.__init__(self, template, context, result, **kw)
     #~ self.my_automaticstyles = odf.style.automaticstyles()
     #~ self.my_styles = odf.style.styles()
     self.my_automaticstyles = []
     self.my_styles = []
开发者ID:lino-framework,项目名称:xl,代码行数:32,代码来源:appy_renderer.py


注:本文中的appy.pod.renderer.Renderer.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。