My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Older

  • May 14, 2009
    issue 10 (Provide labels for radio button inputs) reported by brianegge   -   This patch allows one to click on the text instead of the radio button itself. http://www.w3.org/TR/WCAG20-TECHS/H44.html Index: templates/selectquizzes.html =================================================================== --- templates/selectquizzes.html (revision 34) +++ templates/selectquizzes.html (working copy) @@ -20,7 +20,7 @@ {% for quiz in quizzes %} <tr {% if forloop.counter|divisibleby:2 %}class="evenrow"{% endif %}> - <td><input type="radio" name="quiz" value="{{ quiz.key }}"> {{ quiz.title|escape }}</input></td> + <td><input type="radio" name="quiz" id="{{ quiz.key }}" value="{{ quiz.key }}"><label for="{{ quiz.key }}"> {{ quiz.title|escape }} </label></input></td> <td>{{ quiz.public|yesno:"Public,Private" }}</td> </tr> {% endfor %} @@ -38,4 +38,4 @@ <br> </div> </body> -</html> \ No newline at end of file +</html>
    This patch allows one to click on the text instead of the radio button itself. http://www.w3.org/TR/WCAG20-TECHS/H44.html Index: templates/selectquizzes.html =================================================================== --- templates/selectquizzes.html (revision 34) +++ templates/selectquizzes.html (working copy) @@ -20,7 +20,7 @@ {% for quiz in quizzes %} <tr {% if forloop.counter|divisibleby:2 %}class="evenrow"{% endif %}> - <td><input type="radio" name="quiz" value="{{ quiz.key }}"> {{ quiz.title|escape }}</input></td> + <td><input type="radio" name="quiz" id="{{ quiz.key }}" value="{{ quiz.key }}"><label for="{{ quiz.key }}"> {{ quiz.title|escape }} </label></input></td> <td>{{ quiz.public|yesno:"Public,Private" }}</td> </tr> {% endfor %} @@ -38,4 +38,4 @@ <br> </div> </body> -</html> \ No newline at end of file +</html>
  • May 14, 2009
    issue 7 (Allow public contributions to quizes) commented on by brianegge   -   For now, it's possible for other users to create their own quiz, and then to copy the questions. Unfortunately, copying only allows one question at a time to be copied.
    For now, it's possible for other users to create their own quiz, and then to copy the questions. Unfortunately, copying only allows one question at a time to be copied.
  • May 14, 2009
    issue 9 (Allow regular expressions and case insensitiveanswers for fi...) reported by brianegge   -   Case insensitive should be default. I'm not sure of very many fill-in-the-blank questions where case would be important. Regular expressions would allow for optional words and letters. Examples: (The)? Melbourne Cup Festival(s)?
    Case insensitive should be default. I'm not sure of very many fill-in-the-blank questions where case would be important. Regular expressions would allow for optional words and letters. Examples: (The)? Melbourne Cup Festival(s)?
  • May 14, 2009
    issue 8 (Timeout when adding question) reported by brianegge   -   This might not reproduce, but when adding a response, I received the following error: Traceback (most recent call last): File "/base/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 501, in __call__ handler.get(*groups) File "/base/data/home/apps/quizlink/1.330573864622886673/quizlink.py", line 135, in get self.response.out.write(template.render(path, template_values)) File "/base/python_lib/versions/1/google/appengine/ext/webapp/template.py", line 81, in render return t.render(Context(template_dict)) File "/base/python_lib/versions/1/google/appengine/ext/webapp/template.py", line 121, in wrap_render return orig_render(context) File "/base/python_lib/versions/1/django/template/__init__.py", line 168, in render return self.nodelist.render(context) File "/base/python_lib/versions/1/django/template/__init__.py", line 705, in render bits.append(self.render_node(node, context)) File "/base/python_lib/versions/1/django/template/__init__.py", line 718, in render_node return(node.render(context)) File "/base/python_lib/versions/1/django/template/defaulttags.py", line 99, in render values = list(values) File "/base/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 1372, in __iter__ return self.run() File "/base/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 1360, in run iterator = self._get_query().Run() File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 886, in Run return self._Run() File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 908, in _Run _ToDatastoreError(err) File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 2020, in _ToDatastoreError raise errors[err.application_error](err.error_detail) Timeout: datastore timeout: operation took too long.
    This might not reproduce, but when adding a response, I received the following error: Traceback (most recent call last): File "/base/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 501, in __call__ handler.get(*groups) File "/base/data/home/apps/quizlink/1.330573864622886673/quizlink.py", line 135, in get self.response.out.write(template.render(path, template_values)) File "/base/python_lib/versions/1/google/appengine/ext/webapp/template.py", line 81, in render return t.render(Context(template_dict)) File "/base/python_lib/versions/1/google/appengine/ext/webapp/template.py", line 121, in wrap_render return orig_render(context) File "/base/python_lib/versions/1/django/template/__init__.py", line 168, in render return self.nodelist.render(context) File "/base/python_lib/versions/1/django/template/__init__.py", line 705, in render bits.append(self.render_node(node, context)) File "/base/python_lib/versions/1/django/template/__init__.py", line 718, in render_node return(node.render(context)) File "/base/python_lib/versions/1/django/template/defaulttags.py", line 99, in render values = list(values) File "/base/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 1372, in __iter__ return self.run() File "/base/python_lib/versions/1/google/appengine/ext/db/__init__.py", line 1360, in run iterator = self._get_query().Run() File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 886, in Run return self._Run() File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 908, in _Run _ToDatastoreError(err) File "/base/python_lib/versions/1/google/appengine/api/datastore.py", line 2020, in _ToDatastoreError raise errors[err.application_error](err.error_detail) Timeout: datastore timeout: operation took too long.
  • May 14, 2009
    issue 7 (Allow public contributions to quizes) reported by brianegge   -   After a quiz is created, an option should be created to allow other users to add questions to the quiz.
    After a quiz is created, an option should be created to allow other users to add questions to the quiz.
  • Apr 21, 2009
    issue 6 (Ability to have a category-list of all quizzes) commented on by kambiz   -   I mis-typed this as a defect... which it is not.
    I mis-typed this as a defect... which it is not.
  • Apr 21, 2009
    issue 6 (Ability to have a category-list of all quizzes) reported by kambiz   -   I would like to see a sub-directory listing of all quizzes in a given category. I've tried to develop this myself, however am running into problems returning all quizzes within a queried category. Any ideas?
    I would like to see a sub-directory listing of all quizzes in a given category. I've tried to develop this myself, however am running into problems returning all quizzes within a queried category. Any ideas?
  • Apr 21, 2009
    issue 5 (Allow non-authenticated users to take public quizzes) commented on by kambiz   -   I would like to see this feature, Marc
    I would like to see this feature, Marc
  • Jan 08, 2009
    r34 (Added quiz taken count to main page) committed by marclitchfield   -   Added quiz taken count to main page
    Added quiz taken count to main page
  • Jan 08, 2009
    r33 (Fixed category display bug) committed by marclitchfield   -   Fixed category display bug
    Fixed category display bug
  • Dec 31, 2008
    r32 (Added search) committed by marclitchfield   -   Added search
    Added search
  • Dec 31, 2008
    r31 (Added navbar. Restructured front end a bit. Still ugly, but ...) committed by marclitchfield   -   Added navbar. Restructured front end a bit. Still ugly, but functional.
    Added navbar. Restructured front end a bit. Still ugly, but functional.
  • Dec 30, 2008
    r30 (Added categorize feature. Only supports one level of categor...) committed by marclitchfield   -   Added categorize feature. Only supports one level of categorization right now--not quite ready for prime time.
    Added categorize feature. Only supports one level of categorization right now--not quite ready for prime time.
  • Sep 28, 2008
    r29 (Adding head.html) committed by marclitchfield   -   Adding head.html
    Adding head.html
  • Sep 28, 2008
    r28 (Added ViewPort meta tag) committed by marclitchfield   -   Added ViewPort meta tag
    Added ViewPort meta tag
  • Sep 01, 2008
    r27 (Increased response batch size to 50.) committed by marclitchfield   -   Increased response batch size to 50.
    Increased response batch size to 50.
  • Aug 31, 2008
    r26 (Removed paging.html) committed by marclitchfield   -   Removed paging.html
    Removed paging.html
  • Aug 31, 2008
    r25 (Fixed bug: copy did not copy image_url or audio_url properti...) committed by marclitchfield   -   Fixed bug: copy did not copy image_url or audio_url properties!
    Fixed bug: copy did not copy image_url or audio_url properties!
  • Aug 31, 2008
    r24 (Added move operation to questions. Added missing files) committed by marclitchfield   -   Added move operation to questions. Added missing files
    Added move operation to questions. Added missing files
  • Aug 31, 2008
    r23 (Removing pyc files) committed by marclitchfield   -   Removing pyc files
    Removing pyc files
  • Aug 31, 2008
    r22 (Added move operation to questions. Added missing files) committed by marclitchfield   -   Added move operation to questions. Added missing files
    Added move operation to questions. Added missing files
  • Aug 30, 2008
    r21 (Add paging to Questions, Sessions, and Responses) committed by marclitchfield   -   Add paging to Questions, Sessions, and Responses
    Add paging to Questions, Sessions, and Responses
  • Aug 29, 2008
    r20 (Fixed bug starting auto quiz without selecting quiz first. F...) committed by marclitchfield   -   Fixed bug starting auto quiz without selecting quiz first. Filtered out quizzes with no questions from auto quiz
    Fixed bug starting auto quiz without selecting quiz first. Filtered out quizzes with no questions from auto quiz
  • Aug 20, 2008
    r19 (Too wordy) committed by marclitchfield   -   Too wordy
    Too wordy
  • Aug 20, 2008
    r18 (Added help text) committed by marclitchfield   -   Added help text
    Added help text
  • Aug 20, 2008
    issue 3 (Allow images to be associated with questions) Status changed by marclitchfield   -   Links to images (and audio files) can now be associated with questions. Decided against allowing users to upload and store binary image/audio data in the quizlink database, out of concern for bumping up against the storage quota.
    Status: Fixed
    Links to images (and audio files) can now be associated with questions. Decided against allowing users to upload and store binary image/audio data in the quizlink database, out of concern for bumping up against the storage quota.
    Status: Fixed
  • Aug 20, 2008
    issue 2 (Auto Quiz) Status changed by marclitchfield   -   Implemented auto quiz
    Status: Fixed
    Implemented auto quiz
    Status: Fixed
  • Aug 20, 2008
    r17 (Added quiz title to auto quiz response list) committed by marclitchfield   -   Added quiz title to auto quiz response list
    Added quiz title to auto quiz response list
  • Aug 20, 2008
    r16 (Added auto quiz question limit. Added auto quiz session hist...) committed by marclitchfield   -   Added auto quiz question limit. Added auto quiz session history
    Added auto quiz question limit. Added auto quiz session history
  • Aug 20, 2008
    r15 (Allow copy operation to this quiz) committed by marclitchfield   -   Allow copy operation to this quiz
    Allow copy operation to this quiz
  • Aug 20, 2008
    r14 (Sort question list by dateadded. Fixed bug: retries were not...) committed by marclitchfield   -   Sort question list by dateadded. Fixed bug: retries were not being deleted with questions
    Sort question list by dateadded. Fixed bug: retries were not being deleted with questions
  • Aug 18, 2008
    r13 (Adjusted autoquiz parameters) committed by marclitchfield   -   Adjusted autoquiz parameters
    Adjusted autoquiz parameters
  • Aug 17, 2008
    r12 (Completed implementation of the first version of autoquiz) committed by marclitchfield   -   Completed implementation of the first version of autoquiz
    Completed implementation of the first version of autoquiz
  • Aug 17, 2008
    r11 (Added ability to associate questions with image links and au...) committed by marclitchfield   -   Added ability to associate questions with image links and audio link, instead of having to provide html in the question
    Added ability to associate questions with image links and audio link, instead of having to provide html in the question
  • Aug 17, 2008
    r10 (Added <script> tag to embed yahoo media player in question p...) committed by marclitchfield   -   Added <script> tag to embed yahoo media player in question pages. If questions contain a link to a music file, a play button will appear next to the link
    Added <script> tag to embed yahoo media player in question pages. If questions contain a link to a music file, a play button will appear next to the link
  • Aug 17, 2008
    r9 (Fixed bug: comments by owner were not color-coded on the sho...) committed by marclitchfield   -   Fixed bug: comments by owner were not color-coded on the showanswer page
    Fixed bug: comments by owner were not color-coded on the showanswer page
  • Aug 16, 2008
    r8 (Modified CSS font size. Standardized phrasing of navigation ...) committed by marclitchfield   -   Modified CSS font size. Standardized phrasing of navigation links at bottom of pages
    Modified CSS font size. Standardized phrasing of navigation links at bottom of pages
  • Aug 16, 2008
    issue 5 (Allow non-authenticated users to take public quizzes) Summary changed by marclitchfield   -  
    Summary: Allow non-authenticated users to take public quizzes
    Summary: Allow non-authenticated users to take public quizzes
  • Aug 16, 2008
    issue 5 (Allow non-authenticated users to particpate) reported by marclitchfield   -   Currently you must log in to use quizlink. We should consider allowing non-authenticated users to take public quizzes. Their sessions would not be associated with any particular user, and we would need to work out the details of when/if these sessions are removed from the system. There would be no requirement that non-authenticated users would have the ability to view their past sessions.
    Currently you must log in to use quizlink. We should consider allowing non-authenticated users to take public quizzes. Their sessions would not be associated with any particular user, and we would need to work out the details of when/if these sessions are removed from the system. There would be no requirement that non-authenticated users would have the ability to view their past sessions.
  • Aug 16, 2008
    issue 4 (Should be able to take a public quiz without subscribing) reported by marclitchfield   -   Subscribing to a quiz just puts it in your 'subscribed quizzes' list on the main page. There's no technical reason you need to subscribe to a quiz in order to take it, so we should allow users to take a public quiz without subscribing. Sessions and responses would still be stored, but these only become accessible once the user subscribes to the quiz.
    Subscribing to a quiz just puts it in your 'subscribed quizzes' list on the main page. There's no technical reason you need to subscribe to a quiz in order to take it, so we should allow users to take a public quiz without subscribing. Sessions and responses would still be stored, but these only become accessible once the user subscribes to the quiz.
  • Aug 16, 2008
    issue 3 (Allow images to be associated with questions) reported by marclitchfield   -   Currently the only way to have images and other binary media appear in a question is to reference it with an img html tag, which also requires that the user have access to a public location to host the image. Ultimately requiring quiz authors to contribute questions in html form is not desirable since it is not secure or user friendly. There should be a means to upload an image and attach it to a question. Only small images should be allowed, otherwise we could start bumping up against the storage quota eventually.
    Currently the only way to have images and other binary media appear in a question is to reference it with an img html tag, which also requires that the user have access to a public location to host the image. Ultimately requiring quiz authors to contribute questions in html form is not desirable since it is not secure or user friendly. There should be a means to upload an image and attach it to a question. Only small images should be allowed, otherwise we could start bumping up against the storage quota eventually.
  • Aug 16, 2008
    issue 2 (Auto Quiz) reported by marclitchfield   -   Auto quiz would be a quizzing mechanism that would pull questions from selected quizzes (either subscribed or owned) based on an algorithm that takes into account how long it has been since a question was asked, and whether or not the question was answered correctly. Questions are more likely to be selected by the auto quiz if it has not been asked in a long time, or if it has been answered incorrectly.
    Auto quiz would be a quizzing mechanism that would pull questions from selected quizzes (either subscribed or owned) based on an algorithm that takes into account how long it has been since a question was asked, and whether or not the question was answered correctly. Questions are more likely to be selected by the auto quiz if it has not been asked in a long time, or if it has been answered incorrectly.
  • Aug 16, 2008
    issue 1 (Deletions should have a confirmation prompt) Summary changed by marclitchfield   -  
    Summary: Deletions should have a confirmation prompt
    Summary: Deletions should have a confirmation prompt
  • Aug 16, 2008
    issue 1 (Delete confirmation) reported by marclitchfield   -   Deleting items does not produce a confirmation prompt. Deletion of the following items should be predicated on user confirmation: * Quizzes * Questions * Sessions Don't worry about delete confirmation prompts for choices or comments
    Deleting items does not produce a confirmation prompt. Deletion of the following items should be predicated on user confirmation: * Quizzes * Questions * Sessions Don't worry about delete confirmation prompts for choices or comments
  • Aug 15, 2008
    r7 (Fixed bug: submitting blank comment does not advance to next...) committed by marclitchfield   -   Fixed bug: submitting blank comment does not advance to next question. Started development of the Autoquiz functionality
    Fixed bug: submitting blank comment does not advance to next question. Started development of the Autoquiz functionality
  • Aug 15, 2008
    r6 (Minor Refactoring) committed by marclitchfield   -   Minor Refactoring
    Minor Refactoring
  • Aug 15, 2008
    r5 (Repositioned 'Public Quiz Link' label. Minor refactoring to ...) committed by marclitchfield   -   Repositioned 'Public Quiz Link' label. Minor refactoring to some security checks
    Repositioned 'Public Quiz Link' label. Minor refactoring to some security checks
  • Aug 15, 2008
    r4 (Some comments) committed by marclitchfield   -   Some comments
    Some comments
  • Aug 15, 2008
    r3 (Removing .pyc files) committed by marclitchfield   -   Removing .pyc files
    Removing .pyc files
  • Aug 15, 2008
    r2 (Initial Import) committed by marclitchfield   -   Initial Import
    Initial Import
 
Hosted by Google Code