[Zope3-checkins] SVN: Zope3/branches/stub-session/src/zope/app/session/ XXX -> TODO

Stuart Bishop zen at shangri-la.dropbear.id.au
Sun Jul 11 17:54:38 EDT 2004


Log message for revision 26417:
XXX -> TODO


-=-
Modified: Zope3/branches/stub-session/src/zope/app/session/http.py
===================================================================
--- Zope3/branches/stub-session/src/zope/app/session/http.py	2004-07-11 21:37:51 UTC (rev 26416)
+++ Zope3/branches/stub-session/src/zope/app/session/http.py	2004-07-11 21:54:37 UTC (rev 26417)
@@ -248,7 +248,7 @@
              >>> expires > time.mktime(time.gmtime()) + 55*60
              True
            """
-        # XXX Currently, the path is the ApplicationURL. This is reasonable,
+        # TODO: Currently, the path is the ApplicationURL. This is reasonable,
         #     and will be adequate for most purposes.
         #     A better path to use would be that of the folder that contains
         #     the service-manager this service is registered within. However,

Modified: Zope3/branches/stub-session/src/zope/app/session/interfaces.py
===================================================================
--- Zope3/branches/stub-session/src/zope/app/session/interfaces.py	2004-07-11 21:37:51 UTC (rev 26416)
+++ Zope3/branches/stub-session/src/zope/app/session/interfaces.py	2004-07-11 21:54:37 UTC (rev 26417)
@@ -38,13 +38,6 @@
         """
 
 
-    """ XXX: Want this
-    def invalidate(browser_id):
-        ''' Expire the browser_id, and remove any matching ISessionData data 
-        '''
-    """
-
-
 class IClientId(Interface):
     """A unique id representing a session"""
 

Modified: Zope3/branches/stub-session/src/zope/app/session/session.py
===================================================================
--- Zope3/branches/stub-session/src/zope/app/session/session.py	2004-07-11 21:37:51 UTC (rev 26416)
+++ Zope3/branches/stub-session/src/zope/app/session/session.py	2004-07-11 21:54:37 UTC (rev 26417)
@@ -140,7 +140,7 @@
 
         now = time.time()
 
-        # XXX: When scheduler exists, sweeping should be done by
+        # TODO: When scheduler exists, sweeping should be done by
         # a scheduled job since we are currently busy handling a
         # request and may end up doing simultaneous sweeps
         if self._v_last_sweep + self.resolution < now:



More information about the Zope3-Checkins mailing list