[Zope3-checkins] CVS: Zope3/src/zope/app/browser/services - auth.zcml:1.2 cache.zcml:1.6 configure.zcml:1.63 connection.zcml:1.8 pagefolder.zcml:1.3 view.zcml:1.5

Philipp von Weitershausen philikon at philikon.de
Sun Aug 3 14:50:36 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/services
In directory cvs.zope.org:/tmp/cvs-serv11298/browser/services

Modified Files:
	auth.zcml cache.zcml configure.zcml connection.zcml 
	pagefolder.zcml view.zcml 
Log Message:
Made menu, factory and form titles and labels MessageIDs instead of plain
TextLines/Texts. That means that they'll be translated as soon as the
translation data is in place.

The change affected most ZCML files and tests that make up ZCML code as
they had to specify an i18n_domain. This is 'zope' for all of Zope3.

The change also breaks many Zope3 products as they probably do not specify
an i18n_domain. A fix for them will follow immediately.


=== Zope3/src/zope/app/browser/services/auth.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/browser/services/auth.zcml:1.1	Thu Jun 26 10:51:03 2003
+++ Zope3/src/zope/app/browser/services/auth.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- Authentication Service  -->
 
@@ -50,4 +53,4 @@
     <menuItem title="Edit" action="editForm.html"/>
   </menuItems>
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/services/cache.zcml 1.5 => 1.6 ===
--- Zope3/src/zope/app/browser/services/cache.zcml:1.5	Sat Jun 21 17:21:59 2003
+++ Zope3/src/zope/app/browser/services/cache.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- Browser directives for the cache service -->
 
@@ -58,4 +61,4 @@
       fields="name componentPath permission status"
       />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/services/configure.zcml 1.62 => 1.63 ===
--- Zope3/src/zope/app/browser/services/configure.zcml:1.62	Mon Jul 28 18:20:45 2003
+++ Zope3/src/zope/app/browser/services/configure.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- For services, just treat @@manage as @@index.html by default -->
 
@@ -512,4 +515,4 @@
 <!-- Local Interface Service -->
 <include package=".interface" />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/services/connection.zcml 1.7 => 1.8 ===
--- Zope3/src/zope/app/browser/services/connection.zcml:1.7	Sat Jun 21 17:21:59 2003
+++ Zope3/src/zope/app/browser/services/connection.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- Browser directives for the connection service -->
 
@@ -71,4 +74,4 @@
       fields="name componentPath permission status"
       />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/services/pagefolder.zcml 1.2 => 1.3 ===
--- Zope3/src/zope/app/browser/services/pagefolder.zcml:1.2	Mon Jul 28 18:20:45 2003
+++ Zope3/src/zope/app/browser/services/pagefolder.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- PageFolder -->
 
@@ -44,4 +47,4 @@
      action="zope.app.services.PageFolder"
      title="Page Folder" />
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/services/view.zcml 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/services/view.zcml:1.4	Sat Jun 21 17:21:59 2003
+++ Zope3/src/zope/app/browser/services/view.zcml	Sun Aug  3 13:49:27 2003
@@ -1,4 +1,7 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/browser'>
+<configure
+    xmlns='http://namespaces.zope.org/browser'
+    i18n_domain='zope'
+    >
 
 <!-- View service -->
 
@@ -86,4 +89,4 @@
 
 -->
 
-</zopeConfigure>
+</configure>




More information about the Zope3-Checkins mailing list