summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-06-14 22:11:05 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-06-14 22:11:05 +0100
commitd9650dc2718723f43cc86e0a1192114976cc7429 (patch)
tree4d3f444900b6a263c4b5e5311332527220533f61
parent7a1ce51c3022337dd4b1f7ee25ff866f5be64ae1 (diff)
add copyright statements to all source files
cf issue #472
-rw-r--r--alot/account.py3
-rw-r--r--alot/addressbooks.py3
-rw-r--r--alot/buffers.py3
-rw-r--r--alot/commands/__init__.py3
-rw-r--r--alot/commands/bufferlist.py3
-rw-r--r--alot/commands/envelope.py3
-rw-r--r--alot/commands/globals.py3
-rw-r--r--alot/commands/search.py3
-rw-r--r--alot/commands/taglist.py3
-rw-r--r--alot/commands/thread.py3
-rw-r--r--alot/completion.py3
-rw-r--r--alot/crypto.py4
-rw-r--r--alot/db/__init__.py3
-rw-r--r--alot/db/attachment.py3
-rw-r--r--alot/db/envelope.py4
-rw-r--r--alot/db/errors.py3
-rw-r--r--alot/db/message.py3
-rw-r--r--alot/db/thread.py3
-rw-r--r--alot/db/utils.py3
-rw-r--r--alot/errors.py3
-rw-r--r--alot/helper.py4
-rwxr-xr-xalot/init.py3
-rw-r--r--alot/settings/__init__.py3
-rw-r--r--alot/settings/checks.py3
-rw-r--r--alot/settings/errors.py3
-rw-r--r--alot/settings/theme.py3
-rw-r--r--alot/settings/utils.py3
-rw-r--r--alot/ui.py3
-rw-r--r--alot/utils/booleanaction.py3
-rw-r--r--alot/walker.py3
-rw-r--r--alot/widgets.py3
31 files changed, 93 insertions, 3 deletions
diff --git a/alot/account.py b/alot/account.py
index 29ec768b..a08be7ec 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import mailbox
import logging
import time
diff --git a/alot/addressbooks.py b/alot/addressbooks.py
index 16818a39..00fe9fe7 100644
--- a/alot/addressbooks.py
+++ b/alot/addressbooks.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import re
import os
diff --git a/alot/buffers.py b/alot/buffers.py
index bb1cd156..47a745c1 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import urwid
from notmuch import NotmuchError
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index b65af5e3..53cc4cfd 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import re
import glob
diff --git a/alot/commands/bufferlist.py b/alot/commands/bufferlist.py
index 3edcb5c9..ba470fde 100644
--- a/alot/commands/bufferlist.py
+++ b/alot/commands/bufferlist.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from alot.commands import Command, registerCommand
import globals
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index 474eaa8c..58baaaed 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import argparse
import os
import re
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 0b7de121..30e49753 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import code
from twisted.internet import threads
diff --git a/alot/commands/search.py b/alot/commands/search.py
index 366a7f63..2b2a6c5e 100644
--- a/alot/commands/search.py
+++ b/alot/commands/search.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import argparse
import logging
diff --git a/alot/commands/taglist.py b/alot/commands/taglist.py
index 8700dc53..c21a7c6a 100644
--- a/alot/commands/taglist.py
+++ b/alot/commands/taglist.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from alot.commands import Command, registerCommand
from alot.commands.globals import SearchCommand
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 65089dc2..bea6991f 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import logging
import tempfile
diff --git a/alot/completion.py b/alot/completion.py
index 8c2407bb..a0a76a9b 100644
--- a/alot/completion.py
+++ b/alot/completion.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import re
import os
import glob
diff --git a/alot/crypto.py b/alot/crypto.py
index fecd2639..134aa597 100644
--- a/alot/crypto.py
+++ b/alot/crypto.py
@@ -1,4 +1,6 @@
-# vim:ts=4:sw=4:expandtab
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import re
from email.generator import Generator
diff --git a/alot/db/__init__.py b/alot/db/__init__.py
index 95d2b245..beb630d6 100644
--- a/alot/db/__init__.py
+++ b/alot/db/__init__.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from notmuch import Database, NotmuchError, XapianError
import notmuch
import multiprocessing
diff --git a/alot/db/attachment.py b/alot/db/attachment.py
index bbfb6d71..2083dedd 100644
--- a/alot/db/attachment.py
+++ b/alot/db/attachment.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import tempfile
import email.charset as charset
diff --git a/alot/db/envelope.py b/alot/db/envelope.py
index 3faea935..c95428ea 100644
--- a/alot/db/envelope.py
+++ b/alot/db/envelope.py
@@ -1,4 +1,6 @@
-# vim:ts=4:sw=4:expandtab
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import email
import re
diff --git a/alot/db/errors.py b/alot/db/errors.py
index eb1a56d7..904ddbad 100644
--- a/alot/db/errors.py
+++ b/alot/db/errors.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
class DatabaseError(Exception):
pass
diff --git a/alot/db/message.py b/alot/db/message.py
index ecd94277..35a36aa1 100644
--- a/alot/db/message.py
+++ b/alot/db/message.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import email
from datetime import datetime
import email.charset as charset
diff --git a/alot/db/thread.py b/alot/db/thread.py
index ee872c1f..8b49538d 100644
--- a/alot/db/thread.py
+++ b/alot/db/thread.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from datetime import datetime
from message import Message
diff --git a/alot/db/utils.py b/alot/db/utils.py
index 5ff02c5d..bda6d4be 100644
--- a/alot/db/utils.py
+++ b/alot/db/utils.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import email
import tempfile
diff --git a/alot/errors.py b/alot/errors.py
index 29283a45..00336fc8 100644
--- a/alot/errors.py
+++ b/alot/errors.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
class GPGProblem(Exception):
"""GPG Error"""
pass
diff --git a/alot/helper.py b/alot/helper.py
index f94e03f2..a30dffb1 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -1,4 +1,6 @@
-# coding=utf-8
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from datetime import timedelta
from datetime import datetime
from collections import deque
diff --git a/alot/init.py b/alot/init.py
index a9145de8..7bdfbf4c 100755
--- a/alot/init.py
+++ b/alot/init.py
@@ -1,4 +1,7 @@
#!/usr/bin/env python
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import sys
import logging
import os
diff --git a/alot/settings/__init__.py b/alot/settings/__init__.py
index 42f1a211..eaa8cd16 100644
--- a/alot/settings/__init__.py
+++ b/alot/settings/__init__.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import imp
import os
import re
diff --git a/alot/settings/checks.py b/alot/settings/checks.py
index 1f9cfdd2..eab1253d 100644
--- a/alot/settings/checks.py
+++ b/alot/settings/checks.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import mailbox
import re
from urlparse import urlparse
diff --git a/alot/settings/errors.py b/alot/settings/errors.py
index 7c6d0553..9095e897 100644
--- a/alot/settings/errors.py
+++ b/alot/settings/errors.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
class ConfigError(Exception):
"""could not parse user config"""
pass
diff --git a/alot/settings/theme.py b/alot/settings/theme.py
index b894c1e1..c6c36708 100644
--- a/alot/settings/theme.py
+++ b/alot/settings/theme.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
from urwid import AttrSpec, AttrSpecError
diff --git a/alot/settings/utils.py b/alot/settings/utils.py
index 613ece17..6667fa67 100644
--- a/alot/settings/utils.py
+++ b/alot/settings/utils.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from configobj import ConfigObj, ConfigObjError, flatten_errors
from validate import Validator
from errors import ConfigError
diff --git a/alot/ui.py b/alot/ui.py
index 9e898cc3..7c64ae3b 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import urwid
import logging
from twisted.internet import reactor, defer
diff --git a/alot/utils/booleanaction.py b/alot/utils/booleanaction.py
index dde56f3a..9a8e8792 100644
--- a/alot/utils/booleanaction.py
+++ b/alot/utils/booleanaction.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
"""
This defines the ConfigureAction for argparse found here:
http://code.google.com/p/argparse/issues/detail?id=2#c6
diff --git a/alot/walker.py b/alot/walker.py
index 516ec7a7..a9306bb8 100644
--- a/alot/walker.py
+++ b/alot/walker.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import urwid
import logging
diff --git a/alot/widgets.py b/alot/widgets.py
index 0667e0ce..e084d0bf 100644
--- a/alot/widgets.py
+++ b/alot/widgets.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import urwid
import logging