[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/apidoc/ Converted XXX to TODO.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Jul 9 11:45:33 EDT 2004


Log message for revision 26314:

Converted XXX to TODO.




-=-
Modified: Zope3/trunk/src/zope/app/apidoc/classmodule/__init__.py
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/classmodule/__init__.py	2004-07-09 15:45:31 UTC (rev 26313)
+++ Zope3/trunk/src/zope/app/apidoc/classmodule/__init__.py	2004-07-09 15:45:33 UTC (rev 26314)
@@ -40,7 +40,7 @@
 
 # Ignore these files, since they are not necessary or cannot be imported
 # correctly.
-# XXX: I want to be able to specify paths with wildcards later, so that we do
+# TODO: I want to be able to specify paths with wildcards later, so that we do
 # not ignore all files/dirs with a certain name.
 IGNORE_FILES = ('tests', 'tests.py', 'ftests', 'ftests.py', 'CVS', 'gadfly',
                 'setup.py', 'introspection.py', 'Mount.py')

Modified: Zope3/trunk/src/zope/app/apidoc/viewmodule/__init__.py
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/viewmodule/__init__.py	2004-07-09 15:45:31 UTC (rev 26313)
+++ Zope3/trunk/src/zope/app/apidoc/viewmodule/__init__.py	2004-07-09 15:45:33 UTC (rev 26314)
@@ -25,7 +25,7 @@
 from zope.proxy import removeAllProxies
 from zope.app.i18n import ZopeMessageIDFactory as _
 
-# XXX: Temporary hack, since registering an adapter for a particular class is
+# TODO: Temporary hack, since registering an adapter for a particular class is
 # broken.
 class ISkinRegistration(Interface): pass
 classImplements(SkinRegistration, ISkinRegistration)

Modified: Zope3/trunk/src/zope/app/apidoc/viewmodule/browser.py
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/viewmodule/browser.py	2004-07-09 15:45:31 UTC (rev 26313)
+++ Zope3/trunk/src/zope/app/apidoc/viewmodule/browser.py	2004-07-09 15:45:33 UTC (rev 26314)
@@ -216,7 +216,7 @@
         self.regs = [reg
                      for reg in service.registrations()
                      if (isinstance(reg, PresentationRegistration) and
-                         # XXX: Handle multiple required ifaces at some point.
+                         # TODO: Handle multiple required ifaces at some point.
                          self.iface.isOrExtends(reg.required[0]) and 
                          self.type is reg.required[-1])]
 
@@ -257,7 +257,7 @@
             if self.show_all or \
                    not (None in reg.required or Interface in reg.required):
                 entry = {'name' : reg.name or '<i>no name</i>',
-                         # XXX: Deal with tuple
+                         # TODO: Deal with tuple
                          'required' : getPythonPath(reg.required[0]),
                          'type' : getPythonPath(reg.required[-1]),
                          'factory' : _getFactoryData(reg.factory),



More information about the Zope3-Checkins mailing list