From f3cc173e53106ba93c07ac4d3c813793d84b5e33 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 3 Jul 2013 13:31:30 -0400 Subject: [PATCH] Run update-copyright.py --- pycalendar/component/__init__.py | 16 +++++++++++++++- pycalendar/component/alarm.py | 16 +++++++++++++++- pycalendar/component/base.py | 16 +++++++++++++++- pycalendar/component/calendar.py | 16 +++++++++++++++- pycalendar/component/event.py | 16 +++++++++++++++- pycalendar/component/freebusy.py | 16 +++++++++++++++- pycalendar/component/journal.py | 16 +++++++++++++++- pycalendar/component/timezone.py | 16 +++++++++++++++- pycalendar/component/todo.py | 16 +++++++++++++++- pycalendar/dtype/__init__.py | 16 +++++++++++++++- pycalendar/dtype/base.py | 16 +++++++++++++++- pycalendar/dtype/date.py | 16 +++++++++++++++- pycalendar/dtype/datetime.py | 16 +++++++++++++++- pycalendar/dtype/geo.py | 16 +++++++++++++++- pycalendar/dtype/numeric.py | 16 +++++++++++++++- pycalendar/dtype/time.py | 16 +++++++++++++++- pycalendar/property/__init__.py | 16 +++++++++++++++- pycalendar/property/base.py | 16 +++++++++++++++- pycalendar/property/calendar.py | 16 +++++++++++++++- pycalendar/property/change.py | 16 +++++++++++++++- pycalendar/property/component.py | 16 +++++++++++++++- pycalendar/property/datetime.py | 16 +++++++++++++++- pycalendar/property/descriptive.py | 16 +++++++++++++++- pycalendar/property/relationship.py | 16 +++++++++++++++- pycalendar/unfold.py | 16 +++++++++++++++- 25 files changed, 375 insertions(+), 25 deletions(-) diff --git a/pycalendar/component/__init__.py b/pycalendar/component/__init__.py index c4ad542..3386c80 100644 --- a/pycalendar/component/__init__.py +++ b/pycalendar/component/__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 . """Classes representing calendar components diff --git a/pycalendar/component/alarm.py b/pycalendar/component/alarm.py index fec3ada..84e0bb2 100644 --- a/pycalendar/component/alarm.py +++ b/pycalendar/component/alarm.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 base as _base diff --git a/pycalendar/component/base.py b/pycalendar/component/base.py index 902ccd4..493a301 100644 --- a/pycalendar/component/base.py +++ b/pycalendar/component/base.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 io as _io import itertools as _itertools diff --git a/pycalendar/component/calendar.py b/pycalendar/component/calendar.py index 31c60b8..e200422 100644 --- a/pycalendar/component/calendar.py +++ b/pycalendar/component/calendar.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 base as _base diff --git a/pycalendar/component/event.py b/pycalendar/component/event.py index bf1c878..baab567 100644 --- a/pycalendar/component/event.py +++ b/pycalendar/component/event.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 base as _base diff --git a/pycalendar/component/freebusy.py b/pycalendar/component/freebusy.py index 428789f..314f275 100644 --- a/pycalendar/component/freebusy.py +++ b/pycalendar/component/freebusy.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 base as _base diff --git a/pycalendar/component/journal.py b/pycalendar/component/journal.py index 90d564b..95ef12c 100644 --- a/pycalendar/component/journal.py +++ b/pycalendar/component/journal.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 base as _base diff --git a/pycalendar/component/timezone.py b/pycalendar/component/timezone.py index ab445cd..1374fdb 100644 --- a/pycalendar/component/timezone.py +++ b/pycalendar/component/timezone.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 base as _base diff --git a/pycalendar/component/todo.py b/pycalendar/component/todo.py index 6f2b36c..0742d15 100644 --- a/pycalendar/component/todo.py +++ b/pycalendar/component/todo.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 base as _base diff --git a/pycalendar/dtype/__init__.py b/pycalendar/dtype/__init__.py index 83a8b86..f28e137 100644 --- a/pycalendar/dtype/__init__.py +++ b/pycalendar/dtype/__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 . """Classes for processing data types diff --git a/pycalendar/dtype/base.py b/pycalendar/dtype/base.py index a3a894f..a1cdc82 100644 --- a/pycalendar/dtype/base.py +++ b/pycalendar/dtype/base.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 . class DataType (object): diff --git a/pycalendar/dtype/date.py b/pycalendar/dtype/date.py index 8c28755..e35dcbe 100644 --- a/pycalendar/dtype/date.py +++ b/pycalendar/dtype/date.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 dates without times diff --git a/pycalendar/dtype/datetime.py b/pycalendar/dtype/datetime.py index 42b4934..6a86503 100644 --- a/pycalendar/dtype/datetime.py +++ b/pycalendar/dtype/datetime.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 dates with times diff --git a/pycalendar/dtype/geo.py b/pycalendar/dtype/geo.py index 4a7ac70..f106b11 100644 --- a/pycalendar/dtype/geo.py +++ b/pycalendar/dtype/geo.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 geographic position diff --git a/pycalendar/dtype/numeric.py b/pycalendar/dtype/numeric.py index 4574098..28c1421 100644 --- a/pycalendar/dtype/numeric.py +++ b/pycalendar/dtype/numeric.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 numeric types diff --git a/pycalendar/dtype/time.py b/pycalendar/dtype/time.py index f4c0178..5e8fe79 100644 --- a/pycalendar/dtype/time.py +++ b/pycalendar/dtype/time.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 times without dates diff --git a/pycalendar/property/__init__.py b/pycalendar/property/__init__.py index 23dbabb..6ad4488 100644 --- a/pycalendar/property/__init__.py +++ b/pycalendar/property/__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 . """Classes representing calendar properties diff --git a/pycalendar/property/base.py b/pycalendar/property/base.py index cc66bfb..ae25581 100644 --- a/pycalendar/property/base.py +++ b/pycalendar/property/base.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 io as _io import itertools as _itertools diff --git a/pycalendar/property/calendar.py b/pycalendar/property/calendar.py index c198599..e725300 100644 --- a/pycalendar/property/calendar.py +++ b/pycalendar/property/calendar.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 . """Classes representing calendar properties diff --git a/pycalendar/property/change.py b/pycalendar/property/change.py index 44067b5..ec6a9fc 100644 --- a/pycalendar/property/change.py +++ b/pycalendar/property/change.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 . """Classes representing change management properties diff --git a/pycalendar/property/component.py b/pycalendar/property/component.py index 9abb811..c588eba 100644 --- a/pycalendar/property/component.py +++ b/pycalendar/property/component.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 . """Classes representing calendar compenents diff --git a/pycalendar/property/datetime.py b/pycalendar/property/datetime.py index 04b36cb..90377f1 100644 --- a/pycalendar/property/datetime.py +++ b/pycalendar/property/datetime.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 . """Classes representing date and time properties diff --git a/pycalendar/property/descriptive.py b/pycalendar/property/descriptive.py index cfde2da..6a16d96 100644 --- a/pycalendar/property/descriptive.py +++ b/pycalendar/property/descriptive.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 . """Classes representing descriptive component properties diff --git a/pycalendar/property/relationship.py b/pycalendar/property/relationship.py index 3d51914..6b7553f 100644 --- a/pycalendar/property/relationship.py +++ b/pycalendar/property/relationship.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 . """Classes representing relationship properties diff --git a/pycalendar/unfold.py b/pycalendar/unfold.py index 4aa2943..6b389c3 100644 --- a/pycalendar/unfold.py +++ b/pycalendar/unfold.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 . def _remove_newline(line): for newline in ['\r\n', '\n']: -- 2.26.2