[Zope-Checkins] SVN: Zope/branches/2.10/ Update externals to newly released Zope 3.3.1, and remove a monkey patch that

Philipp von Weitershausen philikon at philikon.de
Sun Jan 14 09:57:11 EST 2007


Log message for revision 72027:
  Update externals to newly released Zope 3.3.1, and remove a monkey patch that
  was fixed in Zope 3.3 proper.
  

Changed:
  U   Zope/branches/2.10/doc/CHANGES.txt
  _U  Zope/branches/2.10/lib/python/
  U   Zope/branches/2.10/lib/python/Products/PageTemplates/__init__.py
  _U  Zope/branches/2.10/lib/python/zope/
  _U  Zope/branches/2.10/lib/python/zope/app/

-=-
Modified: Zope/branches/2.10/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.10/doc/CHANGES.txt	2007-01-14 14:20:44 UTC (rev 72026)
+++ Zope/branches/2.10/doc/CHANGES.txt	2007-01-14 14:57:11 UTC (rev 72027)
@@ -4,6 +4,12 @@
   Change information for previous versions of Zope can be found in the
   file HISTORY.txt.
 
+  Zope 2.10.2 (unreleased)
+
+    Bugs fixed
+
+      - Updated Zope 3 to bugfix release 3.3.1.
+
   Zope 2.10.2 beta 1 (2007/01/14)
 
     Bugs fixed


Property changes on: Zope/branches/2.10/lib/python
___________________________________________________________________
Name: svn:externals
   - BTrees         svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/BTrees
ThreadedAsync  svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ThreadedAsync
ZConfig        svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3.1
ZEO            svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZEO
ZODB           svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZODB
ZopeUndo       svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZopeUndo
docutils       svn://svn.zope.org/repos/main/docutils/tags/0.4.0-zope
mechanize      svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/mechanize
persistent     svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/persistent
pytz           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/pytz
transaction    svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/transaction
zdaemon        -r 40792 svn://svn.zope.org/repos/main/zdaemon/trunk/src/zdaemon
zodbcode       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zodbcode

   + BTrees         svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/BTrees
ThreadedAsync  svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ThreadedAsync
ZConfig        svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3.1
ZEO            svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZEO
ZODB           svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZODB
ZopeUndo       svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/ZopeUndo
docutils       svn://svn.zope.org/repos/main/docutils/tags/0.4.0-zope
mechanize      svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/mechanize
persistent     svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/persistent
pytz           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/pytz
transaction    svn://svn.zope.org/repos/main/ZODB/tags/3.7-Zope-3.3.0rc1/src/transaction
zdaemon        -r 40792 svn://svn.zope.org/repos/main/zdaemon/trunk/src/zdaemon
zodbcode       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zodbcode


Modified: Zope/branches/2.10/lib/python/Products/PageTemplates/__init__.py
===================================================================
--- Zope/branches/2.10/lib/python/Products/PageTemplates/__init__.py	2007-01-14 14:20:44 UTC (rev 72026)
+++ Zope/branches/2.10/lib/python/Products/PageTemplates/__init__.py	2007-01-14 14:57:11 UTC (rev 72027)
@@ -31,25 +31,3 @@
     # Import lazily, and defer initialization to the module
     import ZopePageTemplate
     ZopePageTemplate.initialize(context)
-
-
-# HACK!!!
-# We need to monkeypatch the parseString method of the Zope 3 
-# XMLParser since the internal ZPT representation uses unicode
-# however the XMLParser (using Expat) can only deal with standard
-# Python strings. However we won't and can't convert directly
-# to UTF-8 within the ZPT wrapper code. 
-# Unicode support for (this issue) should be directly added
-# to zope.tal.xmlparser however this requires a new Zope 3.3.X
-# release. For now we fix it here.
-
-from zope.tal.xmlparser import XMLParser
-import logging
-
-def parseString(self, s):
-    if isinstance(s, unicode):
-        s = s.encode('utf-8')
-    self.parser.Parse(s, 1)
-
-XMLParser.parseString = parseString
-logging.info('Monkeypatching zope.tal.xmlparser.XMLParser.parseString()')


Property changes on: Zope/branches/2.10/lib/python/zope
___________________________________________________________________
Name: svn:externals
   - annotation           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/annotation
cachedescriptors     svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/cachedescriptors
component            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/component
configuration        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/configuration
contentprovider      svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/contentprovider
contenttype          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/contenttype
copypastemove        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/copypastemove
datetime             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/datetime
decorator            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/decorator
deferredimport       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/deferredimport
deprecation          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/deprecation
documenttemplate     svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/documenttemplate
dottedname           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/dottedname
dublincore           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/dublincore
event                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/event
exceptions           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/exceptions
filerepresentation   svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/filerepresentation
formlib              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/formlib
hookable             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/hookable
i18n                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/i18n
i18nmessageid        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/i18nmessageid
index                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/index
interface            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/interface
lifecycleevent       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/lifecycleevent
location             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/location
modulealias          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/modulealias
pagetemplate         svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/pagetemplate
proxy                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/proxy
publisher            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/publisher
rdb                  svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/rdb
schema               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/schema
security             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/security
sendmail             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/sendmail
server               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/server
size                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/size
structuredtext       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/structuredtext
tal                  svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/tal
tales                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/tales
testbrowser          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/testbrowser
testing              svn://svn.zope.org/repos/main/zope.testing/tags/3.0/src/zope/testing
thread               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/thread
traversing           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/traversing
viewlet              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/viewlet
wfmc                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/wfmc


   + annotation           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/annotation
