Ran update-copyright.py.
authorW. Trevor King <wking@tremily.us>
Sun, 2 Sep 2012 19:29:49 +0000 (15:29 -0400)
committerW. Trevor King <wking@tremily.us>
Sun, 2 Sep 2012 19:29:49 +0000 (15:29 -0400)
22 files changed:
bin/pg.py
pygrader/__init__.py
pygrader/color.py
pygrader/email.py
pygrader/extract_mime.py
pygrader/handler/__init__.py
pygrader/handler/get.py
pygrader/handler/grade.py
pygrader/handler/submission.py
pygrader/mailpipe.py
pygrader/model/__init__.py
pygrader/model/assignment.py
pygrader/model/course.py
pygrader/model/grade.py
pygrader/model/person.py
pygrader/storage.py
pygrader/tabulate.py
pygrader/template.py
pygrader/test/__init__.py
pygrader/test/client.py
pygrader/test/server.py
pygrader/todo.py

index da00e1fc69619055af366b085aee723c758b726b..17964c0ef8f8e9f9f0526cff3eb545832dcb1edf 100755 (executable)
--- a/bin/pg.py
+++ b/bin/pg.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index a9322c35fbb7ef1ab24031d929612c1f03661e8e..33674e32da522dfaa10b56d90d12b34044881f6c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 9c1873cbb60b9bcfb5a0aab5426e98040cce5cc6..5c4d44a006d861588f31b75ccd633a68f585b0c3 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 4fbf70a33f955315e150266df398b0a51a291069..1d1d3c2ca2c472a1246af6585abbadf3c64b58be 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index a8c65fff85496c8cab7bbfd385f7ce23c028c2ea..e1f897de5c4693767a17811edd4f34eb4db52dfb 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 06edeca117ebfc33efb884166d1d08c2c1d59744..48ea2005650913685f5145ec8754880b58228d9f 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 "Define assorted handlers for use in :py:mod:`~pygrader.mailpipe`."
 
index a94310f5249df1ffd8680b81026e7b8630f2fbd4..8be5b819692186749dca4746b50c81cafbbdc5ec 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 """Handle information requests
 
index c6aa8ce4a9ac7029d3fb7a2d017e503ff4a11084..c803371231c0b92c9a6f6cc1bc2d84c5e09bcd2a 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 """Handle grade assignment
 
index f7bf78d4e854c5875b75e0b0c381f101c8554bff..cbe0b40b4000e8347e971296e0322f6c33b00b5e 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 """Assignment submission handler
 
index 4402fbf55d617825006bfa59fc3b7d3f5b7e7b20..48c724f1287afce2d7e5de22a2a3561fb507b8c3 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 1a0d1f0a2a4653782fc75544bd1809f9ebb0e1f3..0af96d9bc8d7454d3300a93cc21b79b60c804667 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 7a8e990ccca82d8cb78453f12dd8b690a1e199cc..95f0ece59b4968d0b8eb80c12f8f835f5e271f2f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 559be78aa4fd4caaa3da5a69435a21baeeb413e3..4ea3b555b366c2459cbc96cdf44bdfb2fd35a6f2 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 284d9b7ce00477aef6e6af9efcb97aabbb652c40..e3d12e37c6a66ff2cf8cfefee8ff3350129eb8f0 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 25e275871b17c9e4ca7a118ec9a62745c6877b4b..f09d6b95b686de02c62041777d2a27ee6a3ebb36 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 34af7dcf08e7d43c35a4797ec08bccc84e3931ab..d5e2e38bf941c64c78a94e1f69a422b759cb586e 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 0f86684df737cb0b2888890229b99970bab888b6..4e212797dc2b4ace5a7f498b3752e70665bf8dcf 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index 32af165cf65e3744d62bae452864668ea20f5533..a46f083a51ed4defd9a0f749dc0a869f024bbbce 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
index b98f1648fbd537dcaaf3dc1283834dea4e906f4b..0af96d9bc8d7454d3300a93cc21b79b60c804667 100644 (file)
@@ -1 +1,15 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
index 143286459986becf247903e54a793f2f1b2f22b9..94d27833e363b40688c01a7802f44d432366e44a 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 import asynchat as _asynchat
 import socket as _socket
index 368aae548d466063c75071531de6690844969c0e..a0c730f7c31eff2ec87b2143b8d78262a00518c3 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
+#
+# 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 <http://www.gnu.org/licenses/>.
 
 import asyncore as _asyncore
 import email as _email
index 23404eaead54cc19e945ac91bdcb17250c3efbe3..4e9594bb08d8b15adc660c3f0959bcbb02509286 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #