Ignore:
Timestamp:
13 Nov 2014, 14:40:27 (10 years ago)
Author:
Henrik Bettermann
Message:

Change of name.

Location:
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
Files:
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/__init__.py

    r8846 r11949  
    22"""
    33# Make this a package.
    4 from waeup.kofa.mandates.container import MandatesContainer
    5 from waeup.kofa.mandates.mandate import Mandate
     4from waeup.ikoba.mandates.container import MandatesContainer
     5from waeup.ikoba.mandates.mandate import Mandate
    66
    77__all__ = [
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/browser.py

    r11680 r11949  
    1919"""
    2020import grok
    21 from waeup.kofa.browser.layout import UtilityView
    22 from waeup.kofa.interfaces import IUniversity
    23 from waeup.kofa.interfaces import MessageFactory as _
     21from waeup.ikoba.browser.layout import UtilityView
     22from waeup.ikoba.interfaces import IUniversity
     23from waeup.ikoba.interfaces import MessageFactory as _
    2424
    2525class MandateView(UtilityView, grok.View):
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/container.py

    r11947 r11949  
    2222from datetime import datetime
    2323from grok import index
    24 from waeup.kofa.interfaces import IKofaPluggable
    25 from waeup.kofa.mandates.interfaces import IMandatesContainer, IMandate
     24from waeup.ikoba.interfaces import IIkobaPluggable
     25from waeup.ikoba.mandates.interfaces import IMandatesContainer, IMandate
    2626
    2727class MandatesContainer(grok.Container):
     
    5151    """A plugin that creates container for mandates inside a university.
    5252    """
    53     grok.implements(IKofaPluggable)
     53    grok.implements(IIkobaPluggable)
    5454    grok.name('mandates')
    5555
    5656    def setup(self, site, name, logger):
    5757        if 'mandates' in site.keys():
    58             logger.warn('Could not create container for mandates in Kofa.')
     58            logger.warn('Could not create container for mandates in Ikoba.')
    5959            return
    6060        site['mandates'] = MandatesContainer()
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/interfaces.py

    r8910 r11949  
    1818from zope.interface import Attribute
    1919from zope import schema
    20 from waeup.kofa.interfaces import IKofaObject
     20from waeup.ikoba.interfaces import IIkobaObject
    2121
    22 class IMandatesContainer(IKofaObject):
     22class IMandatesContainer(IIkobaObject):
    2323    """A container for all kind of mandate objects.
    2424
     
    3434        """
    3535
    36 class IMandate(IKofaObject):
     36class IMandate(IIkobaObject):
    3737    """A representation of all mandates.
    3838
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/mandate.py

    r11681 r11949  
    2424from datetime import datetime, timedelta
    2525from grok import index
    26 from waeup.kofa.interfaces import IUserAccount
    27 from waeup.kofa.interfaces import MessageFactory as _
    28 from waeup.kofa.mandates.interfaces import IMandate
     26from waeup.ikoba.interfaces import IUserAccount
     27from waeup.ikoba.interfaces import MessageFactory as _
     28from waeup.ikoba.mandates.interfaces import IMandate
    2929
    3030class Mandate(grok.Model):
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/tests.py

    r11947 r11949  
    2727from zope.component import createObject
    2828from zope.component.hooks import setSite, clearSite
    29 from waeup.kofa.app import University
    30 from waeup.kofa.interfaces import IUserAccount
    31 from waeup.kofa.mandates.interfaces import (
     29from waeup.ikoba.app import University
     30from waeup.ikoba.interfaces import IUserAccount
     31from waeup.ikoba.mandates.interfaces import (
    3232    IMandatesContainer, IMandate)
    33 from waeup.kofa.mandates.container import MandatesContainer
    34 from waeup.kofa.mandates.mandate import PasswordMandate
    35 from waeup.kofa.testing import (FunctionalLayer, FunctionalTestCase)
     33from waeup.ikoba.mandates.container import MandatesContainer
     34from waeup.ikoba.mandates.mandate import PasswordMandate
     35from waeup.ikoba.testing import (FunctionalLayer, FunctionalTestCase)
    3636
    3737class MandatesContainerTestCase(FunctionalTestCase):
Note: See TracChangeset for help on using the changeset viewer.