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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Bazaar packaging repositories by team</title>
<style>
body { font-family: ubuntu }
.not-late { color: grey; }
.not-late a { color: #77f; }
</style>
</head>
<body lang="en">
<h1>Bazaar packaging repositories by team</h1>
<p>Git migration tools and schedule: <a href="https://wiki.ubuntu.com/UbuntuDevelopment/MigratingFromBzrToGit">https://wiki.ubuntu.com/UbuntuDevelopment/MigratingFromBzrToGit</a></p>
<p>
Generated: {{ now }}
<ul>
{% for team in all_teams|sort %}
<li><a href="#{{ team }}">{{ team }}</a> ({{ ngettext("%(num)d packaging repository", "%(num)d packaging repositories", team_to_attn_count[team]) }})</li>
{% endfor %}
</ul>
{% for team in all_teams|sort %}
<h1 id="{{ team }}">{{ team }}</h1>
<p>
{{ ngettext("%(num)d packaging repositories", "%(num)d packaging repositories", team_to_attn_count[team]) }}
</p>
<ul>
{% for pkg in team_to_pkgs[team] %}
{% set p = pkg[0] %}
{% set url = pkg[1] %}
<li>
<b><a href="https://launchpad.net/ubuntu/+source/{{ p }}/">{{ p }}</a>:</b> <a href="{{ url }}">{{ url }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
</body>
</html>
|