wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src campaign_server/campaign_server.cpp...


From: ott
Subject: [Wesnoth-cvs-commits] wesnoth/src campaign_server/campaign_server.cpp...
Date: Wed, 20 Jul 2005 04:56:53 -0400

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     ott <address@hidden>    05/07/20 08:56:52

Modified files:
        src/campaign_server: campaign_server.cpp 
        src/editor     : scenario_editor.cpp scenario_editor.hpp 
        src/tools      : key_test.cpp 
        src/widgets    : menu.cpp menu.hpp progressbar.cpp 
                         progressbar.hpp widget.cpp widget.hpp 
        src/zipios++   : xcoll.cpp xcoll.hpp 

Log message:
        add copyright notices (please change as appropriate), and deDOSify

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/campaign_server/campaign_server.cpp.diff?tr1=1.17&tr2=1.18&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/editor/scenario_editor.cpp.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/editor/scenario_editor.hpp.diff?tr1=1.5&tr2=1.6&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/tools/key_test.cpp.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/menu.cpp.diff?tr1=1.97&tr2=1.98&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/menu.hpp.diff?tr1=1.39&tr2=1.40&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/progressbar.cpp.diff?tr1=1.11&tr2=1.12&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/progressbar.hpp.diff?tr1=1.6&tr2=1.7&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/widget.cpp.diff?tr1=1.33&tr2=1.34&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/widget.hpp.diff?tr1=1.29&tr2=1.30&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/zipios++/xcoll.cpp.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/zipios++/xcoll.hpp.diff?tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: wesnoth/src/campaign_server/campaign_server.cpp
diff -u wesnoth/src/campaign_server/campaign_server.cpp:1.17 
wesnoth/src/campaign_server/campaign_server.cpp:1.18
--- wesnoth/src/campaign_server/campaign_server.cpp:1.17        Sat Jun  4 
19:16:06 2005
+++ wesnoth/src/campaign_server/campaign_server.cpp     Wed Jul 20 08:56:51 2005
@@ -1,3 +1,16 @@
+/* $Id: campaign_server.cpp,v 1.18 2005/07/20 08:56:51 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "config.hpp"
 #include "filesystem.hpp"
 #include "log.hpp"
Index: wesnoth/src/editor/scenario_editor.cpp
diff -u wesnoth/src/editor/scenario_editor.cpp:1.4 
wesnoth/src/editor/scenario_editor.cpp:1.5
--- wesnoth/src/editor/scenario_editor.cpp:1.4  Thu Nov 25 19:50:51 2004
+++ wesnoth/src/editor/scenario_editor.cpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: scenario_editor.cpp,v 1.5 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "../global.hpp"
 
 #include "scenario_editor.hpp"
Index: wesnoth/src/editor/scenario_editor.hpp
diff -u wesnoth/src/editor/scenario_editor.hpp:1.5 
wesnoth/src/editor/scenario_editor.hpp:1.6
--- wesnoth/src/editor/scenario_editor.hpp:1.5  Wed Mar 23 22:10:51 2005
+++ wesnoth/src/editor/scenario_editor.hpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: scenario_editor.hpp,v 1.6 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #ifndef SCENARIO_EDITOR_HPP_INCLUDED
 #define SCENARIO_EDITOR_HPP_INCLUDED
 
Index: wesnoth/src/tools/key_test.cpp
diff -u wesnoth/src/tools/key_test.cpp:1.1 wesnoth/src/tools/key_test.cpp:1.2
--- wesnoth/src/tools/key_test.cpp:1.1  Wed Mar  9 17:07:43 2005
+++ wesnoth/src/tools/key_test.cpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: key_test.cpp,v 1.2 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "key.h"
 #include "video.hpp"
 
Index: wesnoth/src/widgets/menu.cpp
diff -u wesnoth/src/widgets/menu.cpp:1.97 wesnoth/src/widgets/menu.cpp:1.98
--- wesnoth/src/widgets/menu.cpp:1.97   Wed Jul 20 08:22:37 2005
+++ wesnoth/src/widgets/menu.cpp        Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: menu.cpp,v 1.98 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "../global.hpp"
 
 #include "menu.hpp"
Index: wesnoth/src/widgets/menu.hpp
diff -u wesnoth/src/widgets/menu.hpp:1.39 wesnoth/src/widgets/menu.hpp:1.40
--- wesnoth/src/widgets/menu.hpp:1.39   Sat Jun  4 19:16:06 2005
+++ wesnoth/src/widgets/menu.hpp        Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: menu.hpp,v 1.40 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #ifndef WIDGET_MENU_HPP_INCLUDED
 #define WIDGET_MENU_HPP_INCLUDED
 
Index: wesnoth/src/widgets/progressbar.cpp
diff -u wesnoth/src/widgets/progressbar.cpp:1.11 
wesnoth/src/widgets/progressbar.cpp:1.12
--- wesnoth/src/widgets/progressbar.cpp:1.11    Mon May 16 22:44:21 2005
+++ wesnoth/src/widgets/progressbar.cpp Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: progressbar.cpp,v 1.12 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "../global.hpp"
 
 #include "progressbar.hpp"
Index: wesnoth/src/widgets/progressbar.hpp
diff -u wesnoth/src/widgets/progressbar.hpp:1.6 
wesnoth/src/widgets/progressbar.hpp:1.7
--- wesnoth/src/widgets/progressbar.hpp:1.6     Mon May 16 22:44:21 2005
+++ wesnoth/src/widgets/progressbar.hpp Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: progressbar.hpp,v 1.7 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #ifndef PROGRESS_BAR_HPP_INCLUDED
 #define PROGRESS_BAR_HPP_INCLUDED
 
Index: wesnoth/src/widgets/widget.cpp
diff -u wesnoth/src/widgets/widget.cpp:1.33 wesnoth/src/widgets/widget.cpp:1.34
--- wesnoth/src/widgets/widget.cpp:1.33 Mon May 16 22:44:21 2005
+++ wesnoth/src/widgets/widget.cpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: widget.cpp,v 1.34 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "../global.hpp"
 
 #include "widget.hpp"
Index: wesnoth/src/widgets/widget.hpp
diff -u wesnoth/src/widgets/widget.hpp:1.29 wesnoth/src/widgets/widget.hpp:1.30
--- wesnoth/src/widgets/widget.hpp:1.29 Sat Jun  4 19:16:06 2005
+++ wesnoth/src/widgets/widget.hpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: widget.hpp,v 1.30 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #ifndef WIDGET_HPP_INCLUDED
 #define WIDGET_HPP_INCLUDED
 
Index: wesnoth/src/zipios++/xcoll.cpp
diff -u wesnoth/src/zipios++/xcoll.cpp:1.3 wesnoth/src/zipios++/xcoll.cpp:1.4
--- wesnoth/src/zipios++/xcoll.cpp:1.3  Sat Jun  4 19:16:06 2005
+++ wesnoth/src/zipios++/xcoll.cpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: xcoll.cpp,v 1.4 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #include "wesconfig.h"
 
 #ifdef USE_ZIPIOS
Index: wesnoth/src/zipios++/xcoll.hpp
diff -u wesnoth/src/zipios++/xcoll.hpp:1.3 wesnoth/src/zipios++/xcoll.hpp:1.4
--- wesnoth/src/zipios++/xcoll.hpp:1.3  Sat Jun  4 19:16:06 2005
+++ wesnoth/src/zipios++/xcoll.hpp      Wed Jul 20 08:56:52 2005
@@ -1,3 +1,16 @@
+/* $Id: xcoll.hpp,v 1.4 2005/07/20 08:56:52 ott Exp $ */
+/*
+   Copyright (C) 2003-5 by David White <address@hidden>
+   Part of the Battle for Wesnoth Project http://www.wesnoth.org/
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+*/
+
 #ifndef XZIPIOS_XCOLL_H
 #define XZIPIOS_XCOLL_H
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]