cybertools/browser/liquid/configure.zcml
helmutm 10c6434de9 View controller now basically functional, with macro registries for CSS and JS resources
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1146 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-03-26 16:43:43 +00:00

36 lines
990 B
XML

<!-- $Id$ -->
<configure
xmlns:zope="http://namespaces.zope.org/zope"
xmlns="http://namespaces.zope.org/browser"
i18n_domain="zope"
>
<layer name="liquid"
interface="cybertools.browser.liquid.liquid" />
<skin name="Liquid"
layers="liquid rotterdam default" />
<page for="*"
name="skin_macros" template="view_macros.pt"
permission="zope.View"
layer="liquid" />
<page for="*"
name="base_macros" template="view_macros.pt"
permission="zope.View"
layer="liquid" />
<page name="controller"
for="zope.app.publisher.interfaces.browser.IBrowserView"
class="cybertools.browser.liquid.controller.Controller"
permission="zope.Public"
layer="liquid"
/>
<resource name="base.css" file="base.css" layer="liquid" />
<resource name="print.css" file="print.css" layer="liquid" />
<resource name="custom.css" file="custom.css" layer="liquid" />
</configure>