summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/AddonManager.py32
-rw-r--r--module/Api.py2
-rw-r--r--module/PluginManager.py2
-rw-r--r--module/plugins/UserAddon.py30
-rw-r--r--module/web/templates/default/base.html2
-rwxr-xr-xpyLoadCore.py4
6 files changed, 34 insertions, 38 deletions
diff --git a/module/AddonManager.py b/module/AddonManager.py
index ad6daaf83..ccb617dc6 100644
--- a/module/AddonManager.py
+++ b/module/AddonManager.py
@@ -1,24 +1,22 @@
# -*- coding: utf-8 -*-
-"""
- 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/>.
-
- @author: RaNaN, mkaay
-"""
+###############################################################################
+# Copyright(c) 2008-2013 pyLoad Team
+# http://www.pyload.org
+#
+# This file is part of pyLoad.
+# pyLoad is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Subjected to the terms and conditions in LICENSE
+#
+# @author: RaNaN
+###############################################################################
+
import __builtin__
-from traceback import print_exc
from thread import start_new_thread
from threading import RLock
diff --git a/module/Api.py b/module/Api.py
index fb3c59483..a96f35ab6 100644
--- a/module/Api.py
+++ b/module/Api.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
###############################################################################
-# Copyright(c) 2008-2012 pyLoad Team
+# Copyright(c) 2008-2013 pyLoad Team
# http://www.pyload.org
#
# This file is part of pyLoad.
diff --git a/module/PluginManager.py b/module/PluginManager.py
index 31ad38625..6f2268388 100644
--- a/module/PluginManager.py
+++ b/module/PluginManager.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
###############################################################################
-# Copyright(c) 2008-2012 pyLoad Team
+# Copyright(c) 2008-2013 pyLoad Team
# http://www.pyload.org
#
# This file is part of pyLoad.
diff --git a/module/plugins/UserAddon.py b/module/plugins/UserAddon.py
index c49b1ef41..25f6bd841 100644
--- a/module/plugins/UserAddon.py
+++ b/module/plugins/UserAddon.py
@@ -1,21 +1,19 @@
# -*- coding: utf-8 -*-
-"""
- 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/>.
-
- @author: RaNaN
-"""
+###############################################################################
+# Copyright(c) 2008-2013 pyLoad Team
+# http://www.pyload.org
+#
+# This file is part of pyLoad.
+# pyLoad is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Subjected to the terms and conditions in LICENSE
+#
+# @author: RaNaN
+###############################################################################
from Addon import Addon
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html
index e4210ec8b..3ecb00de5 100644
--- a/module/web/templates/default/base.html
+++ b/module/web/templates/default/base.html
@@ -142,7 +142,7 @@
<div class="center">
<div class="logo"></div>
<div class="block copyright">
- © 2008-2012<br>
+ © 2008-2013<br>
<a href="http://pyload.org/" target="_blank">The pyLoad Team</a><br>
</div>
diff --git a/pyLoadCore.py b/pyLoadCore.py
index 4e249e22f..8f939b861 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
- Copyright(c) 2008-2012 pyLoad Team
+ Copyright(c) 2008-2013 pyLoad Team
http://www.pyload.org
This program is free software: you can redistribute it and/or modify
@@ -162,7 +162,7 @@ class Core(object):
def print_help(self):
print ""
- print "pyLoad v%s 2008-2012 the pyLoad Team" % CURRENT_VERSION
+ print "pyLoad v%s 2008-2013 the pyLoad Team" % CURRENT_VERSION
print ""
if sys.argv[0].endswith(".py"):
print "Usage: python pyLoadCore.py [options]"