[Zope-Checkins] CVS: Zope/lib/python/Products/Transience/help - Transience-add.stx:1.4 Transience-change.stx:1.6 TransienceInterfaces.py:1.6

Chris McDonough chrism@zope.com
Tue, 20 Nov 2001 14:06:57 -0500


Update of /cvs-repository/Zope/lib/python/Products/Transience/help
In directory cvs.zope.org:/tmp/cvs-serv16710/help

Modified Files:
	Transience-add.stx Transience-change.stx 
	TransienceInterfaces.py 
Log Message:
Management screen changes.

The help version of TransienceInterfaces.py wanted to import Interface; it no longer wants to do so.


=== Zope/lib/python/Products/Transience/help/Transience-add.stx 1.3 => 1.4 ===
   Common Usages
 
-     A Transient Object Container is used by Session Data Mangers to store
+     A Transient Object Container is used by Session Data Managers to store
      session data.
 
   To create a Transient Object Container, specify the following:
@@ -17,7 +17,9 @@
 
        The Zope id of the Transient Object Container.
 
-     - *Title* 
+     - **Title** 
+
+       *Optional*
 
        The title of the object.
 
@@ -26,8 +28,11 @@
        The minimum number of minutes that objects in the container will
        persist for.  Objects in the container are passively deleted, so
        they may not be deleted exactly after this number of minutes elapses.
+       A setting of "0" indicates that objects should not expire.
+
+     - **Script to call when objects are added**
 
-     - *Script to call when objects are added*
+       *Optional*
 
        The physical path of of a Zope script which will receive notifications
        when objects are added to the Transient Object Container.
@@ -36,7 +41,9 @@
 
        For more information, see "Add and Delete Scripts" below.
 
-     - *Script to call when objects are deleted*
+     - **Script to call when objects are deleted**
+
+       *Optional*
 
        The physical path of a Zope script which will receive notifications
        when objects are deleted from the Transient Object Container, either


=== Zope/lib/python/Products/Transience/help/Transience-change.stx 1.5 => 1.6 ===
        The Zope id of the Transient Object Container.
 
-     - *Title* 
+     - **Title**
+
+       *Optional*
 
        The title of the object.
 
@@ -30,7 +32,11 @@
        If you change the timeout value, all objects in the transient
        container will be flushed.
 
-     - *Script to call when objects are added*
+       If the timeout value is "0", objects will not time out.
+
+     - **Script to call when objects are added**
+
+       *Optional*
 
        The physical path of of a Zope script which will receive notifications
        when objects are added to the Transient Object Container.
@@ -39,7 +45,9 @@
 
        For more information, see "Add and Delete Scripts" below.
 
-     - *Script to call when objects are deleted*
+     - **Script to call when objects are deleted**
+
+       *Optional*
 
        The physical path of a Zope script which will receive notifications
        when objects are deleted from the Transient Object Container, either


=== Zope/lib/python/Products/Transience/help/TransienceInterfaces.py 1.5 => 1.6 ===
 """
 
-class TransientObjectContainer(Interface.Base):
+class TransientObjectContainer:
     """
     TransientObjectContainers hold transient objects, most often,
     session data.
@@ -202,7 +202,7 @@
         """
 
 
-class TransientObject(Interface.Base):
+class TransientObject:
     """
     A transient object is a temporary object contained in a transient
     object container.