app/soc/logic/models/presence.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 29 Nov 2008 23:51:24 +0000
changeset 620 e74e0b74625f
parent 535 9045b8888772
child 655 9635cbaa2dcd
permissions -rw-r--r--
Put the redirects in the views/helper/redirects.py module. Changed the getCreateRequestRedirect to comply with the new signature. Also changed it's docstring to a more suitable one. Fixed a useless merge in views/models/role.py in the process.

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

"""Presence (Model) query functions.
"""

__authors__ = [
  '"Sverre Rabbelier" <sverre@rabbelier.nl>',
  '"Lennard de Rijk" <ljvderijk@gmail.com>'
  ]


from soc.logic.models import base

import soc.models.presence


class Logic(base.Logic):
  """Logic methods for the Presence model.
  """

  def __init__(self, model=soc.models.presence.Presence,
               base_model=None):
    """Defines the name, key_name and model for this entity.
    """
    base.Logic.__init__(self, model, base_model=base_model)


logic = Logic()