~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/doc/vocabularies.txt

Merged replication into pending-db-changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
966
966
    []
967
967
 
968
968
Almost all teams have the word 'team' as part of their names, so a
969
 
search for 'team' should give us some of them. There's also the ircperson
 
969
search for 'team' will give us some of them. There's also the ircperson
970
970
created earlier with an icr nickname of 'team':
971
971
 
972
972
    >>> sorted(person.name for person in vocab.search('team'))
975
975
     u'simple-team', u'testing-spanish-team', u'ubuntu-security',
976
976
     u'ubuntu-team', u'warty-gnome']
977
977
 
 
978
ValidPillarOwner
 
979
..........
 
980
 
 
981
Valid persons and closed teams are valid pillar owners.
 
982
 
 
983
    >>> login(ANONYMOUS)
 
984
    >>> vocab = get_naked_vocab(None, "ValidPillarOwner")
 
985
    >>> vocab.step_title
 
986
    'Search for a restricted team, a moderated team, or a person'
 
987
 
 
988
    >>> list(vocab.search(None))
 
989
    []
 
990
 
 
991
Almost all teams have the word 'team' as part of their names, so a
 
992
search for 'team' will give us some of them. Only restricted or moderated
 
993
teams will be returned in the search results. There's also the ircperson
 
994
created earlier with an icr nickname of 'team':
 
995
 
 
996
    >>> sorted(person.name for person in vocab.search('team'))
 
997
    [u'hwdb-team', u'ircperson', u'name18', u'name20', u'name21',
 
998
     u'no-team-memberships', u'otherteam',
 
999
     u'simple-team', u'testing-spanish-team', u'ubuntu-team', u'warty-gnome']
978
1000
 
979
1001
ValidTeam
980
1002
.........