loops/rest/configure.zcml
helmutm 7425dca76f starting to set up a REST module for all sorts of external communication
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1557 fd906abe-77d9-0310-91a1-e0d9ade77398
2007-01-19 15:22:09 +00:00

21 lines
630 B
XML

<!-- $Id$ -->
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="zope">
<adapter
factory="loops.rest.traversal.LoopsTraverser"
for="loops.interfaces.ILoops
zope.publisher.interfaces.browser.IBrowserRequest"
provides="zope.publisher.interfaces.browser.IBrowserPublisher"
permission="zope.Public" />
<adapter factory="loops.rest.common.ConceptView" />
<class class="loops.rest.common.ConceptView">
<require permission="zope.View"
interface="loops.rest.common.IRESTView" />
</class>
</configure>