[Modeling-cvs] NotificationFramework CHANGES,1.9,1.10 Notification.py,1.5,1.6 NotificationCenter.py,
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2004-02-14 19:50:52
|
Update of /cvsroot/modeling/NotificationFramework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16606 Modified Files: CHANGES Notification.py NotificationCenter.py log.py mems_lib.py setup.py Log Message: Updated the files to conform to PEP-0263: source encoding is iso-8859-1 Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/CHANGES,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** CHANGES 14 Feb 2004 19:41:22 -0000 1.9 --- CHANGES 14 Feb 2004 19:44:11 -0000 1.10 *************** *** 2,5 **** --- 2,7 ---- - Added attribute __version__ to package NotificationFramework + - Updated the files to conform to PEP-0263: source encoding is iso-8859-1 + 0.6.1 [2004/02/01] Index: Notification.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/Notification.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Notification.py 26 May 2003 12:57:20 -0000 1.5 --- Notification.py 14 Feb 2004 19:44:11 -0000 1.6 *************** *** 1,6 **** #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sebastien Bigaret # # This file is part of the Notification Framework. --- 1,7 ---- + # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sébastien Bigaret # # This file is part of the Notification Framework. Index: NotificationCenter.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/NotificationCenter.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** NotificationCenter.py 27 Sep 2003 23:58:12 -0000 1.9 --- NotificationCenter.py 14 Feb 2004 19:44:11 -0000 1.10 *************** *** 1,6 **** #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sebastien Bigaret # # This file is part of the Notification Framework. --- 1,7 ---- + # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sébastien Bigaret # # This file is part of the Notification Framework. Index: log.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/log.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** log.py 26 May 2003 12:57:20 -0000 1.4 --- log.py 14 Feb 2004 19:44:11 -0000 1.5 *************** *** 1,6 **** #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sebastien Bigaret # # This file is part of the Notification Framework. --- 1,7 ---- + # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sébastien Bigaret # # This file is part of the Notification Framework. Index: mems_lib.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/mems_lib.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mems_lib.py 2 Feb 2004 21:36:14 -0000 1.3 --- mems_lib.py 14 Feb 2004 19:44:11 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + # -*- coding: iso-8859-1 -*- """ The code in this module is borrowed from the ZODB Programmer's Guide. Index: setup.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/setup.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** setup.py 2 Feb 2004 21:40:34 -0000 1.12 --- setup.py 14 Feb 2004 19:44:11 -0000 1.13 *************** *** 1,4 **** #!/usr/bin/env python ! # -*- coding: latin-1 -*- #----------------------------------------------------------------------------- # --- 1,4 ---- #!/usr/bin/env python ! # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # |