source: main/waeup.ngrentheme/trunk/waeup/ngrentheme/browser/configure.zcml @ 10049

Last change on this file since 10049 was 10049, checked in by Henrik Bettermann, 12 years ago

Fill trunc.

File size: 1.9 KB
Line 
1<configure
2    xmlns="http://namespaces.zope.org/zope"
3    xmlns:browser="http://namespaces.zope.org/browser"
4    i18n_domain="waeup.ngrentheme">
5
6  <!-- 'WAeUP ngREN Theme' Zope 3 browser layer
7    Register views, viewlets and resources for this layer to make sure
8    they only apply to the 'WAeUP ngREN Theme' theme.
9    You can also use this layer to override default Plone browser views
10    and viewlets only within the 'WAeUP ngREN Theme' theme.
11  -->
12  <interface
13      interface=".interfaces.IThemeSpecific"
14      type="zope.publisher.interfaces.browser.IBrowserSkinType"
15      name="WAeUP ngREN Theme"
16      />
17 
18  <!-- Viewlets registration -->
19  <!-- EXAMPLE (UNCOMMENT TO MAKE AVAILABLE):
20  <browser:viewlet
21      name="waeup.someviewlet"
22      manager="plone.app.layout.viewlets.interfaces.IPortalFooter"
23      class=".viewlets.MyViewlet"
24      layer=".interfaces.IThemeSpecific"
25      permission="zope2.View"
26      />
27  -->
28 
29  <!-- The portal header -->
30
31       
32  <!-- Footer -->
33  <browser:viewlet
34      name="plone.footer"
35      for="*"
36      manager="plone.app.layout.viewlets.interfaces.IPortalFooter"
37      layer=".interfaces.IThemeSpecific"
38      class=".viewlets.WAeUPFooterViewlet"
39      permission="zope.Public"
40      />   
41
42  <!-- Zope 3 browser resources -->
43
44  <!-- Resource directory for images
45    See waeup/ngrentheme/browser/images/README.txt
46    for more information about registering images as Zope 3 browser
47    resources.
48  -->
49  <browser:resourceDirectory
50      name="waeup.ngrentheme.images"
51      directory="images"
52      layer=".interfaces.IThemeSpecific"
53      />
54
55  <!-- Resource directory for stylesheets
56    See waeup/ngrentheme/browser/stylesheets/README.txt
57    for more information about registering stylesheets as Zope 3 browser
58    resources.
59  -->
60  <browser:resourceDirectory
61      name="waeup.ngrentheme.stylesheets"
62      directory="stylesheets"
63      layer=".interfaces.IThemeSpecific"
64      />
65
66</configure>
Note: See TracBrowser for help on using the repository browser.