1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 2010 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""NameBlacklist interfaces."""
__metaclass__ = type
__all__ = [
'INameBlacklist',
'INameBlacklistSet',
]
from zope.interface import Interface
from zope.schema import (
Int,
Choice,
Text,
TextLine,
)
from canonical.launchpad import _
class INameBlacklist(Interface):
"""The interface for the NameBlacklist table."""
id = Int(title=_('ID'), required=True, readonly=True)
regexp = TextLine(title=_('Regular expression'), required=True)
comment = Text(
title=_('Comment'),
description=_(
"Why is the name blacklisted? Does the namespace belong to an "
"organization or is the namespace reserved by the application?"),
required=False)
admin = Choice(
title=_('Admin'),
description=_(
"The team that is exempt from this restriction because it "
"administers this namespace for an organisation."),
vocabulary='ValidPersonOrTeam', required=False)
class INameBlacklistSet(Interface):
"""The set of INameBlacklist objects."""
def getAll():
"""Return all the name blacklist expressions."""
def create(regexp, comment=None):
"""Create and return a new NameBlacklist with given arguments."""
def get(id):
"""Return the NameBlacklist with the given id or None."""
def getByRegExp(regexp):
"""Return the NameBlacklist with the given regexp or None."""
|