Author: cornmander
Date: Thu Apr 23 08:42:48 2009
New Revision: 35132

URL: http://svn.gna.org/viewcvs/wesnoth?rev=35132&view=rev
Log:
Added GPL headers and id tag.


Modified:
    website/stats.wesnoth.org/wesstats/commands.py
    website/stats.wesnoth.org/wesstats/configuration.py.example
    website/stats.wesnoth.org/wesstats/controllers.py
    website/stats.wesnoth.org/wesstats/json.py
    website/stats.wesnoth.org/wesstats/model.py
    website/stats.wesnoth.org/wesstats/release.py
    website/stats.wesnoth.org/wesstats/templates/breakdown.kid
    website/stats.wesnoth.org/wesstats/templates/gold.kid
    website/stats.wesnoth.org/wesstats/templates/index.kid
    website/stats.wesnoth.org/wesstats/templates/platform.kid

Modified: website/stats.wesnoth.org/wesstats/commands.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/commands.py?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/commands.py (original)
+++ website/stats.wesnoth.org/wesstats/commands.py Thu Apr 23 08:42:48 2009
@@ -1,3 +1,17 @@
+# $Id$
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 # -*- coding: utf-8 -*-
 """This module contains functions called from console script entry points."""
 

Modified: website/stats.wesnoth.org/wesstats/configuration.py.example
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/configuration.py.example?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/configuration.py.example (original)
+++ website/stats.wesnoth.org/wesstats/configuration.py.example Thu Apr 23 
08:42:48 2009
@@ -1,3 +1,17 @@
+# $Id$
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 #edit these settings to match your MySQL db login info
 DB_HOSTNAME="hostname"
 DB_USERNAME="username"

Modified: website/stats.wesnoth.org/wesstats/controllers.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/controllers.py?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/controllers.py (original)
+++ website/stats.wesnoth.org/wesstats/controllers.py Thu Apr 23 08:42:48 2009
@@ -1,3 +1,17 @@
+# $Id$
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 import turbogears as tg
 import MySQLdb
 import types

Modified: website/stats.wesnoth.org/wesstats/json.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/json.py?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/json.py (original)
+++ website/stats.wesnoth.org/wesstats/json.py Thu Apr 23 08:42:48 2009
@@ -1,3 +1,17 @@
+# $Id$
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 # A JSON-based API(view) for your app.
 # Most rules would look like:
 # @jsonify.when("isinstance(obj, YourClass)")

Modified: website/stats.wesnoth.org/wesstats/model.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/model.py?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/model.py (original)
+++ website/stats.wesnoth.org/wesstats/model.py Thu Apr 23 08:42:48 2009
@@ -1,3 +1,17 @@
+# $Id$
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 from datetime import datetime
 import pkg_resources
 pkg_resources.require("SQLObject>=0.8")

Modified: website/stats.wesnoth.org/wesstats/release.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/release.py?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/release.py (original)
+++ website/stats.wesnoth.org/wesstats/release.py Thu Apr 23 08:42:48 2009
@@ -1,3 +1,16 @@
+"""
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+"""
+
 # Release information about wesstats
 
 version = "1.0"

Modified: website/stats.wesnoth.org/wesstats/templates/breakdown.kid
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/templates/breakdown.kid?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/templates/breakdown.kid (original)
+++ website/stats.wesnoth.org/wesstats/templates/breakdown.kid Thu Apr 23 
08:42:48 2009
@@ -1,3 +1,17 @@
+<!-- $Id$ -->
+<!--
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+-->
+
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html xmlns:py="http://purl.org/kid/ns#";>
 <head>

Modified: website/stats.wesnoth.org/wesstats/templates/gold.kid
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/templates/gold.kid?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/templates/gold.kid (original)
+++ website/stats.wesnoth.org/wesstats/templates/gold.kid Thu Apr 23 08:42:48 
2009
@@ -1,3 +1,17 @@
+<!-- $Id$ -->
+<!--
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+-->
+
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html xmlns:py="http://purl.org/kid/ns#";>
 <head>

Modified: website/stats.wesnoth.org/wesstats/templates/index.kid
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/templates/index.kid?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/templates/index.kid (original)
+++ website/stats.wesnoth.org/wesstats/templates/index.kid Thu Apr 23 08:42:48 
2009
@@ -1,3 +1,16 @@
+<!-- $Id$ -->
+<!--
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html>
 <head>

Modified: website/stats.wesnoth.org/wesstats/templates/platform.kid
URL: 
http://svn.gna.org/viewcvs/wesnoth/website/stats.wesnoth.org/wesstats/templates/platform.kid?rev=35132&r1=35131&r2=35132&view=diff
==============================================================================
--- website/stats.wesnoth.org/wesstats/templates/platform.kid (original)
+++ website/stats.wesnoth.org/wesstats/templates/platform.kid Thu Apr 23 
08:42:48 2009
@@ -1,3 +1,17 @@
+<!-- $Id$ -->
+<!--
+   Copyright (C) 2009 by Gregory Shikhman <[email protected]>
+   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 version 2
+   or at your option any later version.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY.
+
+   See the COPYING file for more details.
+-->
+
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
 <html xmlns:py="http://purl.org/kid/ns#";>
 <head>


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to