[Zope3-checkins] SVN: Zope3/trunk/doc/TODO.txt Added 2 todo items.

Jim Fulton jim at zope.com
Fri Dec 10 14:58:19 EST 2004


Log message for revision 28622:
  Added 2 todo items.
  

Changed:
  U   Zope3/trunk/doc/TODO.txt

-=-
Modified: Zope3/trunk/doc/TODO.txt
===================================================================
--- Zope3/trunk/doc/TODO.txt	2004-12-10 06:04:55 UTC (rev 28621)
+++ Zope3/trunk/doc/TODO.txt	2004-12-10 19:58:18 UTC (rev 28622)
@@ -31,8 +31,30 @@
 
 - Issue 309: <schemadisplay> should support <widget>
 
+- Allow adapters (including views) to be registered for classes
+  (really implementation specifications of classes) as well as
+  interfaces. This has been done for page directives but needs to be
+  done for other adapter directives.
 
+- Add a handler attribute to the subscriber directive.  Deprecate use
+  of `factory` attribute without a `provides` attribute.  So, you can
+  have::
 
+    <subscriber handler=".myfunc" for="ISomeEvent" />
+
+  or::
+
+    <subscriber factory=".myclass" for="IFoo" provides="IBar" />
+
+  But not::
+
+    <subscriber factory=".myfunc" for="ISomeEvent" />
+
+  or::
+
+    <subscriber handler=".myclass" for="IFoo" provides="IBar" />
+
+
 Miscellaneous
 -------------
 
@@ -91,4 +113,4 @@
  
 
 Bugs starting with * represent bugs that must be fixed for the 3.0.x branch as
-well.
\ No newline at end of file
+well.



More information about the Zope3-Checkins mailing list