From 11b0addb3b3b9086034f0c68c9e3e3e1a220ef67 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 5 Feb 2013 15:41:01 -0500 Subject: [PATCH] Run update-copyright.py --- AUTHORS | 2 ++ pq.py | 16 +++++++++++++++- quizzer/__init__.py | 16 +++++++++++++++- quizzer/answerdb.py | 16 +++++++++++++++- quizzer/cli.py | 16 +++++++++++++++- quizzer/error.py | 16 +++++++++++++++- quizzer/question.py | 16 +++++++++++++++- quizzer/quiz.py | 16 +++++++++++++++- quizzer/ui/__init__.py | 16 +++++++++++++++- quizzer/ui/cli.py | 16 +++++++++++++++- quizzer/util.py | 16 +++++++++++++++- setup.py | 16 +++++++++++++++- 12 files changed, 167 insertions(+), 11 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..9b76567 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +quizzer was written by: +W. Trevor King diff --git a/pq.py b/pq.py index d9fa514..5594572 100755 --- a/pq.py +++ b/pq.py @@ -1,6 +1,20 @@ #!/usr/bin/env python3.3 # -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import quizzer.cli diff --git a/quizzer/__init__.py b/quizzer/__init__.py index d388a77..6dded5d 100644 --- a/quizzer/__init__.py +++ b/quizzer/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . """Break learning up into small task-based tests for focused study """ diff --git a/quizzer/answerdb.py b/quizzer/answerdb.py index 7054057..81af17c 100644 --- a/quizzer/answerdb.py +++ b/quizzer/answerdb.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import codecs as _codecs import json as _json diff --git a/quizzer/cli.py b/quizzer/cli.py index 419cce7..d4454fb 100644 --- a/quizzer/cli.py +++ b/quizzer/cli.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import argparse as _argparse import locale as _locale diff --git a/quizzer/error.py b/quizzer/error.py index 2009512..5b12049 100644 --- a/quizzer/error.py +++ b/quizzer/error.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . class CommandError (RuntimeError): def __init__(self, arguments, stdin=None, stdout=None, stderr=None, diff --git a/quizzer/question.py b/quizzer/question.py index 9970a26..8577b93 100644 --- a/quizzer/question.py +++ b/quizzer/question.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import logging as _logging import os.path as _os_path diff --git a/quizzer/quiz.py b/quizzer/quiz.py index 381e9c3..2ecf2ec 100644 --- a/quizzer/quiz.py +++ b/quizzer/quiz.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import codecs as _codecs import json as _json diff --git a/quizzer/ui/__init__.py b/quizzer/ui/__init__.py index e41e136..2352618 100644 --- a/quizzer/ui/__init__.py +++ b/quizzer/ui/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . from .. import answerdb as _answerdb diff --git a/quizzer/ui/cli.py b/quizzer/ui/cli.py index 604d481..009fae5 100644 --- a/quizzer/ui/cli.py +++ b/quizzer/ui/cli.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . try: import readline as _readline diff --git a/quizzer/util.py b/quizzer/util.py index 849891c..d67bbae 100644 --- a/quizzer/util.py +++ b/quizzer/util.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . import subprocess as _subprocess diff --git a/setup.py b/setup.py index aef66a0..1d8c426 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2013 W. Trevor King +# +# 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 . "Break learning up into small task-based tests for focused study." -- 2.26.2