[Modeling-cvs] NotificationFramework LICENSE,1.2,1.3 CHANGES,1.11,1.12 Notification.py,1.7,1.8 Notif
Status: Abandoned
Brought to you by:
sbigaret
Update of /cvsroot/modeling/NotificationFramework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30060 Modified Files: CHANGES Notification.py NotificationCenter.py README __init__.py log.py setup.py vertoo.data Added Files: LICENSE Removed Files: COPYING Log Message: 0.7 [2004/06/22] Now distributed under a 3-clause BSD-style license, see LICENSE for details - All docstrings updated for epydoc + reStructuredText - Added attribute __version__ to package NotificationFramework - Updated the files to conform to PEP-0263: source encoding is iso-8859-1 Index: NotificationCenter.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/NotificationCenter.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** NotificationCenter.py 15 Feb 2004 14:03:56 -0000 1.11 --- NotificationCenter.py 22 Jun 2004 18:51:05 -0000 1.12 *************** *** 1,24 **** # -*- 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. ! # ! # The Notification Framework is free software; you can redistribute it and/or ! # modify it under the terms of the GNU General Public License as published ! # by the Free Software Foundation; either version 2 of the License, or (at ! # your option) any later version. ! # ! # The Notification Framework is distributed in the hope that it will be ! # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License along ! # with the Notification Framework; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # #----------------------------------------------------------------------------- --- 1,13 ---- # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # Notification Framework: "Observer" Design Pattern for python ! # ! # Copyright (c) 2001-2004 Sébastien Bigaret <sbi...@us...> ! # All rights reserved. ! # # This file is part of the Notification Framework. ! # ! # This code is distributed under a 3-clause BSD-style license; ! # see the LICENSE file for details. #----------------------------------------------------------------------------- Index: vertoo.data =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/vertoo.data,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** vertoo.data 2 Feb 2004 21:40:34 -0000 1.4 --- vertoo.data 22 Jun 2004 18:51:05 -0000 1.5 *************** *** 1 **** ! notification-framework = major:0; minor:6; release:1; \ No newline at end of file --- 1 ---- ! notification-framework = major:0; minor:7; release:x; \ No newline at end of file --- NEW FILE: LICENSE --- (This appears to be a binary file; contents omitted.) Index: __init__.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/__init__.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** __init__.py 15 Feb 2004 14:03:56 -0000 1.6 --- __init__.py 22 Jun 2004 18:51:05 -0000 1.7 *************** *** 1,24 **** # -*- 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. ! # ! # The Notification Framework is free software; you can redistribute it and/or ! # modify it under the terms of the GNU General Public License as published ! # by the Free Software Foundation; either version 2 of the License, or (at ! # your option) any later version. ! # ! # The Notification Framework is distributed in the hope that it will be ! # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License along ! # with the Notification Framework; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # #----------------------------------------------------------------------------- """ --- 1,13 ---- # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # Notification Framework: "Observer" Design Pattern for python ! # ! # Copyright (c) 2001-2004 Sébastien Bigaret <sbi...@us...> ! # All rights reserved. ! # # This file is part of the Notification Framework. ! # ! # This code is distributed under a 3-clause BSD-style license; ! # see the LICENSE file for details. #----------------------------------------------------------------------------- """ *************** *** 29,33 **** The complete documentation can found in module `NotificationCenter`. ! It is distributed under the GNU General Public License. `Download the last release at sourceforge`_ --- 18,23 ---- The complete documentation can found in module `NotificationCenter`. ! It is distributed under a 3-clause BSD-style license; ! see the LICENSE file for details. `Download the last release at sourceforge`_ *************** *** 95,97 **** """ ! __version__="0.6.1" --- 85,87 ---- """ ! __version__="0.7" Index: Notification.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/Notification.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Notification.py 15 Feb 2004 14:03:56 -0000 1.7 --- Notification.py 22 Jun 2004 18:51:05 -0000 1.8 *************** *** 1,24 **** # -*- 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. ! # ! # The Notification Framework is free software; you can redistribute it and/or ! # modify it under the terms of the GNU General Public License as published ! # by the Free Software Foundation; either version 2 of the License, or (at ! # your option) any later version. ! # ! # The Notification Framework is distributed in the hope that it will be ! # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License along ! # with the Notification Framework; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # #----------------------------------------------------------------------------- --- 1,13 ---- # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # Notification Framework: "Observer" Design Pattern for python ! # ! # Copyright (c) 2001-2004 Sébastien Bigaret <sbi...@us...> ! # All rights reserved. ! # # This file is part of the Notification Framework. ! # ! # This code is distributed under a 3-clause BSD-style license; ! # see the LICENSE file for details. #----------------------------------------------------------------------------- Index: log.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/log.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** log.py 15 Feb 2004 14:03:56 -0000 1.6 --- log.py 22 Jun 2004 18:51:05 -0000 1.7 *************** *** 1,24 **** # -*- 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. ! # ! # The Notification Framework is free software; you can redistribute it and/or ! # modify it under the terms of the GNU General Public License as published ! # by the Free Software Foundation; either version 2 of the License, or (at ! # your option) any later version. ! # ! # The Notification Framework is distributed in the hope that it will be ! # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License along ! # with the Notification Framework; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # #----------------------------------------------------------------------------- --- 1,13 ---- # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # Notification Framework: "Observer" Design Pattern for python ! # ! # Copyright (c) 2001-2004 Sébastien Bigaret <sbi...@us...> ! # All rights reserved. ! # # This file is part of the Notification Framework. ! # ! # This code is distributed under a 3-clause BSD-style license; ! # see the LICENSE file for details. #----------------------------------------------------------------------------- --- COPYING DELETED --- Index: README =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 26 May 2003 12:41:26 -0000 1.1 --- README 22 Jun 2004 18:51:05 -0000 1.2 *************** *** 6,8 **** at http://modeling.sourceforge.net/API/Notification-API/index.html ! It is distributed under the GNU General Public License. --- 6,9 ---- at http://modeling.sourceforge.net/API/Notification-API/index.html ! It is distributed under a 3-clause BSD-style license; ! see the LICENSE file for details. Index: setup.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/setup.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** setup.py 14 Feb 2004 19:44:11 -0000 1.13 --- setup.py 22 Jun 2004 18:51:05 -0000 1.14 *************** *** 2,25 **** # -*- 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. ! # ! # The Notification Framework is free software; you can redistribute it and/or ! # modify it under the terms of the GNU General Public License as published ! # by the Free Software Foundation; either version 2 of the License, or (at ! # your option) any later version. ! # ! # The Notification Framework is distributed in the hope that it will be ! # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License along ! # with the Notification Framework; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # #----------------------------------------------------------------------------- """Notification Framework: Observer Design Pattern --- 2,14 ---- # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # Notification Framework: "Observer" Design Pattern for python ! # ! # Copyright (c) 2001-2004 Sébastien Bigaret <sbi...@us...> ! # All rights reserved. ! # # This file is part of the Notification Framework. ! # ! # This code is distributed under a 3-clause BSD-style license; ! # see the LICENSE file for details. #----------------------------------------------------------------------------- """Notification Framework: Observer Design Pattern *************** *** 39,43 **** Development Status :: 5 - Production/Stable Intended Audience :: Developers ! License :: OSI Approved :: GNU General Public License (GPL) Operating System :: OS Independent Programming Language :: Python --- 28,32 ---- Development Status :: 5 - Production/Stable Intended Audience :: Developers ! License :: OSI Approved :: BSD License Operating System :: OS Independent Programming Language :: Python *************** *** 60,65 **** setup(name="NotificationFramework", ! version="0.6.1", ! license ="GNU General Public License", description=short_description, author="Sebastien Bigaret", --- 49,54 ---- setup(name="NotificationFramework", ! version="0.7", ! license ="BSD License", description=short_description, author="Sebastien Bigaret", Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/CHANGES,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CHANGES 15 Feb 2004 14:03:56 -0000 1.11 --- CHANGES 22 Jun 2004 18:51:05 -0000 1.12 *************** *** 1,2 **** --- 1,5 ---- + 0.7 [2004/06/22] + + Now distributed under a 3-clause BSD-style license, see LICENSE for details - All docstrings updated for epydoc + reStructuredText |