app/soc/views/models/grading_project_survey.py
changeset 2659 8df08a3b17db
parent 2596 56924ec61cd2
child 2660 e2654d53a643
--- a/app/soc/views/models/grading_project_survey.py	Wed Jul 15 15:07:01 2009 +0200
+++ b/app/soc/views/models/grading_project_survey.py	Wed Jul 15 15:18:58 2009 +0200
@@ -73,23 +73,6 @@
 
     super(View, self).__init__(params=params)
 
-  # TODO: work on grade activation
-  def activate(self, request, **kwargs):
-    """This is a hack to support the 'Enable grades' button.
-    """
-    self.activateGrades(request)
-    redirect_path = request.path.replace('/activate/', '/edit/') + (
-        '?activate=1')
-    return http.HttpResponseRedirect(redirect_path)
-
-  def activateGrades(self, request, **kwargs):
-    """Updates SurveyRecord's grades for a given Survey.
-    """
-    survey_key_name = survey_logic.getKeyNameFromPath(request.path)
-    survey = Survey.get_by_key_name(survey_key_name)
-    survey_logic.activateGrades(survey)
-    return
-
   def _getSurveyTakeForm(self, survey, record, params, post_dict=None):
     """Returns the specific SurveyTakeForm needed for the take view.