Ignore:
Timestamp:
13 Nov 2014, 16:54:17 (10 years ago)
Author:
Henrik Bettermann
Message:

Remove tools.

rename institution company.

Remove some apis from docs.

Location:
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates
Files:
3 edited

Legend:

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

    r11952 r11954  
    2020import grok
    2121from waeup.ikoba.browser.layout import UtilityView
    22 from waeup.ikoba.interfaces import IInstitution
     22from waeup.ikoba.interfaces import ICompany
    2323from waeup.ikoba.interfaces import MessageFactory as _
    2424
     
    2626    """View to execute mandate.
    2727    """
    28     grok.context(IInstitution)
     28    grok.context(ICompany)
    2929    grok.name('mandate')
    3030    grok.require('waeup.Public')
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/container.py

    r11952 r11954  
    4949
    5050class MandatesPlugin(grok.GlobalUtility):
    51     """A plugin that creates container for mandates inside a institution.
     51    """A plugin that creates container for mandates inside a company.
    5252    """
    5353    grok.implements(IIkobaPluggable)
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/tests.py

    r11952 r11954  
    2727from zope.component import createObject
    2828from zope.component.hooks import setSite, clearSite
    29 from waeup.ikoba.app import Institution
     29from waeup.ikoba.app import Company
    3030from waeup.ikoba.interfaces import IUserAccount
    3131from waeup.ikoba.mandates.interfaces import (
     
    6363
    6464        # Setup a sample site for each test
    65         app = Institution()
     65        app = Company()
    6666        self.dc_root = tempfile.mkdtemp()
    6767        app['datacenter'].setStoragePath(self.dc_root)
Note: See TracChangeset for help on using the changeset viewer.