Thread: [Netpopup-devel] netpopup/src consts.py, 1.3, 1.4 getnodenamewindow.py, 1.1, 1.2 listener.py, 1.3,
Brought to you by:
irfanhamid
|
From: Irfan H. <irf...@us...> - 2007-10-20 02:08:43
|
Update of /cvsroot/netpopup/netpopup/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19825/src Modified Files: consts.py getnodenamewindow.py listener.py mainwindow.py msg.py msglist.py netpopup.py p2plistener.py packaging.py peermanager.py presence.py transmitter.py utils.py Log Message: Added the gpl3 text file to the project directory. Added the reduced gpl3 header to all source files. Index: getnodenamewindow.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/getnodenamewindow.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** getnodenamewindow.py 18 Oct 2007 20:47:42 -0000 1.1 --- getnodenamewindow.py 20 Oct 2007 02:08:40 -0000 1.2 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import pygtk pygtk.require('2.0') Index: netpopup.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/netpopup.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** netpopup.py 20 Oct 2007 01:07:51 -0000 1.2 --- netpopup.py 20 Oct 2007 02:08:40 -0000 1.3 *************** *** 1,4 **** --- 1,21 ---- #!/usr/bin/env python + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import time import presence Index: packaging.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/packaging.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** packaging.py 20 Oct 2007 01:07:51 -0000 1.2 --- packaging.py 20 Oct 2007 02:08:40 -0000 1.3 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + ################################################################################ # This module contains procedures that take an arbitrary message (as a string) # Index: peermanager.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/peermanager.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** peermanager.py 20 Oct 2007 01:46:26 -0000 1.3 --- peermanager.py 20 Oct 2007 02:08:40 -0000 1.4 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import pickle import socket Index: mainwindow.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/mainwindow.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mainwindow.py 20 Oct 2007 01:46:26 -0000 1.3 --- mainwindow.py 20 Oct 2007 02:08:40 -0000 1.4 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import pygtk pygtk.require('2.0') Index: consts.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/consts.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** consts.py 20 Oct 2007 01:07:51 -0000 1.3 --- consts.py 20 Oct 2007 02:08:40 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + + + # In this file we declare the various that will be needed by krrplunk # Index: msg.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/msg.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** msg.py 18 Oct 2007 20:47:42 -0000 1.1 --- msg.py 20 Oct 2007 02:08:40 -0000 1.2 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + from consts import * Index: listener.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/listener.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** listener.py 20 Oct 2007 01:46:26 -0000 1.3 --- listener.py 20 Oct 2007 02:08:40 -0000 1.4 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import pygtk pygtk.require('2.0') Index: p2plistener.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/p2plistener.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** p2plistener.py 18 Oct 2007 20:47:42 -0000 1.1 --- p2plistener.py 20 Oct 2007 02:08:40 -0000 1.2 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import threading Index: msglist.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/msglist.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** msglist.py 20 Oct 2007 01:46:26 -0000 1.1 --- msglist.py 20 Oct 2007 02:08:40 -0000 1.2 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + # This class implements the functionality of a message list # class MsgList: Index: presence.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/presence.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** presence.py 20 Oct 2007 01:07:51 -0000 1.2 --- presence.py 20 Oct 2007 02:08:40 -0000 1.3 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import threading import packaging Index: utils.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/utils.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** utils.py 20 Oct 2007 01:07:52 -0000 1.2 --- utils.py 20 Oct 2007 02:08:41 -0000 1.3 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import sys import os Index: transmitter.py =================================================================== RCS file: /cvsroot/netpopup/netpopup/src/transmitter.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** transmitter.py 20 Oct 2007 01:46:26 -0000 1.3 --- transmitter.py 20 Oct 2007 02:08:41 -0000 1.4 *************** *** 1,2 **** --- 1,19 ---- + # Techno's Netpopup, a simple messenger for LANs + # + # Copyright (C) 2007 GIKI Alumni Association (http://www.gikialumni.org) + # + # This program 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 3 of the License, or + # (at your option) any later version. + # + # This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + import pygtk pygtk.require('2.0') |