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
57
58
|
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
metal:use-macro="view/macro:page/main_only"
i18n:domain="launchpad"
>
<body>
<div metal:fill-slot="main">
<div metal:use-macro="context/@@launchpad_form/form">
<div metal:fill-slot="extra_info">
<p>
A PPA is a place where you can build and publish your own packages.
These can be custom versions of Ubuntu packages, or completely new
packages, and can be built for any
<a tal:attributes="href view/ubuntu/fmt:url">supported version of Ubuntu</a>.
For more information, please see the
<a href="https://help.launchpad.net/Packaging/PPA">PPA help page</a>.
</p>
<div tal:condition="context/ppas" id="ppas"
style="padding-top: .3em; padding-bottom: .3em;">
<h2>Existing PPAs</h2>
<div tal:replace="structure context/@@+ppas-list"/>
</div>
<p>
Read the current version of
<a href="https://help.launchpad.net/PPATermsofUse">PPA Terms of
Use</a> before activating a new PPA.
</p>
<p tal:condition="view/is_private_team" id="ppa-privacy-statement">
<img src="/@@/info" />
Since '<tal:name replace="string:${context/displayname}"/>' is
a <strong>private</strong> team this PPA will be private.
</p>
</div>
<div class="actions" metal:fill-slot="buttons">
<p>
<img src="/@@/warning" />
A PPA's URL cannot be changed once it has had packages
published. You will not be able to rename
<tal:context replace="structure context/fmt:link" />
(<tt tal:content="context/name" />) until all such PPAs are
deleted.
</p>
<input tal:replace="structure view/actions/field.actions.activate/render" />
or <a tal:attributes="href context/fmt:url">Cancel</a>
</div>
</div>
</div>
</body>
</html>
|