blob: a4980802344d2750726a4fce73cbd66f41b10690 (
plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{if $error}
{if $error eq 'missing_name'}
<h1>Missing package name</h1>
<form action="?" method="get">
<p>You have not specified any package name.</p>
<p><label for="rpm">Please enter one package name: </label><input type="text" name="rpm" id="rpm"/> <input type="submit"/></p>
</form>
{else}
<p id="error"><strong>Ooops, an error occured:</strong><br/>{$error}</p>
{/if}
{/if}
{if $pkgdb}
<p id="pkgdb-link"><a href="?rpm={$name}">Hide pkgdb informations</a></p>
{else}
<p id="pkgdb-link"><a href="?rpm={$name}&pkgdb=1">Show more informations from pkgdb</a></p>
{/if}
<table id="upstream">
<caption>Upstream info</caption>
{foreach from=$summary key=k item=v}
<tr>
<th>{$k}:</th>
<td{if $k eq 'Description'} id="{$name}_desc"{/if}>
{if $k eq 'URL' or $k eq 'ViewVC'}
<a href="{$v}">{$v}</a>
{else}
{$v}
{/if}
</td>
</tr>
{/foreach}
</table>
{if is_array($packages) and count($packages) > 0}
<table id="list-packages">
<caption>Packages available in Fedora Repositories</caption>
<thead>
<tr>
<th>Branch</th>
<th>Repository</th>
<th>Version-Release</th>
<th>Owner</th>
<th>Co-maintainers</th>
</tr>
</thead>
<tbody>
{assign var='prev' value=''}
{foreach from=$packages item=p}
<tr>
<td>{if $p->repo_main neq $prev}<strong>{$p->repo_main}</strong>{/if}</td>
<td>{$p->repo_sub}</td>
<td>
{if $p->epoch}{$p->epoch}:{/if}
{$p->ver}-{$p->rel}
</td>
<td{if $p->repo_main neq $prev} id="pkgdb_{$p->repo_main}_owner"{/if}>
{if $p->repo_main neq $prev}
{if $fedpkg}
{getBranchPeople branch=$p->repo_main people='owner'}
{else}
{$ajax_infos}
{/if}
{/if}
</td>
<td{if $p->repo_main neq $prev} id="pkgdb_{$p->repo_main}_maintainers"{/if}>
{if $p->repo_main neq $prev}
{if $fedpkg}
{getBranchPeople branch=$p->repo_main people='people'}
{else}
{$ajax_infos}
{/if}
{/if}
</td>
</tr>
{assign var='prev' value=$p->repo_main}
{/foreach}
</tbody>
</table>
{/if}
|