~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/__init__.py

  • Committer: William Grant
  • Date: 2009-12-09 06:34:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1388.
  • Revision ID: grantw@unimelb.edu.au-20091209063404-w6s38md5xg5kkrsu
Remove unused WorksheetRESTView and WorksheetsRESTView.add_worksheet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
from ivle.worksheet.rst import rst as rstfunc
51
51
 
52
52
from ivle.webapp.tutorial.service import (AttemptsRESTView, AttemptRESTView,
53
 
            WorksheetExerciseRESTView, WorksheetRESTView, WorksheetsRESTView)
 
53
            WorksheetExerciseRESTView, WorksheetsRESTView)
54
54
from ivle.webapp.tutorial.exercise_service import ExercisesRESTView, \
55
55
                                                  ExerciseRESTView
56
56
from ivle.webapp.tutorial.publishing import (root_to_exercise, exercise_url,
618
618
             (SubjectMediaFile, '+index', SubjectMediaView),
619
619
 
620
620
             (Offering, ('+worksheets', '+index'), WorksheetsRESTView, 'api'),
621
 
             (DBWorksheet, '+index', WorksheetRESTView, 'api'),
622
621
             (WorksheetExercise, '+index', WorksheetExerciseRESTView, 'api'),
623
622
             (ExerciseAttempts, '+index', AttemptsRESTView, 'api'),
624
623
             (ExerciseAttempt, '+index', AttemptRESTView, 'api'),