2

我是 Plone 用户,我一直在使用 Products.Five.browser.pagetemplatefile.ViewPageTemplateFile 中的 tal 宏,并创建了一个现有宏和模板库。

我从 grokcore.chameleon 1.0.3 开始使用 chameleon 页面模板,并希望在现有框架中继续使用它们。IE 我希望能够导入 tal 宏,然后使用 chameleon 填充宏槽。

到目前为止,我尝试了几种导入现有宏的方法,但都没有奏效。即使安装了 Chameleon 2.14,也没有启用“加载”关键字[1]。

我一直在寻找兼容层,但到目前为止我发现的只是z3c.pt,其目的是加速.pt页面渲染而不是提供兼容层。 [2]

是否有任何软件包可以激活 tal 宏,然后从 Chameleon 页面模板中插入信息?作为一种解决方法,我可以渲染 tal 模板,渲染 chameleon 模板,然后进行字符串替换,但必须有人以更优雅的方式解决这个问题。

[1]如何在金字塔 / ZPT (Chameleon) 中使用宏

[2] https://pypi.python.org/pypi/z3c.pt

更新 作为一种解决方法,我创建了一个生成中间页面的函数,该函数接受由变色龙页面模板生成的 html。

常见的.py

from zope.publisher.browser import BrowserView
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile

def insert_into_master(html, view):

    class View(BrowserView):
        def __call__(self):
            self.data = html
            return ViewPageTemplateFile('pt/master_holder.pt')(self)

    rendered = View(view.context, view.request)
    return rendered()

pt/master_holder.pt

<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
metal:use-macro="here/main_template/macros/master"
i18n:domain="Plone"
xml:lang="en"
lang="en">

<div
    metal:fill-slot="main"
    tal:content="structure:view/data"
/>

</html>

任何使用变色龙的客户端视图

from five import grok
from zope.interface import Interface
from grokcore.chameleon.components import ChameleonPageTemplate

from common import insert_into_master

class MyView(grok.View):
    grok.context(Interface)
    grok.require('zope2.View')
    grok.name('myview')

    def render(self):
        view = ChameleonPageTemplate('<div>Hello, world!</div>')
        return insert_into_master(view.render(self), self)
4

1 回答 1

6

Chameleon 的内部表示宏的形式与 Zope 的标准页面模板实现不同,两者不兼容。因此,您只能使用其他 Chameleon 模板中的 Chameleon 宏。

您可以尝试安装 Five.pt,它会为 Zope 提供猴子补丁以将 Chameleon 用于所有页面模板。

于 2014-04-08T22:01:54.567 回答