[Zope3-checkins] CVS: Zope3/src/zope/app/browser/form/complexsample - configure.zcml:1.2.16.1

Jim Fulton cvs-admin at zope.org
Sun Nov 9 11:08:45 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/form/complexsample
In directory cvs.zope.org:/tmp/cvs-serv15349/src/zope/app/browser/form/complexsample

Modified Files:
      Tag: adaptergeddon-branch
	configure.zcml 
Log Message:
Created a global presentation service that replaces the 
global view, resource, and skin services.

Now look up presentation components by adapting from a request type,
rather than adapting to a presentation type.





=== Zope3/src/zope/app/browser/form/complexsample/configure.zcml 1.2 => 1.2.16.1 ===
--- Zope3/src/zope/app/browser/form/complexsample/configure.zcml:1.2	Sun Aug  3 13:49:05 2003
+++ Zope3/src/zope/app/browser/form/complexsample/configure.zcml	Sun Nov  9 11:08:05 2003
@@ -7,84 +7,84 @@
 <!-- Sample vocabulary support -->
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-display-widget"
     factory=".complexsample.SampleDisplay"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-display-list-widget"
     factory=".complexsample.SampleListDisplay"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-display-unique-list-widget"
     factory=".complexsample.SampleListDisplay"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-edit-widget"
     factory=".complexsample.SampleEdit"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-edit-list-widget"
     factory=".complexsample.SampleListEdit"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabulary"
     name="field-edit-unique-list-widget"
     factory=".complexsample.SampleUniqueListEdit"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabularyQuery"
     name="widget-query-helper"
     factory=".complexsample.SampleQueryView"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabularyQuery"
     name="widget-query-list-helper"
     factory=".complexsample.SampleListQueryView"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.ISampleVocabularyQuery"
     name="widget-query-unique-list-helper"
     factory=".complexsample.SampleUniqueListQueryView"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.IFancySampleVocabularyQuery"
     name="widget-query-helper"
     factory=".complexsample.FancySampleQueryView"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.IFancySampleVocabularyQuery"
     name="widget-query-list-helper"
     factory=".complexsample.FancySampleListQueryView"
     />
 
 <view
-    type="zope.publisher.interfaces.browser.IBrowserPresentation"
+    type="zope.publisher.interfaces.browser.IBrowserRequest"
     for=".interfaces.IFancySampleVocabularyQuery"
     name="widget-query-unique-list-helper"
     factory=".complexsample.FancySampleUniqueListQueryView"




More information about the Zope3-Checkins mailing list