Ignore:
Timestamp:
8 May 2015, 07:09:08 (9 years ago)
Author:
Henrik Bettermann
Message:

Start integrating doc tests into documentation.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py

    r12901 r12915  
    482482    phone = Attribute("The phone number of a user")
    483483    public_name = Attribute("The public name of a user")
     484    user_type = Attribute("The type of a user")
    484485
    485486
     
    504505        title = _(u'Public Name'),
    505506        required = False,)
     507
     508    user_type = Attribute('The user type of the principal')
    506509
    507510class IFailedLoginInfo(IKofaObject):
     
    599602
    600603class IUsersContainer(IKofaObject):
    601     """A container for users (principals).
    602 
    603     These users are used for authentication purposes.
     604    """A container for officers.
    604605    """
    605606
  • main/waeup.kofa/trunk/src/waeup/kofa/userscontainer.py

    r12859 r12915  
    2929
    3030class UsersContainer(grok.Container, Logger):
    31     """A container for principals.
     31    """A container for officers.
    3232
    3333    See interfaces.py and users.txt for extensive description.
Note: See TracChangeset for help on using the changeset viewer.