234.2.1
by Balint Reczey
Generate report on per team Bazaar packaging repositories |
1 |
<!DOCTYPE HTML>
|
2 |
<html> |
|
3 |
<head> |
|
4 |
<meta charset="utf-8"> |
|
5 |
<title>Bazaar packaging repositories by team</title> |
|
6 |
<style> |
|
7 |
body { font-family: ubuntu } |
|
8 |
.not-late { color: grey; } |
|
9 |
.not-late a { color: #77f; } |
|
10 |
</style> |
|
11 |
</head> |
|
12 |
<body lang="en"> |
|
13 |
<h1>Bazaar packaging repositories by team</h1> |
|
308
by Łukasz 'sil2100' Zemczak
Fix missing > in bzr report template. |
14 |
<p>Git migration tools and schedule: <a href="https://wiki.ubuntu.com/UbuntuDevelopment/MigratingFromBzrToGit">https://wiki.ubuntu.com/UbuntuDevelopment/MigratingFromBzrToGit</a></p> |
234.2.1
by Balint Reczey
Generate report on per team Bazaar packaging repositories |
15 |
<p> |
16 |
Generated: {{ now }} |
|
17 |
<ul> |
|
18 |
{% for team in all_teams|sort %} |
|
19 |
<li><a href="#{{ team }}">{{ team }}</a> ({{ ngettext("%(num)d packaging repository", "%(num)d packaging repositories", team_to_attn_count[team]) }})</li> |
|
20 |
{% endfor %} |
|
21 |
</ul> |
|
22 |
{% for team in all_teams|sort %} |
|
23 |
<h1 id="{{ team }}">{{ team }}</h1> |
|
24 |
<p> |
|
25 |
{{ ngettext("%(num)d packaging repositories", "%(num)d packaging repositories", team_to_attn_count[team]) }} |
|
26 |
</p> |
|
27 |
<ul> |
|
28 |
{% for pkg in team_to_pkgs[team] %} |
|
29 |
{% set p = pkg[0] %} |
|
30 |
{% set url = pkg[1] %} |
|
31 |
<li> |
|
32 |
<b><a href="https://launchpad.net/ubuntu/+source/{{ p }}/">{{ p }}</a>:</b> <a href="{{ url }}">{{ url }}</a> |
|
33 |
</li> |
|
34 |
{% endfor %} |
|
35 |
</ul> |
|
36 |
{% endfor %} |
|
37 |
</body> |
|
38 |
</html> |