Ignore:
Timestamp:
10 Dec 2011, 06:15:17 (13 years ago)
Author:
Henrik Bettermann
Message:

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/hostels/browser.py

    r7257 r7321  
    2121import sys
    2222from waeup.sirp.browser import (
    23     WAeUPEditFormPage, WAeUPAddFormPage, WAeUPDisplayFormPage,
     23    SIRPEditFormPage, SIRPAddFormPage, SIRPDisplayFormPage,
    2424    NullValidator)
    2525from waeup.sirp.browser.breadcrumbs import Breadcrumb
     
    2929from waeup.sirp.browser.viewlets import (
    3030    ManageActionButton, PrimaryNavTab)
    31 from waeup.sirp.interfaces import IWAeUPObject
     31from waeup.sirp.interfaces import ISIRPObject
    3232from waeup.sirp.hostels.vocabularies import NOT_OCCUPIED
    3333from waeup.sirp.hostels.hostel import Hostel
     
    5757    """
    5858
    59     grok.context(IWAeUPObject)
     59    grok.context(ISIRPObject)
    6060    grok.order(5)
    6161    grok.require('waeup.viewHostels')
     
    9191        return 'Block %s, Room %s, Bed %s' % (co[1], co[2], co[3])
    9292
    93 class HostelsContainerPage(WAeUPDisplayFormPage):
     93class HostelsContainerPage(SIRPDisplayFormPage):
    9494    """The standard view for hostels containers.
    9595    """
     
    109109    text = 'Manage accommodation section'
    110110
    111 class HostelsContainerManagePage(WAeUPDisplayFormPage):
     111class HostelsContainerManagePage(SIRPDisplayFormPage):
    112112    """The manage page for hostel containers.
    113113    """
     
    141141        return
    142142
    143 class HostelAddFormPage(WAeUPAddFormPage):
     143class HostelAddFormPage(SIRPAddFormPage):
    144144    """Add-form to add a hostel.
    145145    """
     
    169169        return
    170170
    171 class HostelDisplayFormPage(WAeUPDisplayFormPage):
     171class HostelDisplayFormPage(SIRPDisplayFormPage):
    172172    """ Page to display hostel data
    173173    """
     
    194194    target = 'manage'
    195195
    196 class HostelManageFormPage(WAeUPEditFormPage):
     196class HostelManageFormPage(SIRPEditFormPage):
    197197    """ View to edit hostel data
    198198    """
     
    294294        return
    295295
    296 class BedManageFormPage(WAeUPEditFormPage):
     296class BedManageFormPage(SIRPEditFormPage):
    297297    """ View to edit bed data
    298298    """
Note: See TracChangeset for help on using the changeset viewer.