Update of /cvsroot/modeling/NotificationFramework
In directory sc8-pr-cvs1:/tmp/cvs-serv7797
Modified Files:
Notification.py NotificationCenter.py __init__.py log.py
Log Message:
Slightly improved documentation
Index: Notification.py
===================================================================
RCS file: /cvsroot/modeling/NotificationFramework/Notification.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Notification.py 26 May 2003 12:24:52 -0000 1.4
--- Notification.py 26 May 2003 12:57:20 -0000 1.5
***************
*** 22,26 ****
#-----------------------------------------------------------------------------
! """$Id$"""
__version__='$Revision$'[11:-2]
--- 22,30 ----
#-----------------------------------------------------------------------------
! """
! Notifications are the messages transmitted by the NotificationCenter.
!
! $Id$
! """
__version__='$Revision$'[11:-2]
Index: NotificationCenter.py
===================================================================
RCS file: /cvsroot/modeling/NotificationFramework/NotificationCenter.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** NotificationCenter.py 26 May 2003 12:24:52 -0000 1.7
--- NotificationCenter.py 26 May 2003 12:57:20 -0000 1.8
***************
*** 24,28 ****
"""
! NotificationCenter
This module acts as a NotificationCenter.
--- 24,29 ----
"""
! NotificationCenter is the central object of the framework --full documentation
! is here.
This module acts as a NotificationCenter.
Index: __init__.py
===================================================================
RCS file: /cvsroot/modeling/NotificationFramework/__init__.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** __init__.py 26 May 2003 12:24:52 -0000 1.3
--- __init__.py 26 May 2003 12:57:20 -0000 1.4
***************
*** 26,30 ****
they have no idea of who and where the other objects live.
! The complete documentation can found in module NotificationCenter.
It is distributed under the GNU General Public License.
--- 26,31 ----
they have no idea of who and where the other objects live.
! The complete documentation can found in L{module
! NotificationCenter<NotificationCenter>}.
It is distributed under the GNU General Public License.
Index: log.py
===================================================================
RCS file: /cvsroot/modeling/NotificationFramework/log.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** log.py 26 May 2003 12:24:52 -0000 1.3
--- log.py 26 May 2003 12:57:20 -0000 1.4
***************
*** 23,27 ****
"""
! $Id$
"""
--- 23,35 ----
"""
! Logging methods.
!
! All methods log(), warn() and trace() are disabled by default. To enable
! them set the environment variable 'NOTIFICATION_FRAMEWORK_TRACE' (for
! debugging purpose mainly)
!
! CVS Information
!
! $Id$
"""
|