[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - publisher-meta.zcml:1.1.4.1 publisher.zcml:1.1.2.1 mapply.py:1.1.2.9
Stephan Richter
srichter@cbu.edu
Wed, 27 Mar 2002 09:50:02 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv16355
Modified Files:
Tag: Zope-3x-branch
mapply.py
Added Files:
Tag: Zope-3x-branch
publisher-meta.zcml publisher.zcml
Log Message:
- Added XML-RPC support
- tweaked refactoring a little tp better support other HTTP sub-protocols
- Worked on security
=== Added File Zope3/lib/python/Zope/Publisher/publisher-meta.zcml ===
<zopeConfigure
xmlns='http://namespaces.zope.org/zope'
xmlns:security='http://namespaces.zope.org/security'
xmlns:zmi='http://namespaces.zope.org/zmi'
xmlns:browser='http://namespaces.zope.org/browser'
>
<include package="Zope.Publisher.Browser" file="browser-meta.zcml" />
<include package="Zope.Publisher.XMLRPC" file="xmlrpc-meta.zcml" />
<!--include package="Zope.Publisher.SOAP" file="soap-meta.zcml" /-->
</zopeConfigure>
=== Added File Zope3/lib/python/Zope/Publisher/publisher.zcml ===
<zopeConfigure
xmlns='http://namespaces.zope.org/zope'
>
<include package=".Browser" file="browser.zcml" />
<include package=".HTTP" file="http.zcml" />
</zopeConfigure>
=== Zope3/lib/python/Zope/Publisher/mapply.py 1.1.2.8 => 1.1.2.9 ===
wrapperCount = 0
unwrapped = object
-
+
for i in range(10):
if hasattr(unwrapped,'__bases__'):
# Calling class constructors might be dangerous.