Run update-copyright.py
authorW. Trevor King <wking@tremily.us>
Tue, 5 Feb 2013 20:41:01 +0000 (15:41 -0500)
committerW. Trevor King <wking@tremily.us>
Tue, 5 Feb 2013 20:41:01 +0000 (15:41 -0500)
12 files changed:
AUTHORS [new file with mode: 0644]
pq.py
quizzer/__init__.py
quizzer/answerdb.py
quizzer/cli.py
quizzer/error.py
quizzer/question.py
quizzer/quiz.py
quizzer/ui/__init__.py
quizzer/ui/cli.py
quizzer/util.py
setup.py

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..9b76567
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+quizzer was written by:
+W. Trevor King <wking@tremily.us>
diff --git a/pq.py b/pq.py
index d9fa51480c666611675052cd7933a111f1d8e6d8..5594572082685057e72a59eaa19bb4e6be0e8c66 100755 (executable)
--- a/pq.py
+++ b/pq.py
@@ -1,6 +1,20 @@
 #!/usr/bin/env python3.3
 #
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import quizzer.cli
 
index d388a77c9fc81ed23e611cff66b46c66b502e10e..6dded5d71b2041c37342b9652f441ef287d0c6a2 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 """Break learning up into small task-based tests for focused study
 """
index 7054057797607bb11ec5cc3f995b8eed2917da18..81af17c6effe09713648086c7b27ce1e4650a65a 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import codecs as _codecs
 import json as _json
index 419cce7e3fc55db4b183bcf1d5399e19f3fad477..d4454fbf325c124f4a1dc85fb9f2486d052baaf4 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import argparse as _argparse
 import locale as _locale
index 200951291743c0f214e5519bd8046732e3b92488..5b1204933821f01a54d652b8e6e72a95f3a2e0d1 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 class CommandError (RuntimeError):
     def __init__(self, arguments, stdin=None, stdout=None, stderr=None,
index 9970a2632eceb9efba2ccd175e09e1cae95e7637..8577b93aa610adec163b56bc5023998ee824f057 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import logging as _logging
 import os.path as _os_path
index 381e9c39b31a1833bbc864f368d187b16c940558..2ecf2ec23155f4abc973052b7dd275e0bc8be386 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import codecs as _codecs
 import json as _json
index e41e13639c02bdedf87411bbb753a4fc51d20aef..2352618cdc0f725fb98a53bf0202db87c538d5ef 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 from .. import answerdb as _answerdb
 
index 604d481b3e235097de2eb8f5dc7cfad2b9f4a579..009fae56cb839d8eb2620b18cb1523a26fe4dd4d 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 try:
     import readline as _readline
index 849891c04de15dd775334922e08f34875eb45362..d67bbaedf02f459f87668edf8945eaa169675a8e 100644 (file)
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 import subprocess as _subprocess
 
index aef66a00efff5ff940efd1d2527dece1efe00f62..1d8c4262f459e37c90380b0073c6c8f0df230ac7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,18 @@
-# Copyright
+# Copyright (C) 2013 W. Trevor King <wking@tremily.us>
+#
+# This file is part of quizzer.
+#
+# quizzer 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.
+#
+# quizzer 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
+# quizzer.  If not, see <http://www.gnu.org/licenses/>.
 
 "Break learning up into small task-based tests for focused study."