From 09bf6f517462446242dbc289c510a93efaaf6e4d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 2 Sep 2012 15:29:49 -0400 Subject: [PATCH] Ran update-copyright.py. --- bin/pg.py | 2 +- pygrader/__init__.py | 2 +- pygrader/color.py | 2 +- pygrader/email.py | 2 +- pygrader/extract_mime.py | 2 +- pygrader/handler/__init__.py | 16 +++++++++++++++- pygrader/handler/get.py | 16 +++++++++++++++- pygrader/handler/grade.py | 16 +++++++++++++++- pygrader/handler/submission.py | 16 +++++++++++++++- pygrader/mailpipe.py | 2 +- pygrader/model/__init__.py | 2 +- pygrader/model/assignment.py | 2 +- pygrader/model/course.py | 2 +- pygrader/model/grade.py | 2 +- pygrader/model/person.py | 2 +- pygrader/storage.py | 2 +- pygrader/tabulate.py | 2 +- pygrader/template.py | 2 +- pygrader/test/__init__.py | 16 +++++++++++++++- pygrader/test/client.py | 16 +++++++++++++++- pygrader/test/server.py | 16 +++++++++++++++- pygrader/todo.py | 2 +- 22 files changed, 120 insertions(+), 22 deletions(-) diff --git a/bin/pg.py b/bin/pg.py index da00e1f..17964c0 100755 --- a/bin/pg.py +++ b/bin/pg.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/__init__.py b/pygrader/__init__.py index a9322c3..33674e3 100644 --- a/pygrader/__init__.py +++ b/pygrader/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/color.py b/pygrader/color.py index 9c1873c..5c4d44a 100644 --- a/pygrader/color.py +++ b/pygrader/color.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/email.py b/pygrader/email.py index 4fbf70a..1d1d3c2 100644 --- a/pygrader/email.py +++ b/pygrader/email.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/extract_mime.py b/pygrader/extract_mime.py index a8c65ff..e1f897d 100644 --- a/pygrader/extract_mime.py +++ b/pygrader/extract_mime.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/handler/__init__.py b/pygrader/handler/__init__.py index 06edeca..48ea200 100644 --- a/pygrader/handler/__init__.py +++ b/pygrader/handler/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . "Define assorted handlers for use in :py:mod:`~pygrader.mailpipe`." diff --git a/pygrader/handler/get.py b/pygrader/handler/get.py index a94310f..8be5b81 100644 --- a/pygrader/handler/get.py +++ b/pygrader/handler/get.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . """Handle information requests diff --git a/pygrader/handler/grade.py b/pygrader/handler/grade.py index c6aa8ce..c803371 100644 --- a/pygrader/handler/grade.py +++ b/pygrader/handler/grade.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . """Handle grade assignment diff --git a/pygrader/handler/submission.py b/pygrader/handler/submission.py index f7bf78d..cbe0b40 100644 --- a/pygrader/handler/submission.py +++ b/pygrader/handler/submission.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . """Assignment submission handler diff --git a/pygrader/mailpipe.py b/pygrader/mailpipe.py index 4402fbf..48c724f 100644 --- a/pygrader/mailpipe.py +++ b/pygrader/mailpipe.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/model/__init__.py b/pygrader/model/__init__.py index 1a0d1f0..0af96d9 100644 --- a/pygrader/model/__init__.py +++ b/pygrader/model/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/model/assignment.py b/pygrader/model/assignment.py index 7a8e990..95f0ece 100644 --- a/pygrader/model/assignment.py +++ b/pygrader/model/assignment.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/model/course.py b/pygrader/model/course.py index 559be78..4ea3b55 100644 --- a/pygrader/model/course.py +++ b/pygrader/model/course.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/model/grade.py b/pygrader/model/grade.py index 284d9b7..e3d12e3 100644 --- a/pygrader/model/grade.py +++ b/pygrader/model/grade.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/model/person.py b/pygrader/model/person.py index 25e2758..f09d6b9 100644 --- a/pygrader/model/person.py +++ b/pygrader/model/person.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/storage.py b/pygrader/storage.py index 34af7dc..d5e2e38 100644 --- a/pygrader/storage.py +++ b/pygrader/storage.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/tabulate.py b/pygrader/tabulate.py index 0f86684..4e21279 100644 --- a/pygrader/tabulate.py +++ b/pygrader/tabulate.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/template.py b/pygrader/template.py index 32af165..a46f083 100644 --- a/pygrader/template.py +++ b/pygrader/template.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # diff --git a/pygrader/test/__init__.py b/pygrader/test/__init__.py index b98f164..0af96d9 100644 --- a/pygrader/test/__init__.py +++ b/pygrader/test/__init__.py @@ -1 +1,15 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . diff --git a/pygrader/test/client.py b/pygrader/test/client.py index 1432864..94d2783 100644 --- a/pygrader/test/client.py +++ b/pygrader/test/client.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . import asynchat as _asynchat import socket as _socket diff --git a/pygrader/test/server.py b/pygrader/test/server.py index 368aae5..a0c730f 100644 --- a/pygrader/test/server.py +++ b/pygrader/test/server.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pygrader. +# +# pygrader 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. +# +# pygrader 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 +# pygrader. If not, see . import asyncore as _asyncore import email as _email diff --git a/pygrader/todo.py b/pygrader/todo.py index 23404ea..4e9594b 100644 --- a/pygrader/todo.py +++ b/pygrader/todo.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # # This file is part of pygrader. # -- 2.26.2