[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS - ofs.zcml:1.1.2.11

Stephan Richter srichter@cbu.edu
Wed, 27 Mar 2002 10:55:05 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS
In directory cvs.zope.org:/tmp/cvs-serv12282

Modified Files:
      Tag: Zope-3x-branch
	ofs.zcml 
Log Message:
New Content Objects:

- NaiveFile --> all the data is stored in one string
- File --> Uses a BTree to store the data in chunks (more efficient)
- Image --> Can store and display an image a la Z2 (based on File)
- ZPTPage --> A simple version of ZPT for the content space to allow some 
  dynamics data (please do not use this for scripting)

Also:

- Expansion of supported views
- all edit screens are Formulator supported



=== Zope3/lib/python/Zope/App/OFS/ofs.zcml 1.1.2.10 => 1.1.2.11 ===
    xmlns:zmi='http://namespaces.zope.org/zmi'
    xmlns:browser='http://namespaces.zope.org/browser'
+   xmlns:xmlrpc='http://namespaces.zope.org/xmlrpc'
 >
 
 <include package=".Services" file="services.zcml" />
@@ -16,6 +17,10 @@
 <include package=".Introspector" file="introspector.zcml" />
 
 <browser:view name="_traverse" 
+ for=".Container.IContainer."
+ factory=".Container.ContainerTraverser." />
+
+<xmlrpc:view name="_traverse" 
  for=".Container.IContainer."
  factory=".Container.ContainerTraverser." />