app/soc/modules/gsoc/views/models/timeline.py
changeset 3043 187c1709756b
equal deleted inserted replaced
3042:72eec4d72471 3043:187c1709756b
       
     1 #!/usr/bin/python2.5
       
     2 #
       
     3 # Copyright 2009 the Melange authors.
       
     4 #
       
     5 # Licensed under the Apache License, Version 2.0 (the "License");
       
     6 # you may not use this file except in compliance with the License.
       
     7 # You may obtain a copy of the License at
       
     8 #
       
     9 #   http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    11 # Unless required by applicable law or agreed to in writing, software
       
    12 # distributed under the License is distributed on an "AS IS" BASIS,
       
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    14 # See the License for the specific language governing permissions and
       
    15 # limitations under the License.
       
    16 
       
    17 """Views for GSoCTimeline.
       
    18 """
       
    19 
       
    20 __authors__ = [
       
    21     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
       
    22   ]
       
    23 
       
    24 from soc.logic import dicts
       
    25 from soc.views.helper import access # TODO
       
    26 from soc.views.helper import decorators
       
    27 from soc.views.models import timeline
       
    28 
       
    29 from soc.modules.gsoc.logic.models.program import logic as program_logic
       
    30 from soc.modules.gsoc.logic.models.timeline import logic as timeline_logic
       
    31 
       
    32 
       
    33 import soc.modules.ghop.logic.models.timeline
       
    34 
       
    35 
       
    36 class View(timeline.View):
       
    37   """View methods for the Timeline model.
       
    38   """
       
    39 
       
    40   def __init__(self, params=None):
       
    41     """Defines the fields and methods required for the base View class
       
    42     to provide the user with list, public, create, edit and delete views.
       
    43 
       
    44     Params:
       
    45       params: a dict with params for this View
       
    46     """
       
    47 
       
    48     rights = access.Checker(params)
       
    49     rights['edit'] = [('checkCanEditTimeline', [program_logic])]
       
    50 
       
    51     new_params = {}
       
    52     new_params['logic'] = timeline_logic
       
    53     new_params['rights'] = rights
       
    54 
       
    55     new_params['name'] = "GSoC Timeline"
       
    56     new_params['module_name'] = "timeline"
       
    57 
       
    58     new_params['module_package'] = 'soc.modules.gsoc.views.models'
       
    59     new_params['url_name'] = 'gsoc/timeline'
       
    60 
       
    61     params = dicts.merge(params, new_params, sub_merge=True)
       
    62 
       
    63     super(View, self).__init__(params=params)
       
    64 
       
    65 
       
    66 view = View()
       
    67 
       
    68 edit = decorators.view(view.edit)
       
    69 public = decorators.view(view.public)