From: W. Trevor King Date: Tue, 13 Nov 2012 15:15:47 +0000 (-0500) Subject: Run update-copyright.py X-Git-Tag: v3.0~60 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=11efd97dcd007c659addbec1c4343e7b92497552;p=rss2email.git Run update-copyright.py --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..3d1861c --- /dev/null +++ b/AUTHORS @@ -0,0 +1,12 @@ +rss2email was written by: +Aaron Swartz +Brian Lalor +Dean Jackson +Eelis van der Weegen +Erik Hetzner +Joey Hess +Lindsey Smith +Marcel Ackermann +Martin 'Joey' Schulze +Matej Cepl +W. Trevor King diff --git a/rss2email/__init__.py b/rss2email/__init__.py index 67e7968..b1eaad3 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """rss2email: get RSS feeds emailed to you """ diff --git a/rss2email/command.py b/rss2email/command.py index 2acade6..42f06c0 100644 --- a/rss2email/command.py +++ b/rss2email/command.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """rss2email commands """ diff --git a/rss2email/config.py b/rss2email/config.py index 8b760ba..14df8e5 100644 --- a/rss2email/config.py +++ b/rss2email/config.py @@ -1,4 +1,27 @@ -# Copyright +# Copyright (C) 2004-2012 Aaron Swartz +# Brian Lalor +# Dean Jackson +# Erik Hetzner +# Joey Hess +# Lindsey Smith +# Marcel Ackermann +# Martin 'Joey' Schulze +# Matej Cepl +# W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Per-user rss2email configuration """ diff --git a/rss2email/email.py b/rss2email/email.py index 762367d..446c72a 100644 --- a/rss2email/email.py +++ b/rss2email/email.py @@ -1,6 +1,20 @@ # -*- encoding: utf-8 -*- # -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Email message generation and dispatching """ diff --git a/rss2email/error.py b/rss2email/error.py index f74481f..d4c990e 100644 --- a/rss2email/error.py +++ b/rss2email/error.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """rss2email-specific errors """ diff --git a/rss2email/feed.py b/rss2email/feed.py index e231c5d..69c3db5 100644 --- a/rss2email/feed.py +++ b/rss2email/feed.py @@ -1,4 +1,27 @@ -# Copyright +# Copyright (C) 2004-2012 Aaron Swartz +# Brian Lalor +# Dean Jackson +# Erik Hetzner +# Joey Hess +# Lindsey Smith +# Marcel Ackermann +# Martin 'Joey' Schulze +# Matej Cepl +# W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Define the ``Feed`` class for handling a single feed """ diff --git a/rss2email/feeds.py b/rss2email/feeds.py index a910173..c4acdaf 100644 --- a/rss2email/feeds.py +++ b/rss2email/feeds.py @@ -1,4 +1,27 @@ -# Copyright +# Copyright (C) 2004-2012 Aaron Swartz +# Brian Lalor +# Dean Jackson +# Erik Hetzner +# Joey Hess +# Lindsey Smith +# Marcel Ackermann +# Martin 'Joey' Schulze +# Matej Cepl +# W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Define the ``Feed`` class for handling a list of feeds """ diff --git a/rss2email/util.py b/rss2email/util.py index ae64cf7..c0aa9ad 100644 --- a/rss2email/util.py +++ b/rss2email/util.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . """Odds and ends """ diff --git a/setup.py b/setup.py index 03d3976..119e9b0 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,19 @@ +# Copyright (C) 2012 W. Trevor King +# +# This file is part of rss2email. +# +# rss2email 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 2 of the License, or (at your option) version 3 of +# the License. +# +# rss2email 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 +# rss2email. If not, see . + "A python script that converts RSS/Atom newsfeeds to email" import codecs as _codecs