cybertools/xedit/configure.zcml
helmutm 65249df13f provide dummy locking handlers for external editor
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1620 fd906abe-77d9-0310-91a1-e0d9ade77398
2007-03-07 14:51:55 +00:00

36 lines
1 KiB
XML

<!-- $Id$ -->
<configure
xmlns="http://namespaces.zope.org/browser"
xmlns:zope="http://namespaces.zope.org/zope"
i18n_domain="zope">
<zope:view for="*" name="LOCK"
type="zope.publisher.interfaces.http.IHTTPRequest"
factory="cybertools.xedit.handler.NullLOCK"
permission="zope.Public" allowed_attributes="LOCK" />
<zope:view for="*" name="UNLOCK"
type="zope.publisher.interfaces.http.IHTTPRequest"
factory="cybertools.xedit.handler.NullLOCK"
permission="zope.Public" allowed_attributes="UNLOCK" />
<resource name="edit.gif" file="edit.gif" />
<pages for="loops.interfaces.IResource"
class=".browser.ExternalEditorView"
permission="zope.ManageContent">
<page name="external_edit" attribute="load" />
<!--
<page name="save" attribute="save" />
<page name="lock" attribute="lock" />
<page name="unlock" attribute="unlock" />-->
</pages>
<page for="*"
name="xedit_macros"
template="xedit.pt"
permission="zope.View" />
</configure>