app/soc/views/site/home.py
author Todd Larsen <tlarsen@google.com>
Wed, 20 Aug 2008 00:10:59 +0000
changeset 88 9a8180f0941a
parent 81 b03b1ec17727
child 141 e120c24b89e2
permissions -rw-r--r--
Some additional __doc__ comments (with some ideas for future plans) and removal of some unnecessary imports.

#!/usr/bin/python2.5
#
# Copyright 2008 the Melange authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Site-wide Melange home page views.

public: how the general public sees the site home page of a Melange
  site
  
There may (eventually) be different views of the site home page for
logged-in Users (such as a debug() view for logged-in Developers). 
"""

__authors__ = [
  '"Pawel Solyga" <pawel.solyga@gmail.com>',
  ]


from google.appengine.api import users
from soc.views.helpers import response_helpers


def public(request, template='soc/site/home/public.html'):
  """How the "general public" sees the Melange site home page.

  Args:
    request: the standard django request object.
    template: the template path to use for rendering the template.

  Returns:
    A subclass of django.http.HttpResponse with generated template.
  """
  return response_helpers.respond(request,
      template, {'template': template})