app/soc/views/out_of_band.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 23 Jan 2009 21:20:33 +0000
changeset 935 09f47e08f805
parent 656 a76f1b443ea4
child 970 8b5611d5b053
permissions -rw-r--r--
Adust the as_table tag to render a pick link if appropriate The templates are adjusted to pass on a 'reference' value, which is the url_name of the view from which the entity should be picked. The as_table (and related) function(s) construct and then pass on this argument and enable takes_contex so that we have access to the context of the enclosing template. We only extract ReferenceProperties that end with '_link_id' since that is how all RP's are currently named. It is not possible to create a field with the same name as the RP, as GAE will try to interpret it's contents as the key of an entity before even calling any function we can override. Patch by: Sverre Rabbelier

#!/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.

"""Out-of-band responses to render instead of the usual HTTP response.
"""

__authors__ = [
  '"Todd Larsen" <tlarsen@google.com>',
  '"Sverre Rabbelier" <sverre@rabbelier.nl>',
  ]


from django.utils.translation import ugettext_lazy


class Error(Exception):
  """Base exception for out-of-band responses raised by logic or views.
  """
  TEMPLATE_NAME = 'error.html'
  DEF_TEMPLATE = 'soc/error.html'

  def __init__(self, message_fmt, context=None, **response_args):
    """Constructor used to set response message and HTTP response arguments.
  
    Args:
      message_fmt: format string, when combined with a context supplied to
        the response() method, produces the message to display on the
        response page; this can be a simple string containing *no* named
        format specifiers
      context: see soc.views.helper.responses.errorResponse()
      **response_args: keyword arguments that are supplied directly to
        django.http.HttpResponse; the most commonly used is 'status' to
        set the HTTP status code for the response
    """

    self.message_fmt = message_fmt
    self.context = context
    self.response_args = response_args


class LoginRequest(Error):
  """Out of band error raised when login is requested.
  """
  TEMPLATE_NAME = 'login.html'
  DEF_TEMPLATE = 'soc/login.html'

  DEF_LOGIN_MSG_FMT = ugettext_lazy(
      'Please <a href="%(sign_in)s">sign in</a> to continue.')

  def __init__(self, message_fmt=None, **response_args):
    """Constructor used to set response message and HTTP response arguments.
  
    Args:
      message_fmt: same as Error.__init__() message_fmt, with the addition of
        a default value of None, in which case self.DEF_LOGIN_MSG_FMT is used
      **response_args: see Error.__init__()
    """

    if not message_fmt:
      message_fmt = self.DEF_LOGIN_MSG_FMT

    super(LoginRequest, self).__init__(message_fmt, **response_args)


class AccessViolation(Error):
  """"Out of band error raised when an access requirement was not met.
  """

  pass