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
|
# Copyright 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Widgets related to `IArchive`."""
__metaclass__ = type
__all__ = [
'PPANameWidget',
]
import urlparse
from canonical.config import config
from lp.app.widgets.textwidgets import URIComponentWidget
class PPANameWidget(URIComponentWidget):
"""A text input widget that looks like a URL path component entry."""
@property
def base_url(self):
field = self.context
owner = field.context
if owner.private:
root = config.personalpackagearchive.private_base_url
else:
root = config.personalpackagearchive.base_url
return urlparse.urljoin(root, owner.name) + '/'
|