[wpdev-commits] wolfpack/python pyaction.cpp,1.1,1.2 pyaction.h,1.1,1.2
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-09-19 16:25:48
|
Update of /cvsroot/wpdev/wolfpack/python In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10727/python Modified Files: pyaction.cpp pyaction.h Log Message: - Added missing copyright headers to some new files - Console will show if Python is UCS2 or UCS4 - Removed few lines of dead code - Some internationalization fixes Index: pyaction.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/python/pyaction.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pyaction.cpp 31 Aug 2004 19:24:04 -0000 1.1 --- pyaction.cpp 19 Sep 2004 16:25:37 -0000 1.2 *************** *** 1,2 **** --- 1,28 ---- + /* + * Wolfpack Emu (WP) + * UO Server Emulation Program + * + * Copyright 2001-2004 by holders identified in AUTHORS.txt + * 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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Palace - Suite 330, Boston, MA 02111-1307, USA. + * + * In addition to that license, if you are running this program or modified + * versions of it on a public system you HAVE TO make the complete source of + * the version used by you available or provide people with a location to + * download it. + * + * Wolfpack Homepage: http://wpdev.sf.net/ + */ #include "pyaction.h" Index: pyaction.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/python/pyaction.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pyaction.h 31 Aug 2004 19:24:04 -0000 1.1 --- pyaction.h 19 Sep 2004 16:25:37 -0000 1.2 *************** *** 1,2 **** --- 1,28 ---- + /* + * Wolfpack Emu (WP) + * UO Server Emulation Program + * + * Copyright 2001-2004 by holders identified in AUTHORS.txt + * 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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Palace - Suite 330, Boston, MA 02111-1307, USA. + * + * In addition to that license, if you are running this program or modified + * versions of it on a public system you HAVE TO make the complete source of + * the version used by you available or provide people with a location to + * download it. + * + * Wolfpack Homepage: http://wpdev.sf.net/ + */ #if !defined(__PYACTION_H__) |