From: W. Trevor King Date: Sun, 30 Jun 2013 20:36:01 +0000 (-0400) Subject: Run update-copyright.py X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=36813e4;p=pycalendar.git Run update-copyright.py --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..ea6ed71 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +pycalender was written by: +W. Trevor King diff --git a/pycalendar/__init__.py b/pycalendar/__init__.py index 01eeb01..297ee41 100644 --- a/pycalendar/__init__.py +++ b/pycalendar/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . import logging as _logging diff --git a/pycalendar/aggregator.py b/pycalendar/aggregator.py index 8c20cc9..5da03b8 100644 --- a/pycalendar/aggregator.py +++ b/pycalendar/aggregator.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . from . import text as _text diff --git a/pycalendar/entry.py b/pycalendar/entry.py index f065037..3c1af0e 100644 --- a/pycalendar/entry.py +++ b/pycalendar/entry.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . import logging as _logging diff --git a/pycalendar/feed.py b/pycalendar/feed.py index 64dc452..d431c44 100644 --- a/pycalendar/feed.py +++ b/pycalendar/feed.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . import logging as _logging import urllib.request as _urllib_request diff --git a/pycalendar/text.py b/pycalendar/text.py index 879c6ef..b04ffe2 100644 --- a/pycalendar/text.py +++ b/pycalendar/text.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . """Functions for processing text diff --git a/setup.py b/setup.py index 2fefc44..f7a820f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . "Flexible aggregation for iCalendar feeds (RFC 5545)" diff --git a/test/aggregate.py b/test/aggregate.py index f37c458..be97980 100755 --- a/test/aggregate.py +++ b/test/aggregate.py @@ -1,6 +1,20 @@ #!/usr/bin/env python # -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# This file is part of pycalender. +# +# pycalender 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. +# +# pycalender 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 +# pycalender. If not, see . """An example aggregation script