| 1 |
<configure |
|---|
| 2 |
xmlns="http://namespaces.zope.org/zope" |
|---|
| 3 |
xmlns:browser="http://namespaces.zope.org/browser" |
|---|
| 4 |
xmlns:five="http://namespaces.zope.org/five"> |
|---|
| 5 |
|
|---|
| 6 |
<!-- zope3 --> |
|---|
| 7 |
|
|---|
| 8 |
<include file="browser.zcml" /> |
|---|
| 9 |
|
|---|
| 10 |
<include file="permissions.zcml" /> |
|---|
| 11 |
|
|---|
| 12 |
<include package="zope.app.keyreference" /> |
|---|
| 13 |
|
|---|
| 14 |
<include package="zope.location" /> |
|---|
| 15 |
|
|---|
| 16 |
<include package="zope.copypastemove" /> |
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
<!-- cpsskins v3 zcml configuration --> |
|---|
| 20 |
|
|---|
| 21 |
<include package="cpsskins" /> |
|---|
| 22 |
|
|---|
| 23 |
<adapter |
|---|
| 24 |
provides="zope.app.container.interfaces.INameChooser" |
|---|
| 25 |
for="cpsskins.thememanager.IThemeManagementFolder" |
|---|
| 26 |
factory="zope.app.container.contained.NameChooser" |
|---|
| 27 |
/> |
|---|
| 28 |
|
|---|
| 29 |
<adapter |
|---|
| 30 |
provides="zope.app.container.interfaces.INameChooser" |
|---|
| 31 |
for="cpsskins.setup.presets.IPresets" |
|---|
| 32 |
factory="zope.app.container.contained.NameChooser" |
|---|
| 33 |
/> |
|---|
| 34 |
|
|---|
| 35 |
<adapter |
|---|
| 36 |
provides="zope.app.container.interfaces.INameChooser" |
|---|
| 37 |
for="cpsskins.storage.interfaces.IStorage" |
|---|
| 38 |
factory="zope.app.container.contained.NameChooser" |
|---|
| 39 |
/> |
|---|
| 40 |
|
|---|
| 41 |
<adapter |
|---|
| 42 |
provides="zope.app.container.interfaces.INameChooser" |
|---|
| 43 |
for="cpsskins.elements.interfaces.IElement" |
|---|
| 44 |
factory="zope.app.container.contained.NameChooser" |
|---|
| 45 |
/> |
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
<!-- CPSSkins4Five --> |
|---|
| 49 |
|
|---|
| 50 |
<five:localsite class="Products.CPSSkins4Five.site.CPSSkinsSite" /> |
|---|
| 51 |
|
|---|
| 52 |
<include file="views.zcml" /> |
|---|
| 53 |
|
|---|
| 54 |
<!-- zope2 --> |
|---|
| 55 |
|
|---|
| 56 |
<five:traversable class="OFS.Folder.Folder" /> |
|---|
| 57 |
|
|---|
| 58 |
<subscriber |
|---|
| 59 |
for="zope.app.publication.interfaces.BeforeTraverseEvent" |
|---|
| 60 |
handler=".patches.addAnnotationsToRequest" |
|---|
| 61 |
/> |
|---|
| 62 |
|
|---|
| 63 |
</configure> |
|---|