[ZPT] CVS: Zope3/lib/python/Zope/TAL - TALDefs.py:1.24.10.4.2.2

Barry Warsaw barry@wooz.org
Tue, 4 Jun 2002 18:51:36 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/TAL
In directory cvs.zope.org:/tmp/cvs-serv27035

Modified Files:
      Tag: fdrake-tal-i18n-branch
	TALDefs.py 
Log Message:
KNOWN_I18N_ATTRIBUTES: Update list of i18n namespace attributes
according to

http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/ZPTInternationalizationSupport

specifically 'id' is gone, while 'name', 'domain', 'target', and
'source' are added.


=== Zope3/lib/python/Zope/TAL/TALDefs.py 1.24.10.4.2.1 => 1.24.10.4.2.2 ===
 
 KNOWN_I18N_ATTRIBUTES = [
+    "translate",
+    "domain",
+    "target",
+    "source",
     "attributes",
     "data",
-    "id",
-    "translate",
+    "name",
     ]
 
 class TALError(Exception):