From 5fb1934cc50df65c1f91fe40216f9cf5696b574b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 2 Aug 2013 01:45:51 +0200 Subject: [PATCH] added copyright and author infos --- bot.py | 24 ++++++++++++++++++++++++ buddy.py | 24 ++++++++++++++++++++++++ cgi/auth.py | 24 ++++++++++++++++++++++++ cgi/sniff.py | 24 ++++++++++++++++++++++++ googleclient.py | 24 ++++++++++++++++++++++++ group.py | 23 +++++++++++++++++++++++ reader.py | 25 ++++++++++++++++++++++++- session.py | 24 ++++++++++++++++++++++++ transwhat.py | 24 ++++++++++++++++++++++++ utils.py | 24 ++++++++++++++++++++++++ whatsappbackend.py | 24 ++++++++++++++++++++++++ 11 files changed, 263 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 7c9c058..5ef61e5 100644 --- a/bot.py +++ b/bot.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import threading import inspect import re diff --git a/buddy.py b/buddy.py index b244801..8338c11 100644 --- a/buddy.py +++ b/buddy.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + from Spectrum2 import protocol_pb2 from Yowsup.Contacts.contacts import WAContactsSyncRequest diff --git a/cgi/auth.py b/cgi/auth.py index e1812cb..5eeb3c0 100755 --- a/cgi/auth.py +++ b/cgi/auth.py @@ -1,5 +1,29 @@ #!/usr/bin/python +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import os import sys import cgi diff --git a/cgi/sniff.py b/cgi/sniff.py index 0cdb406..1fdac92 100755 --- a/cgi/sniff.py +++ b/cgi/sniff.py @@ -1,5 +1,29 @@ #!/usr/bin/python +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import os import sys import cgi diff --git a/googleclient.py b/googleclient.py index 490c67a..1454ce3 100644 --- a/googleclient.py +++ b/googleclient.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import sys import gdata.gauth diff --git a/group.py b/group.py index 7f99a66..f5c703e 100644 --- a/group.py +++ b/group.py @@ -1,3 +1,26 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" class Group(): diff --git a/reader.py b/reader.py index e4ed8d7..9d17c9a 100644 --- a/reader.py +++ b/reader.py @@ -1,5 +1,28 @@ -import time +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + +import time def get_token(number, timeout = 30): file = open('tokens') diff --git a/session.py b/session.py index 680425c..8ff488d 100644 --- a/session.py +++ b/session.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import utils import logging import urllib diff --git a/transwhat.py b/transwhat.py index b91ed58..9cda4d9 100755 --- a/transwhat.py +++ b/transwhat.py @@ -1,5 +1,29 @@ #!/usr/bin/python +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import argparse import logging import asyncore diff --git a/utils.py b/utils.py index 4f3b2f0..71d6f38 100644 --- a/utils.py +++ b/utils.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + import urllib import json import e4u diff --git a/whatsappbackend.py b/whatsappbackend.py index 0a87734..7b627ad 100644 --- a/whatsappbackend.py +++ b/whatsappbackend.py @@ -1,3 +1,27 @@ +__author__ = "Steffen Vogel" +__copyright__ = "Copyright 2013, Steffen Vogel" +__license__ = "GPLv3" +__maintainer__ = "Steffen Vogel" +__email__ = "post@steffenvogel.de" +__status__ = "Prototype" + +""" + This file is part of transWhat + + transWhat 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 + any later version. + + transwhat 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 transWhat. If not, see . +""" + from Spectrum2.backend import SpectrumBackend from Spectrum2 import protocol_pb2