[Modeling-cvs] NotificationFramework Notification.py,1.3,1.4 NotificationCenter.py,1.6,1.7 __init__.
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-05-26 12:24:55
|
Update of /cvsroot/modeling/NotificationFramework In directory sc8-pr-cvs1:/tmp/cvs-serv21217 Modified Files: Notification.py NotificationCenter.py __init__.py log.py mems_lib.py setup.py Log Message: Fixed license: this is the Notification Framework, not the Modeling! Index: Notification.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/Notification.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Notification.py 10 Jan 2003 10:45:44 -0000 1.3 --- Notification.py 26 May 2003 12:24:52 -0000 1.4 *************** *** 1,15 **** #----------------------------------------------------------------------------- # ! # Modeling Framework: an Object-Relational Bridge for python # (c) 2001, 2002, 2003 Sebastien Bigaret # ! # This file is part of the Modeling Framework. # ! # The Modeling 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 Modeling 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 --- 1,15 ---- #----------------------------------------------------------------------------- # ! # Notification Framework: "Observer" Design Pattern for python # (c) 2001, 2002, 2003 Sebastien 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 *************** *** 17,21 **** # # You should have received a copy of the GNU General Public License along ! # with the Modeling Framework; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # --- 17,21 ---- # # 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 # Index: NotificationCenter.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/NotificationCenter.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NotificationCenter.py 25 May 2003 19:06:50 -0000 1.6 --- NotificationCenter.py 26 May 2003 12:24:52 -0000 1.7 *************** *** 1,15 **** #----------------------------------------------------------------------------- # ! # Modeling Framework: an Object-Relational Bridge for python # (c) 2001, 2002, 2003 Sebastien Bigaret # ! # This file is part of the Modeling Framework. # ! # The Modeling 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 Modeling 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 --- 1,15 ---- #----------------------------------------------------------------------------- # ! # Notification Framework: "Observer" Design Pattern for python # (c) 2001, 2002, 2003 Sebastien 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 *************** *** 17,21 **** # # You should have received a copy of the GNU General Public License along ! # with the Modeling Framework; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # --- 17,21 ---- # # 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 # Index: __init__.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** __init__.py 10 Jan 2003 10:45:44 -0000 1.2 --- __init__.py 26 May 2003 12:24:52 -0000 1.3 *************** *** 1,15 **** #----------------------------------------------------------------------------- # ! # Modeling Framework: an Object-Relational Bridge for python # (c) 2001, 2002, 2003 Sebastien Bigaret # ! # This file is part of the Modeling Framework. # ! # The Modeling 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 Modeling 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 --- 1,15 ---- #----------------------------------------------------------------------------- # ! # Notification Framework: "Observer" Design Pattern for python # (c) 2001, 2002, 2003 Sebastien 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 *************** *** 17,23 **** # # You should have received a copy of the GNU General Public License along ! # with the Modeling Framework; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # #----------------------------------------------------------------------------- --- 17,31 ---- # # 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 # #----------------------------------------------------------------------------- + """ + The NotificationFramework is a python implementation of the "Observer" + Design Pattern, allowing one-to-many dependency between objects even when + 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. + """ Index: log.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/log.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** log.py 10 Jan 2003 10:45:44 -0000 1.2 --- log.py 26 May 2003 12:24:52 -0000 1.3 *************** *** 1,15 **** #----------------------------------------------------------------------------- # ! # Modeling Framework: an Object-Relational Bridge for python # (c) 2001, 2002, 2003 Sebastien Bigaret # ! # This file is part of the Modeling Framework. # ! # The Modeling 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 Modeling 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 --- 1,15 ---- #----------------------------------------------------------------------------- # ! # Notification Framework: "Observer" Design Pattern for python # (c) 2001, 2002, 2003 Sebastien 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 *************** *** 17,21 **** # # You should have received a copy of the GNU General Public License along ! # with the Modeling Framework; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # --- 17,21 ---- # # 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 # Index: mems_lib.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/mems_lib.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mems_lib.py 30 Jul 2002 15:02:38 -0000 1.1.1.1 --- mems_lib.py 26 May 2003 12:24:52 -0000 1.2 *************** *** 1,5 **** ! ## ! ## The following code is taken from the ZODB Programmer's Guide ! ## from types import ClassType,TypeType --- 1,5 ---- ! """ ! The code in this module is borrowed from the ZODB Programmer's Guide ! """ from types import ClassType,TypeType Index: setup.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/setup.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** setup.py 25 May 2003 19:06:50 -0000 1.7 --- setup.py 26 May 2003 12:24:52 -0000 1.8 *************** *** 2,16 **** #----------------------------------------------------------------------------- # ! # Modeling Framework: an Object-Relational Bridge for python # (c) 2001, 2002, 2003 Sebastien Bigaret # ! # This file is part of the Modeling Framework. # ! # The Modeling 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 Modeling 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 --- 2,16 ---- #----------------------------------------------------------------------------- # ! # Notification Framework: "Observer" Design Pattern for python # (c) 2001, 2002, 2003 Sebastien 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 *************** *** 18,22 **** # # You should have received a copy of the GNU General Public License along ! # with the Modeling Framework; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # --- 18,22 ---- # # 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 # |