cachedescriptors     svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/cachedescriptors
component            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/component
configuration        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/configuration
contentprovider      svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/contentprovider
contenttype          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/contenttype
copypastemove        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/copypastemove
datetime             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/datetime
decorator            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/decorator
deferredimport       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/deferredimport
deprecation          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/deprecation
documenttemplate     svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/documenttemplate
dottedname           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/dottedname
dublincore           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/dublincore
event                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/event
exceptions           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/exceptions
filerepresentation   svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/filerepresentation
formlib              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/formlib
hookable             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/hookable
i18n                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/i18n
i18nmessageid        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/i18nmessageid
index                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/index
interface            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/interface
lifecycleevent       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/lifecycleevent
location             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/location
modulealias          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/modulealias
pagetemplate         svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/pagetemplate
proxy                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/proxy
publisher            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/publisher
rdb                  svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/rdb
schema               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/schema
security             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/security
sendmail             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/sendmail
server               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/server
size                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/size
structuredtext       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/structuredtext
tal                  svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/tal
tales                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/tales
testbrowser          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/testbrowser
testing              svn://svn.zope.org/repos/main/zope.testing/tags/3.0/src/zope/testing
thread               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/thread
traversing           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/traversing
viewlet              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/viewlet
wfmc                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/wfmc




Property changes on: Zope/branches/2.10/lib/python/zope/app
___________________________________________________________________
Name: svn:externals
   - annotation          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/annotation
apidoc              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/apidoc
applicationcontrol  svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/applicationcontrol
appsetup            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/appsetup
authentication      svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/authentication
basicskin           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/basicskin
broken              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/broken
cache               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/cache
component           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/component
container           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/container
content             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/content
content_types       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/content_types
copypastemove       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/copypastemove
datetimeutils       svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/datetimeutils
debug               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/debug
decorator           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/decorator
dependable          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/dependable
dtmlpage            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/dtmlpage
dublincore          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/dublincore
error               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/error
event               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/event
exception           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/exception
file                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/file
filerepresentation  svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/filerepresentation
folder              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/folder
form                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/form
ftests              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/ftests
generations         svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/generations
http                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/http
i18n                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/i18n
interface           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/interface
intid               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/intid
introspector        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/introspector
keyreference        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/keyreference
layers              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/layers
locales             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/locales
location            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/location
mail                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/mail
onlinehelp          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/onlinehelp
pagetemplate        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/pagetemplate
preference          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/preference
preview             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/preview
principalannotation svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/principalannotation
publication         svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/publication
publisher           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/publisher
rdb                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/rdb
renderer            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/renderer
rotterdam           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/rotterdam
schema              svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/schema
security            svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/security
servicenames        svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/servicenames
session             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/session
site                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/site
size                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/size
skins               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/skins
sqlscript           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/sqlscript
testing             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/testing
tests               svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/tests
timezones           svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/timezones
traversing          svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/traversing
tree                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/tree
undo                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/undo
wfmc                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/wfmc
wsgi                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/wsgi
zapi                svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/zapi
zopeappgenerations  svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/zopeappgenerations
zptpage             svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/app/zptpage

   + annotation          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/annotation
apidoc              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/apidoc
applicationcontrol  svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/applicationcontrol
appsetup            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/appsetup
authentication      svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/authentication
basicskin           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/basicskin
broken              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/broken
cache               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/cache
component           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/component
container           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/container
content             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/content
content_types       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/content_types
copypastemove       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/copypastemove
datetimeutils       svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/datetimeutils
debug               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/debug
decorator           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/decorator
dependable          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/dependable
dtmlpage            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/dtmlpage
dublincore          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/dublincore
error               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/error
event               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/event
exception           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/exception
file                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/file
filerepresentation  svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/filerepresentation
folder              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/folder
form                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/form
ftests              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/ftests
generations         svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/generations
http                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/http
i18n                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/i18n
interface           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/interface
intid               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/intid
introspector        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/introspector
keyreference        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/keyreference
layers              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/layers
locales             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/locales
location            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/location
mail                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/mail
onlinehelp          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/onlinehelp
pagetemplate        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/pagetemplate
preference          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/preference
preview             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/preview
principalannotation svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/principalannotation
publication         svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/publication
publisher           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/publisher
rdb                 svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/rdb
renderer            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/renderer
rotterdam           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/rotterdam
schema              svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/schema
security            svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/security
servicenames        svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/servicenames
session             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/session
site                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/site
size                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/size
skins               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/skins
sqlscript           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/sqlscript
testing             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/testing
tests               svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/tests
timezones           svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/timezones
traversing          svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/traversing
tree                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/tree
undo                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/undo
wfmc                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/wfmc
wsgi                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/wsgi
zapi                svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/zapi
zopeappgenerations  svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/zopeappgenerations
zptpage             svn://svn.zope.org/repos/main/Zope3/tags/3.3.1/src/zope/app/zptpage




More information about the Zope-Checkins mailing list