diff --git a/modules/attilasub/__init__.py b/modules/attilasub/__init__.py index 053d923e..4bb4eb35 100644 --- a/modules/attilasub/__init__.py +++ b/modules/attilasub/__init__.py @@ -1,3 +1,22 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2013 Julien Veyssier +# +# This file is part of weboob. +# +# weboob 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. +# +# weboob 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with weboob. If not, see . + from .backend import AttilasubBackend __all__ = ['AttilasubBackend'] diff --git a/modules/attilasub/backend.py b/modules/attilasub/backend.py index 25ada04d..06aa4265 100644 --- a/modules/attilasub/backend.py +++ b/modules/attilasub/backend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/attilasub/browser.py b/modules/attilasub/browser.py index 2ef69bd2..a0fa9642 100644 --- a/modules/attilasub/browser.py +++ b/modules/attilasub/browser.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/attilasub/pages.py b/modules/attilasub/pages.py index d7b9b2dc..bddeeb73 100644 --- a/modules/attilasub/pages.py +++ b/modules/attilasub/pages.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2012 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/attilasub/test.py b/modules/attilasub/test.py index aecb4b3c..942d37ef 100644 --- a/modules/attilasub/test.py +++ b/modules/attilasub/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier, Laurent Bachelier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/btmon/__init__.py b/modules/btmon/__init__.py index b88fb31a..4d2f954b 100644 --- a/modules/btmon/__init__.py +++ b/modules/btmon/__init__.py @@ -1,3 +1,22 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2013 Julien Veyssier +# +# This file is part of weboob. +# +# weboob 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. +# +# weboob 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with weboob. If not, see . + from .backend import BtmonBackend __all__ = ['BtmonBackend'] diff --git a/modules/btmon/backend.py b/modules/btmon/backend.py index 8e583034..c4340e87 100644 --- a/modules/btmon/backend.py +++ b/modules/btmon/backend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/btmon/browser.py b/modules/btmon/browser.py index 52c78c01..f1504aa6 100644 --- a/modules/btmon/browser.py +++ b/modules/btmon/browser.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/btmon/pages.py b/modules/btmon/pages.py index 072874ea..46123271 100644 --- a/modules/btmon/pages.py +++ b/modules/btmon/pages.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2012 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/btmon/test.py b/modules/btmon/test.py index 3d463149..aed767b4 100644 --- a/modules/btmon/test.py +++ b/modules/btmon/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier, Laurent Bachelier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/opensubtitles/__init__.py b/modules/opensubtitles/__init__.py index 853037d4..0a58d64c 100644 --- a/modules/opensubtitles/__init__.py +++ b/modules/opensubtitles/__init__.py @@ -1,3 +1,22 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2013 Julien Veyssier +# +# This file is part of weboob. +# +# weboob 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. +# +# weboob 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with weboob. If not, see . + from .backend import OpensubtitlesBackend __all__ = ['OpensubtitlesBackend'] diff --git a/modules/opensubtitles/backend.py b/modules/opensubtitles/backend.py index 659a27d8..ba5a20e3 100644 --- a/modules/opensubtitles/backend.py +++ b/modules/opensubtitles/backend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/opensubtitles/browser.py b/modules/opensubtitles/browser.py index 2cdf7383..727080b1 100644 --- a/modules/opensubtitles/browser.py +++ b/modules/opensubtitles/browser.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/opensubtitles/test.py b/modules/opensubtitles/test.py index b472bd51..eeac33dd 100644 --- a/modules/opensubtitles/test.py +++ b/modules/opensubtitles/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/tvsubtitles/__init__.py b/modules/tvsubtitles/__init__.py index 5ee86610..ee939e1d 100644 --- a/modules/tvsubtitles/__init__.py +++ b/modules/tvsubtitles/__init__.py @@ -1,3 +1,22 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2013 Julien Veyssier +# +# This file is part of weboob. +# +# weboob 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. +# +# weboob 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with weboob. If not, see . + from .backend import TvsubtitlesBackend __all__ = ['TvsubtitlesBackend'] diff --git a/modules/tvsubtitles/backend.py b/modules/tvsubtitles/backend.py index dbfb694b..d7cbaa6e 100644 --- a/modules/tvsubtitles/backend.py +++ b/modules/tvsubtitles/backend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/tvsubtitles/browser.py b/modules/tvsubtitles/browser.py index e28476ea..87033938 100644 --- a/modules/tvsubtitles/browser.py +++ b/modules/tvsubtitles/browser.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/tvsubtitles/pages.py b/modules/tvsubtitles/pages.py index 0e680692..8b8d79c9 100644 --- a/modules/tvsubtitles/pages.py +++ b/modules/tvsubtitles/pages.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2012 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/modules/tvsubtitles/test.py b/modules/tvsubtitles/test.py index 37d19dda..12d742d5 100644 --- a/modules/tvsubtitles/test.py +++ b/modules/tvsubtitles/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/scripts/suboob b/scripts/suboob index 8a7aa4c4..2d4ee9d4 100755 --- a/scripts/suboob +++ b/scripts/suboob @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/weboob/applications/suboob/__init__.py b/weboob/applications/suboob/__init__.py index 7030e250..f72060b1 100644 --- a/weboob/applications/suboob/__init__.py +++ b/weboob/applications/suboob/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2011 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # @@ -17,7 +17,6 @@ # You should have received a copy of the GNU Affero General Public License # along with weboob. If not, see . - from .suboob import Suboob __all__ = ['Suboob'] diff --git a/weboob/applications/suboob/suboob.py b/weboob/applications/suboob/suboob.py index 5f760d8a..ac7054db 100644 --- a/weboob/applications/suboob/suboob.py +++ b/weboob/applications/suboob/suboob.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2012 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. # diff --git a/weboob/capabilities/subtitle.py b/weboob/capabilities/subtitle.py index 3e270e6d..2436a5ac 100644 --- a/weboob/capabilities/subtitle.py +++ b/weboob/capabilities/subtitle.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2010-2012 Julien Veyssier +# Copyright(C) 2013 Julien Veyssier # # This file is part of weboob. #