diff options
-rw-r--r-- | testapp/README.txt (renamed from README.txt) | 0 | ||||
-rw-r--r-- | testapp/__init__.py (renamed from __init__.py) | 0 | ||||
-rw-r--r-- | testapp/apache/django.wsgi (renamed from apache/django.wsgi) | 0 | ||||
-rwxr-xr-x | testapp/code_server.py (renamed from code_server.py) | 0 | ||||
-rw-r--r-- | testapp/docs/sample.args (renamed from docs/sample.args) | 0 | ||||
-rwxr-xr-x | testapp/docs/sample.sh (renamed from docs/sample.sh) | 0 | ||||
-rw-r--r-- | testapp/docs/sample_questions.py (renamed from docs/sample_questions.py) | 0 | ||||
-rw-r--r-- | testapp/docs/sample_questions.xml (renamed from docs/sample_questions.xml) | 0 | ||||
-rw-r--r-- | testapp/exam/__init__.py (renamed from exam/__init__.py) | 0 | ||||
-rw-r--r-- | testapp/exam/admin.py (renamed from exam/admin.py) | 0 | ||||
-rw-r--r-- | testapp/exam/forms.py (renamed from exam/forms.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/__init__.py (renamed from exam/management/__init__.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/commands/__init__.py (renamed from exam/management/commands/__init__.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/commands/dump_user_data.py (renamed from exam/management/commands/dump_user_data.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/commands/load_exam.py (renamed from exam/management/commands/load_exam.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/commands/load_questions_xml.py (renamed from exam/management/commands/load_questions_xml.py) | 0 | ||||
-rw-r--r-- | testapp/exam/management/commands/results2csv.py (renamed from exam/management/commands/results2csv.py) | 0 | ||||
-rw-r--r-- | testapp/exam/migrations/0001_initial.py (renamed from exam/migrations/0001_initial.py) | 0 | ||||
-rw-r--r-- | testapp/exam/migrations/__init__.py (renamed from exam/migrations/__init__.py) | 0 | ||||
-rw-r--r-- | testapp/exam/models.py (renamed from exam/models.py) | 0 | ||||
-rw-r--r-- | testapp/exam/tests.py (renamed from exam/tests.py) | 0 | ||||
-rw-r--r-- | testapp/exam/urls.py (renamed from exam/urls.py) | 0 | ||||
-rw-r--r-- | testapp/exam/views.py (renamed from exam/views.py) | 0 | ||||
-rw-r--r-- | testapp/exam/xmlrpc_clients.py (renamed from exam/xmlrpc_clients.py) | 0 | ||||
-rwxr-xr-x | testapp/manage.py (renamed from manage.py) | 0 | ||||
-rw-r--r-- | testapp/output/README.txt (renamed from output/README.txt) | 0 | ||||
-rw-r--r-- | testapp/settings.py (renamed from settings.py) | 0 | ||||
-rw-r--r-- | testapp/static/exam/css/base.css (renamed from static/exam/css/base.css) | 0 | ||||
-rw-r--r-- | testapp/templates/404.html (renamed from templates/404.html) | 0 | ||||
-rw-r--r-- | testapp/templates/500.html (renamed from templates/500.html) | 0 | ||||
-rw-r--r-- | testapp/templates/base.html (renamed from templates/base.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/complete.html (renamed from templates/exam/complete.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/grade_user.html (renamed from templates/exam/grade_user.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/intro.html (renamed from templates/exam/intro.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/login.html (renamed from templates/exam/login.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/monitor.html (renamed from templates/exam/monitor.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/question.html (renamed from templates/exam/question.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/quit.html (renamed from templates/exam/quit.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/register.html (renamed from templates/exam/register.html) | 0 | ||||
-rw-r--r-- | testapp/templates/exam/user_data.html (renamed from templates/exam/user_data.html) | 0 | ||||
-rw-r--r-- | testapp/test_server.py (renamed from test_server.py) | 0 | ||||
-rw-r--r-- | testapp/urls.py (renamed from urls.py) | 0 |
42 files changed, 0 insertions, 0 deletions
diff --git a/README.txt b/testapp/README.txt index a265675..a265675 100644 --- a/README.txt +++ b/testapp/README.txt diff --git a/__init__.py b/testapp/__init__.py index e69de29..e69de29 100644 --- a/__init__.py +++ b/testapp/__init__.py diff --git a/apache/django.wsgi b/testapp/apache/django.wsgi index ef88526..ef88526 100644 --- a/apache/django.wsgi +++ b/testapp/apache/django.wsgi diff --git a/code_server.py b/testapp/code_server.py index 1276c76..1276c76 100755 --- a/code_server.py +++ b/testapp/code_server.py diff --git a/docs/sample.args b/testapp/docs/sample.args index 4d9f00d..4d9f00d 100644 --- a/docs/sample.args +++ b/testapp/docs/sample.args diff --git a/docs/sample.sh b/testapp/docs/sample.sh index e935cb3..e935cb3 100755 --- a/docs/sample.sh +++ b/testapp/docs/sample.sh diff --git a/docs/sample_questions.py b/testapp/docs/sample_questions.py index aa7f239..aa7f239 100644 --- a/docs/sample_questions.py +++ b/testapp/docs/sample_questions.py diff --git a/docs/sample_questions.xml b/testapp/docs/sample_questions.xml index 53c76f8..53c76f8 100644 --- a/docs/sample_questions.xml +++ b/testapp/docs/sample_questions.xml diff --git a/exam/__init__.py b/testapp/exam/__init__.py index e69de29..e69de29 100644 --- a/exam/__init__.py +++ b/testapp/exam/__init__.py diff --git a/exam/admin.py b/testapp/exam/admin.py index 8482ef9..8482ef9 100644 --- a/exam/admin.py +++ b/testapp/exam/admin.py diff --git a/exam/forms.py b/testapp/exam/forms.py index a5ca26f..a5ca26f 100644 --- a/exam/forms.py +++ b/testapp/exam/forms.py diff --git a/exam/management/__init__.py b/testapp/exam/management/__init__.py index e69de29..e69de29 100644 --- a/exam/management/__init__.py +++ b/testapp/exam/management/__init__.py diff --git a/exam/management/commands/__init__.py b/testapp/exam/management/commands/__init__.py index e69de29..e69de29 100644 --- a/exam/management/commands/__init__.py +++ b/testapp/exam/management/commands/__init__.py diff --git a/exam/management/commands/dump_user_data.py b/testapp/exam/management/commands/dump_user_data.py index ec016bb..ec016bb 100644 --- a/exam/management/commands/dump_user_data.py +++ b/testapp/exam/management/commands/dump_user_data.py diff --git a/exam/management/commands/load_exam.py b/testapp/exam/management/commands/load_exam.py index 3f247a1..3f247a1 100644 --- a/exam/management/commands/load_exam.py +++ b/testapp/exam/management/commands/load_exam.py diff --git a/exam/management/commands/load_questions_xml.py b/testapp/exam/management/commands/load_questions_xml.py index 8bc2701..8bc2701 100644 --- a/exam/management/commands/load_questions_xml.py +++ b/testapp/exam/management/commands/load_questions_xml.py diff --git a/exam/management/commands/results2csv.py b/testapp/exam/management/commands/results2csv.py index 2993745..2993745 100644 --- a/exam/management/commands/results2csv.py +++ b/testapp/exam/management/commands/results2csv.py diff --git a/exam/migrations/0001_initial.py b/testapp/exam/migrations/0001_initial.py index 49048cc..49048cc 100644 --- a/exam/migrations/0001_initial.py +++ b/testapp/exam/migrations/0001_initial.py diff --git a/exam/migrations/__init__.py b/testapp/exam/migrations/__init__.py index e69de29..e69de29 100644 --- a/exam/migrations/__init__.py +++ b/testapp/exam/migrations/__init__.py diff --git a/exam/models.py b/testapp/exam/models.py index 717e02e..717e02e 100644 --- a/exam/models.py +++ b/testapp/exam/models.py diff --git a/exam/tests.py b/testapp/exam/tests.py index 501deb7..501deb7 100644 --- a/exam/tests.py +++ b/testapp/exam/tests.py diff --git a/exam/urls.py b/testapp/exam/urls.py index 34e329f..34e329f 100644 --- a/exam/urls.py +++ b/testapp/exam/urls.py diff --git a/exam/views.py b/testapp/exam/views.py index c178a0b..c178a0b 100644 --- a/exam/views.py +++ b/testapp/exam/views.py diff --git a/exam/xmlrpc_clients.py b/testapp/exam/xmlrpc_clients.py index 817e37d..817e37d 100644 --- a/exam/xmlrpc_clients.py +++ b/testapp/exam/xmlrpc_clients.py diff --git a/manage.py b/testapp/manage.py index 3e4eedc..3e4eedc 100755 --- a/manage.py +++ b/testapp/manage.py diff --git a/output/README.txt b/testapp/output/README.txt index 3163ed4..3163ed4 100644 --- a/output/README.txt +++ b/testapp/output/README.txt diff --git a/settings.py b/testapp/settings.py index f1c48b9..f1c48b9 100644 --- a/settings.py +++ b/testapp/settings.py diff --git a/static/exam/css/base.css b/testapp/static/exam/css/base.css index 1323116..1323116 100644 --- a/static/exam/css/base.css +++ b/testapp/static/exam/css/base.css diff --git a/templates/404.html b/testapp/templates/404.html index 7d33dd3..7d33dd3 100644 --- a/templates/404.html +++ b/testapp/templates/404.html diff --git a/templates/500.html b/testapp/templates/500.html index d02721f..d02721f 100644 --- a/templates/500.html +++ b/testapp/templates/500.html diff --git a/templates/base.html b/testapp/templates/base.html index c2bbabb..c2bbabb 100644 --- a/templates/base.html +++ b/testapp/templates/base.html diff --git a/templates/exam/complete.html b/testapp/templates/exam/complete.html index 4c3f3d5..4c3f3d5 100644 --- a/templates/exam/complete.html +++ b/testapp/templates/exam/complete.html diff --git a/templates/exam/grade_user.html b/testapp/templates/exam/grade_user.html index 75ed2e0..75ed2e0 100644 --- a/templates/exam/grade_user.html +++ b/testapp/templates/exam/grade_user.html diff --git a/templates/exam/intro.html b/testapp/templates/exam/intro.html index 1d3e5de..1d3e5de 100644 --- a/templates/exam/intro.html +++ b/testapp/templates/exam/intro.html diff --git a/templates/exam/login.html b/testapp/templates/exam/login.html index 8e6352e..8e6352e 100644 --- a/templates/exam/login.html +++ b/testapp/templates/exam/login.html diff --git a/templates/exam/monitor.html b/testapp/templates/exam/monitor.html index fb6cb58..fb6cb58 100644 --- a/templates/exam/monitor.html +++ b/testapp/templates/exam/monitor.html diff --git a/templates/exam/question.html b/testapp/templates/exam/question.html index 8b589b6..8b589b6 100644 --- a/templates/exam/question.html +++ b/testapp/templates/exam/question.html diff --git a/templates/exam/quit.html b/testapp/templates/exam/quit.html index 37b5c08..37b5c08 100644 --- a/templates/exam/quit.html +++ b/testapp/templates/exam/quit.html diff --git a/templates/exam/register.html b/testapp/templates/exam/register.html index 921e7b5..921e7b5 100644 --- a/templates/exam/register.html +++ b/testapp/templates/exam/register.html diff --git a/templates/exam/user_data.html b/testapp/templates/exam/user_data.html index 9fb442a..9fb442a 100644 --- a/templates/exam/user_data.html +++ b/testapp/templates/exam/user_data.html diff --git a/test_server.py b/testapp/test_server.py index be9f876..be9f876 100644 --- a/test_server.py +++ b/testapp/test_server.py diff --git a/urls.py b/testapp/urls.py index d956bfc..d956bfc 100644 --- a/urls.py +++ b/testapp/urls.py |