當前位置: 首頁>>代碼示例>>Python>>正文


Python MarkupTemplateEnginePlugin.load_template方法代碼示例

本文整理匯總了Python中genshi.template.plugin.MarkupTemplateEnginePlugin.load_template方法的典型用法代碼示例。如果您正苦於以下問題:Python MarkupTemplateEnginePlugin.load_template方法的具體用法?Python MarkupTemplateEnginePlugin.load_template怎麽用?Python MarkupTemplateEnginePlugin.load_template使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在genshi.template.plugin.MarkupTemplateEnginePlugin的用法示例。


在下文中一共展示了MarkupTemplateEnginePlugin.load_template方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_load_template_from_string

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
 def test_load_template_from_string(self):
     plugin = MarkupTemplateEnginePlugin()
     tmpl = plugin.load_template(None, template_string="""<p>
       $message
     </p>""")
     self.assertEqual(None, tmpl.filename)
     assert isinstance(tmpl, MarkupTemplate)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:9,代碼來源:plugin.py

示例2: test_helper_functions

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
    def test_helper_functions(self):
        plugin = MarkupTemplateEnginePlugin()
        tmpl = plugin.load_template(PACKAGE + '.templates.functions')
        output = plugin.render({'snippet': u'<b>Foo</b>'}, template=tmpl)
        self.assertEqual("""<div>
False
bar
<b>Foo</b>
<b>Foo</b>
</div>""", output)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:12,代碼來源:plugin.py

示例3: test_render

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
    def test_render(self):
        plugin = MarkupTemplateEnginePlugin()
        tmpl = plugin.load_template(PACKAGE + '.templates.test')
        output = plugin.render({'message': 'Hello'}, template=tmpl)
        self.assertEqual("""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en">
  <head>
    <title>Test</title>
  </head>
  <body>
    <h1>Test</h1>
    <p>Hello</p>
  </body>
</html>""", output)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:16,代碼來源:plugin.py

示例4: test_render_fragment_with_doctype

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
    def test_render_fragment_with_doctype(self):
        plugin = MarkupTemplateEnginePlugin(options={
            'genshi.default_doctype': 'html-strict',
        })
        tmpl = plugin.load_template(PACKAGE + '.templates.test_no_doctype')
        output = plugin.render({'message': 'Hello'}, template=tmpl,
                               fragment=True)
        self.assertEqual("""<html lang="en">
  <head>
    <title>Test</title>
  </head>
  <body>
    <h1>Test</h1>
    <p>Hello</p>
  </body>
</html>""", output)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:18,代碼來源:plugin.py

示例5: test_render_with_doctype

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
    def test_render_with_doctype(self):
        plugin = MarkupTemplateEnginePlugin(options={
            'genshi.default_doctype': 'html-strict',
        })
        tmpl = plugin.load_template(PACKAGE + '.templates.test')
        output = plugin.render({'message': 'Hello'}, template=tmpl)
        self.assertEqual("""<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
  <head>
    <title>Test</title>
  </head>
  <body>
    <h1>Test</h1>
    <p>Hello</p>
  </body>
</html>""", output)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:18,代碼來源:plugin.py

示例6: test_transform_with_load

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
 def test_transform_with_load(self):
     plugin = MarkupTemplateEnginePlugin()
     tmpl = plugin.load_template(PACKAGE + '.templates.test')
     stream = plugin.transform({'message': 'Hello'}, tmpl)
     assert isinstance(stream, Stream)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:7,代碼來源:plugin.py

示例7: test_load_template_from_file

# 需要導入模塊: from genshi.template.plugin import MarkupTemplateEnginePlugin [as 別名]
# 或者: from genshi.template.plugin.MarkupTemplateEnginePlugin import load_template [as 別名]
 def test_load_template_from_file(self):
     plugin = MarkupTemplateEnginePlugin()
     tmpl = plugin.load_template(PACKAGE + '.templates.test')
     self.assertEqual('test.html', os.path.basename(tmpl.filename))
     assert isinstance(tmpl, MarkupTemplate)
開發者ID:nervatura,項目名稱:nerva2py,代碼行數:7,代碼來源:plugin.py


注:本文中的genshi.template.plugin.MarkupTemplateEnginePlugin.load_template方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。