app/soc/views/sponsor/profile.py
changeset 259 74eb6b01c82c
child 270 7dd6d8347b56
equal deleted inserted replaced
258:12f4f7d16fac 259:74eb6b01c82c
       
     1 #!/usr/bin/python2.5
       
     2 #
       
     3 # Copyright 2008 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 displaying public Sponsor profiles.
       
    18 """
       
    19 
       
    20 __authors__ = [
       
    21   '"Pawel Solyga" <pawel.solyga@gmail.com>',
       
    22   ]
       
    23 
       
    24 
       
    25 from soc.logic import out_of_band
       
    26 from soc.logic import sponsor
       
    27 from soc.views import simple
       
    28 from soc.views.helpers import response_helpers
       
    29 from soc.views.helpers import template_helpers
       
    30 
       
    31 
       
    32 DEF_SPONSOR_PUBLIC_TMPL = 'soc/group/profile/public.html'
       
    33 
       
    34 def public(request, linkname=None, template=DEF_SPONSOR_PUBLIC_TMPL):
       
    35   """How the "general public" sees the Sponsor profile.
       
    36 
       
    37   Args:
       
    38     request: the standard django request object.
       
    39     linkname: the Sponsor's site-unique "linkname" extracted from the URL
       
    40     template: the template path to use for rendering the template.
       
    41 
       
    42   Returns:
       
    43     A subclass of django.http.HttpResponse with generated template.
       
    44   """
       
    45   # create default template context for use with any templates
       
    46   context = response_helpers.getUniversalContext(request)
       
    47 
       
    48   try:
       
    49     linkname_sponsor = sponsor.getSponsorIfLinkName(linkname)
       
    50   except out_of_band.ErrorResponse, error:
       
    51     # show custom 404 page when link name doesn't exist in Datastore
       
    52     return simple.errorResponse(request, error, template, context)
       
    53 
       
    54   linkname_sponsor.description = \
       
    55       template_helpers.unescape(linkname_sponsor.description)
       
    56   
       
    57   context.update({'linkname_group': linkname_sponsor,
       
    58                   'group_type': 'Sponsor'})
       
    59 
       
    60   return response_helpers.respond(request, template, context)