source: products/quintagroup.quills.extras/branches/no_webresults/quintagroup/quills/extras/browser/overrides.zcml @ 1213

Last change on this file since 1213 was 1213, checked in by mylan, 15 years ago

Fix bug with quills_header_macros

File size: 2.1 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:browser="http://namespaces.zope.org/browser"
4    xmlns:plone="http://namespaces.plone.org/plone"
5    i18n_domain="quintagroup.quills.extras">
6
7    <browser:page
8        for="quills.core.interfaces.enabled.IWeblogEnhanced"
9        class=".commentViews.ManageCommentsView"
10        template="manage_comments.pt"
11        permission="cmf.ManagePortal"
12        name="manage_comments" />
13
14    <browser:page
15        for="quills.core.interfaces.IPossibleWeblogEntry"
16        class=".weblogview.CustomWeblogEntryView"
17        template="weblogentry_view.pt"
18        permission="zope2.View"
19        name="weblogentry_view"
20        allowed_interface="quills.core.browser.interfaces.IWeblogEntryView"
21        allowed_attributes="day month" />
22
23      <browser:page
24          for="quills.core.interfaces.ITopicContainer"
25          class="quills.app.browser.weblogview.TopicView"
26          allowed_interface="quills.core.interfaces.ITopicContainer"
27          template="topic_listing.pt"
28          permission="zope2.View"
29          name="topic_listing" />
30
31      <browser:page
32          for="quills.core.interfaces.ITopic"
33          template="topic_view.pt"
34          class="quills.app.browser.weblogview.TopicView"
35          allowed_interface="quills.core.browser.interfaces.ITopicView"
36          permission="zope2.View"
37          name="topic_view" />
38
39      <browser:page
40          for="*"
41          name="discussion_reply_redirect"
42          class=".discussionreply.DiscussionReply"
43          permission="zope.Public"
44          allowed_attributes="__call__"
45          />
46
47      <include package="Products.qPloneComments" file="overrides.zcml" />
48      <browser:viewlet
49          name="plone.comments"
50          for="Products.CMFCore.interfaces.IContentish"
51          manager="plone.app.layout.viewlets.interfaces.IBelowContent"
52          view="plone.app.layout.globals.interfaces.IViewView"
53          class=".comments.CommentsViewlet"
54          layer="Products.qPloneComments.interfaces.IPloneCommentsLayer"
55          permission="zope2.View"
56          />
57
58    <!-- metal macros -->
59    <view for="*"
60        name="quills_header_macros"
61        class=".macros.HeaderMacros"
62        permission="zope2.View"
63    />
64
65</configure>
Note: See TracBrowser for help on using the repository browser.