[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Folder/Views - __init__.py:1.1.2.2 views.zcml:1.1.2.2

Stephan Richter srichter@cbu.edu
Mon, 4 Mar 2002 00:55:13 -0500


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

Modified Files:
      Tag: srichter-OFS_Formulator-branch
	__init__.py views.zcml 
Log Message:
Here are some of the changes:

- XML-RPC View for Folders; methods are far from being complete, however
  it is the proof of concept; it works.

- Experimental XUL code in folder that shows a tree, a menu and the limit 
  view.

- File can now be viewed like an Image. Since it also sets the right 
  content type, it is even more useful for some of the development.

- ZPTPages are the last content object to be "formulatorized". Now they 
  also entered the new generation code.

ToDo:

- Make tests.

- Update interfaces.

- Get a client side XML-RPC client talk from the browser with Zope to save
  values. 

- Get a tutorial going, so that the ZMI sprinters and developers can make
  use of the technology



=== Zope3/lib/python/Zope/App/OFS/Folder/Views/__init__.py 1.1.2.1 => 1.1.2.2 ===
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors. 
+# All Rights Reserved.
+# 
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+# 
+##############################################################################
+"""
+
+$Id$
+"""


=== Zope3/lib/python/Zope/App/OFS/Folder/Views/views.zcml 1.1.2.1 => 1.1.2.2 ===
-   xmlns='http://namespaces.zope.org/zope'
->
-
-  <include package="Zope.App.OFS.Folder.Views.Browser" 
-           file="browser.zcml" />
-
-  <include package="Zope.App.OFS.Folder.Views.XUL" 
-           file="xul.zcml" />
-
-</zopeConfigure>
\ No newline at end of file
+<zopeConfigure
+   xmlns='http://namespaces.zope.org/zope'
+>
+
+  <include package="Zope.App.OFS.Folder.Views.Browser" 
+           file="browser.zcml" />
+
+  <include package="Zope.App.OFS.Folder.Views.XMLRPC" 
+           file="xmlrpc.zcml" />
+
+  <include package="Zope.App.OFS.Folder.Views.XUL" 
+           file="xul.zcml" />
+
+</zopeConfigure>