[Zope-Checkins] SVN: Zope/trunk/ Moved ``Products/Five/publisher.zcml`` into the ZPublisher package.
Hanno Schlichting
hannosch at hannosch.eu
Thu Jul 30 15:29:29 EDT 2009
Log message for revision 102391:
Moved ``Products/Five/publisher.zcml`` into the ZPublisher package.
Changed:
U Zope/trunk/doc/CHANGES.rst
U Zope/trunk/src/Products/Five/configure.zcml
U Zope/trunk/src/Products/Five/publisher.zcml
A Zope/trunk/src/ZPublisher/configure.zcml
A Zope/trunk/src/ZPublisher/publisher.zcml
-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst 2009-07-30 19:19:53 UTC (rev 102390)
+++ Zope/trunk/doc/CHANGES.rst 2009-07-30 19:29:29 UTC (rev 102391)
@@ -11,6 +11,8 @@
Restructuring
+++++++++++++
+- Moved ``Products/Five/publisher.zcml`` into the ZPublisher package.
+
- Moved ``Products/Five/event.zcml`` into the OFS package.
- Removed no longer maintained ``configure, make, make install`` related
Modified: Zope/trunk/src/Products/Five/configure.zcml
===================================================================
--- Zope/trunk/src/Products/Five/configure.zcml 2009-07-30 19:19:53 UTC (rev 102390)
+++ Zope/trunk/src/Products/Five/configure.zcml 2009-07-30 19:29:29 UTC (rev 102391)
@@ -5,10 +5,10 @@
<include file="permissions.zcml" />
<include file="i18n.zcml" />
<include file="deprecated.zcml"/>
- <include file="publisher.zcml"/>
<include file="traversing.zcml"/>
<include package="OFS "/>
+ <include package="ZPublisher" />
<include package=".component" />
<include package=".browser" />
Modified: Zope/trunk/src/Products/Five/publisher.zcml
===================================================================
--- Zope/trunk/src/Products/Five/publisher.zcml 2009-07-30 19:19:53 UTC (rev 102390)
+++ Zope/trunk/src/Products/Five/publisher.zcml 2009-07-30 19:29:29 UTC (rev 102391)
@@ -1,23 +1,5 @@
<configure xmlns="http://namespaces.zope.org/zope">
- <interface interface="zope.publisher.interfaces.browser.IBrowserSkinType" />
+ <include package="ZPublisher" file="publisher.zcml"/>
- <interface
- interface="zope.publisher.interfaces.browser.IDefaultBrowserLayer"
- type="zope.publisher.interfaces.browser.IBrowserSkinType"
- />
-
- <class class="ZPublisher.HTTPRequest.HTTPRequest">
- <implements
- interface="zope.annotation.interfaces.IAttributeAnnotatable"
- />
- </class>
-
- <adapter
- name="default"
- factory="zope.publisher.browser.getDefaultSkin"
- for="zope.publisher.interfaces.browser.IBrowserRequest"
- provides="zope.publisher.interfaces.IDefaultSkin"
- />
-
</configure>
Added: Zope/trunk/src/ZPublisher/configure.zcml
===================================================================
--- Zope/trunk/src/ZPublisher/configure.zcml (rev 0)
+++ Zope/trunk/src/ZPublisher/configure.zcml 2009-07-30 19:29:29 UTC (rev 102391)
@@ -0,0 +1,5 @@
+<configure xmlns="http://namespaces.zope.org/zope">
+
+ <include file="publisher.zcml"/>
+
+</configure>
Property changes on: Zope/trunk/src/ZPublisher/configure.zcml
___________________________________________________________________
Added: svn:eol-style
+ native
Copied: Zope/trunk/src/ZPublisher/publisher.zcml (from rev 102379, Zope/trunk/src/Products/Five/publisher.zcml)
===================================================================
--- Zope/trunk/src/ZPublisher/publisher.zcml (rev 0)
+++ Zope/trunk/src/ZPublisher/publisher.zcml 2009-07-30 19:29:29 UTC (rev 102391)
@@ -0,0 +1,23 @@
+<configure xmlns="http://namespaces.zope.org/zope">
+
+ <interface interface="zope.publisher.interfaces.browser.IBrowserSkinType" />
+
+ <interface
+ interface="zope.publisher.interfaces.browser.IDefaultBrowserLayer"
+ type="zope.publisher.interfaces.browser.IBrowserSkinType"
+ />
+
+ <class class="ZPublisher.HTTPRequest.HTTPRequest">
+ <implements
+ interface="zope.annotation.interfaces.IAttributeAnnotatable"
+ />
+ </class>
+
+ <adapter
+ name="default"
+ factory="zope.publisher.browser.getDefaultSkin"
+ for="zope.publisher.interfaces.browser.IBrowserRequest"
+ provides="zope.publisher.interfaces.IDefaultSkin"
+ />
+
+</configure>
More information about the Zope-Checkins
mailing list