summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-16Form to add New Questionjayparikh111
2012-02-16Form to Add New Quizjayparikh111
2012-02-16The new html fileshardythe1
2012-02-15New views to manage/moderate Quizhardythe1
2012-02-07changes in question.htmlhardythe1
2012-02-06removed <html> & <body> tagshardythe1
2012-02-06Merge branch 'visual_changes' of github.com:hardythe1/online_test into ↵hardythe1
visual_changes
2012-02-06removed <html> & <body> tags from the formshardythe1
2012-02-02Updated Views.py, monitor.html and login.html with new changesjayparikh111
2012-02-02Updated user_data and grade_user forms (new UI)hardythe1
2012-02-01Merge branch 'visual_changes' of github.com:hardythe1/online_test into ↵jayparikh111
visual_changes
2012-02-01Updated Introduction form with new lookhardythe1
2012-02-01Updated html file with new lookjayparikh111
2012-01-31Updated forms.py to handle and exception when username or password fields ↵jayparikh111
are kept blank
2012-01-31Updated Question.html with new looksjayparikh111
2012-01-31Updated register.html with new lookjayparikh111
2012-01-31updated base.css (for the new look)Hardik Ghaghada
2012-01-31updated login form (new UI) with forgot password linkHardik Ghaghada
2012-01-31updated base.html (for new look)Hardik Ghaghada
2011-12-24Merge pull request #2 from parth115/masterPrabhu Ramachandran
Changed to Buildout
2011-12-23Removed PIL from buildout as it was not currently requiredparth
2011-12-23Made changes to README to include detailed instructions for mysql ↵parth
installation and URL_ROOT as per Prof. Prabhu Ramachandran's sugestions
2011-12-09made some modifications to the readme fileparth
2011-12-09made some modifications to the readme fileparth
2011-12-09made some modifications to the readme fileparth
2011-12-09made some modifications to the readme fileparth
2011-12-09made some modifications to the readme fileparth
2011-12-09made some modifications to the readme fileparth
2011-12-09Changed README.txt to README.rstparth
2011-12-09Modified the README.txt file to give information on buildoutparth
2011-12-09Added separate production.cfg and production.py files for easy developmentparth
2011-12-09Removed Werkzeugparth
2011-12-09Moved the README file to the root dirparth
2011-12-09Removed the apache directory as the wsgi script is automatically made by ↵parth
buildout in /bin/django.wsgi
2011-12-09modified the bootstrap to get the setup toolsparth
2011-12-09Modified the .gitignore to not track buildout filesparth
2011-12-09Added bootstrap and buildoutparth
2011-12-09Moved all the apps to testapp folderparth
2011-12-04The answer needs to be HTML escaped.Prabhu Ramachandran
2011-12-01Clean up question template and speed up monitorPrabhu Ramachandran
For a bash question we now put a #!/bin/bash at the top. We now use annotations to speed up the monitor page rendering rather than doing the sort in Python which ends up being inefficient due to the db calls. I get a roughly 5x improvement in speed.
2011-11-27BUG: Was not selecting QP for active Quiz.Prabhu Ramachandran
2011-11-26BUG: Encoding to ascii produces errors.Prabhu Ramachandran
Some users seem to submit unicode characters (bah!), this changeset deals with these gracefully.
2011-11-26BUG: Monitor was not showing sorted results.Prabhu Ramachandran
2011-11-26Fixing incorrect path.Prabhu Ramachandran
2011-11-26Updating README.Prabhu Ramachandran
2011-11-26Updating settings to add URL_ROOT for admin media.Prabhu Ramachandran
2011-11-26BUG: Fix bugs.Prabhu Ramachandran
If the user_dir was deleted, the script would fail. We now create the user_dir if it isn't there. If the bash script is not properly created you get other uncaught errors which were not reported. This is fixed and tested.
2011-11-25ENH: Fixing bash support, tests for code server.Prabhu Ramachandran
This checkin fixes bash support. In actuality the bash support lets one test any runnable script/program that outputs results to stdout. I've also added a decent test suite for the code server that checks if it functions correctly or not. I've also updated the sample_questions to work with the new bash support and added a reference bash script and the testcode to go with it.
2011-11-25ENH: Using south to enable easy db migrations.Prabhu Ramachandran
2011-11-25ENH: Adding support for Multiple Choice QuestionsPrabhu Ramachandran
Adds simple support for multiple choice questions that are also auto-checked. Many fixes to the templates and useful feature additions. This changes the database.