Age | Commit message (Collapse) | Author |
|
|
|
|
|
Filter fields for questions
|
|
|
|
|
|
|
|
- Add fixtures path to demo_settings
- Modify installer to include fixtures while creating proj
|
|
|
|
- Install script: Add code server launcher
- Add requirements.txt
- Edit README to fix changes/errors
- Remove jquery v1.11.3 and add v1.4.2
- Edit initial_data.json
|
|
Conflicts:
testapp/templates/demo_urls.py
|
|
- Add __init__.py
- Add templates dir to MANIFEST
- Add persistent store for project details
- Modify initial_data.json
- Fix imports
Conflicts:
testapp/templates/demo_settings.py
|
|
|
|
|
|
- Remove evaluators from evaluators dir
- Language IDs in forms has been fixed, all lower case
- Remove spoken-tutorial database from settings
|
|
- Submitted file path should be set after changing directory
- Change timeout duration in java test case
- Set shell=True in _compile_command
- Fix errors in code as per tests
|
|
- Update unanswered questions by model method not model field
- Validate unanswered question
|
|
- Remove Attempt later button on last question
- Improve mechanism for cycling through
- Add attempt summary on Quit or Completion
- Fix error paginator not displaying on error
|
|
|
|
|
|
|
|
- Submitted file path should be set after changing directory
- Change timeout duration in java test case
- Set shell=True in _compile_command
- Fix errors in code as per tests
|
|
|
|
|
|
|
|
- Change functions names in code_evaluator
|
|
|
|
|
|
- Rename files
- Create function for @classmethod call
- Fix current, add new testcases
- Fix views to fetch solution/ref_code_path fields in question post save
- Fix errors
|
|
- Add from_json classmethod
- Question language is passed directly to the code server
- Fix errors in evaluation of code
- Fix test cases
|
|
|
|
- Add subclasses for different languages
- Create seperate modules for different languages
- Dynamic selection of subclasses based on language used
- Add testcases
|
|
- Further commonify and simplify code_server, fix bugs
|
|
|
|
- make loop in consolidate_test_cases more readable
- split signal handler func definition into three seperate func
- pass seperate kwargs to TestCode class
- unpack json in CodeServer class and then pass to TestCode
|
|
- ref_code_path is now part of Question model
- MCQ/MCC answers checked using solution field in question model
- Formset should reload even after errors
- add_question page chould display solution field only in MCQ/MCC
|
|
- Commonify C, C++, Java and Scilab code evaluation
|
|
- Pass question and test case info as json string (info_parameter)
- Return success status and error message as a json string
- Embed user answer and question lang in info_parameter
- Commonify Python code evaluations and assertion test
- Deprecate individual function call based on language
|
|
|
|
|
|
Conflicts:
testapp/exam/admin.py
testapp/exam/models.py
testapp/exam/views.py
|
|
Conflicts:
testapp/exam/models.py
testapp/exam/views.py
|
|
User can resume the quiz from where the left, if time permits.
Useful where browser crashes or user by mistake closes the quiz.
Also, on refresh during the quiz will not throw error.
|
|
Added boolean field in Answer model to check whether the
answered is skipped or not.
|
|
|
|
|
|
|
|
|
|
Can have multiple attempts for a quiz.
Can also specify time lag between two successive attempts for a given
quiz.
Students can upload their code through the interface.
The code will be saved in the folder named after their roll number.
And the file name will be the question id.
|
|
If the question is skipped for the first time then a new object of the
answer is created, else the old skipped answer object is modified.
|
|
|