[Checkins] SVN: Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorview rename into singular

Jan-Wijbrand Kolman janwijbrand at gmail.com
Tue Jan 18 10:28:36 EST 2011


Log message for revision 119653:
  rename into singular

Changed:
  A   Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorview.zcml
  D   Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorviews.zcml

-=-
Copied: Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorview.zcml (from rev 119651, Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorviews.zcml)
===================================================================
--- Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorview.zcml	                        (rev 0)
+++ Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorview.zcml	2011-01-18 15:28:36 UTC (rev 119653)
@@ -0,0 +1,47 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:browser="http://namespaces.zope.org/browser">
+
+<view
+    for="zope.security.interfaces.IUnauthorized"
+    type="zope.publisher.interfaces.http.IHTTPRequest"
+    name="index.html"
+    permission="zope.Public"
+    factory=".unauthorized.Unauthorized"
+    />
+
+<browser:defaultView
+    for="zope.security.interfaces.IUnauthorized"
+    layer="zope.publisher.interfaces.http.IHTTPRequest"
+    name="index.html"
+    />
+
+<view
+    for="zope.publisher.interfaces.ITraversalException"
+    type="zope.publisher.interfaces.http.IHTTPRequest"
+    name="index.html"
+    permission="zope.Public"
+    factory=".notfound.NotFound"
+    />
+
+<browser:defaultView
+    for="zope.publisher.interfaces.ITraversalException"
+    layer="zope.publisher.interfaces.http.IHTTPRequest"
+    name="index.html"
+    />
+
+<view
+    for="zope.publisher.interfaces.http.IMethodNotAllowed"
+    factory="zope.errorview.methodnotallowed.MethodNotAllowedView"
+    name="index.html"
+    type="zope.publisher.interfaces.http.IHTTPRequest"
+    permission="zope.Public"
+    />
+
+<browser:defaultView
+    for="zope.publisher.interfaces.http.IMethodNotAllowed"
+    layer="zope.publisher.interfaces.http.IHTTPRequest"
+    name="index.html"
+    />
+
+</configure>

Deleted: Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorviews.zcml
===================================================================
--- Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorviews.zcml	2011-01-18 15:26:44 UTC (rev 119652)
+++ Sandbox/janwijbrand/zope.errorview/trunk/src/zope/errorview/errorviews.zcml	2011-01-18 15:28:36 UTC (rev 119653)
@@ -1,47 +0,0 @@
-<configure
-    xmlns="http://namespaces.zope.org/zope"
-    xmlns:browser="http://namespaces.zope.org/browser">
-
-<view
-    for="zope.security.interfaces.IUnauthorized"
-    type="zope.publisher.interfaces.http.IHTTPRequest"
-    name="index.html"
-    permission="zope.Public"
-    factory=".unauthorized.Unauthorized"
-    />
-
-<browser:defaultView
-    for="zope.security.interfaces.IUnauthorized"
-    layer="zope.publisher.interfaces.http.IHTTPRequest"
-    name="index.html"
-    />
-
-<view
-    for="zope.publisher.interfaces.ITraversalException"
-    type="zope.publisher.interfaces.http.IHTTPRequest"
-    name="index.html"
-    permission="zope.Public"
-    factory=".notfound.NotFound"
-    />
-
-<browser:defaultView
-    for="zope.publisher.interfaces.ITraversalException"
-    layer="zope.publisher.interfaces.http.IHTTPRequest"
-    name="index.html"
-    />
-
-<view
-    for="zope.publisher.interfaces.http.IMethodNotAllowed"
-    factory="zope.errorview.methodnotallowed.MethodNotAllowedView"
-    name="index.html"
-    type="zope.publisher.interfaces.http.IHTTPRequest"
-    permission="zope.Public"
-    />
-
-<browser:defaultView
-    for="zope.publisher.interfaces.http.IMethodNotAllowed"
-    layer="zope.publisher.interfaces.http.IHTTPRequest"
-    name="index.html"
-    />
-
-</configure>



More information about the checkins mailing list