[Checkins] SVN: z3c.blobfile/trunk/ Set i18n domain in "overrides.zcml" to avoid warnings

Dan Korostelev nadako at gmail.com
Tue Sep 9 03:29:16 EDT 2008


Log message for revision 90981:
  Set i18n domain in "overrides.zcml" to avoid warnings

Changed:
  U   z3c.blobfile/trunk/CHANGES.txt
  U   z3c.blobfile/trunk/src/z3c/blobfile/overrides.zcml

-=-
Modified: z3c.blobfile/trunk/CHANGES.txt
===================================================================
--- z3c.blobfile/trunk/CHANGES.txt	2008-09-09 04:49:14 UTC (rev 90980)
+++ z3c.blobfile/trunk/CHANGES.txt	2008-09-09 07:29:15 UTC (rev 90981)
@@ -4,7 +4,7 @@
 
 Version 0.1.2 (unreleased)
 
--
+- Bug: Set i18n domain in "overrides.zcml" to avoid warnings. 
 
 Version 0.1.1 (2008-09-08)
 --------------------------

Modified: z3c.blobfile/trunk/src/z3c/blobfile/overrides.zcml
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/overrides.zcml	2008-09-09 04:49:14 UTC (rev 90980)
+++ z3c.blobfile/trunk/src/z3c/blobfile/overrides.zcml	2008-09-09 07:29:15 UTC (rev 90981)
@@ -1,10 +1,11 @@
-<configure xmlns="http://namespaces.zope.org/zope"
-           xmlns:browser="http://namespaces.zope.org/browser">
+<configure
+  xmlns="http://namespaces.zope.org/zope"
+  xmlns:browser="http://namespaces.zope.org/browser"
+  i18n:domain="zope"
+  >
 
-  <!-- Provide local overrides of standard configurations -->
+  <!-- Provide overrides of zope.app.file configurations -->
 
-    <!-- content classes -->
-
   <class class=".file.File">
 
     <factory
@@ -25,9 +26,6 @@
 
   </class>
 
-  <!-- include browser package -->
+  <include package=".browser" />
 
-  <include package="z3c.blobfile.browser" />
-
-
 </configure>



More information about the Checkins mailing list