blob: 3cd47b0195af2c2733c5f9ff45e953765901e28d (
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
|
{*
* Index page template
*
* Copyright © 2010 Remi Collet
*
* This file is part of rpmphp.
*
* rpmphp is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* rpmphp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with rpmphp. If not, see <http://www.gnu.org/licenses/>.
*}
<h2>Package reports</h2>
<ul id="reports">
<li><a href="rpm.php?type=pecl">PECL Extensions in Fedora</a> with upstream information</li>
<li><a href="rpm.php?type=pear">PEAR Extensions in Fedora</a> with upstream information</li>
<li><a href="rpm.php?type=R">R Extensions in Fedora</a> with upstream information</li>
<li><a href="all.php">All Packages in Fedora</a></li>
</ul><!-- /reports -->
<table id="list-packages">
<caption><strong>Analysed repositories</strong></caption>
<thead>
<tr>
<th>Main</th>
<th>Active</th>
<th>Sub</th>
<th>Url</th>
<th>Last update</th>
</tr>
</thead>
<tbody>
{if $error}
<tr>
<td colspan="5">{$error}</td>
</tr>
{else}
{foreach from=$repositories item=repo name=rlist}
<tr class="{if $smarty.foreach.rlist.iteration % 2 eq 0}even{else}odd{/if}">
<td><strong>{$repo.repo_name}</strong></td>
<td>{$repo.active}</td>
<td>{$repo.sub_name}</td>
<td><a href="{$repo.url}">{$repo.url}</a></td>
<td>{$repo.date}</td>
</tr>
{/foreach}
{/if}
</tbody>
</table><!-- /list-pacakges -->
<h2>Script sources</h2>
<p>License : RPMPHP version {$rpmphp_version} is <a href='http://www.gnu.org/licenses/agpl.html' alt='AGPL'>AGPL</a>,
FedoraClient version {$fedcli_version} is <a href='http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html' alt='LGPLv2+'>LGPLv2+</a>,
<p>You can retrieve the current application sources from my <a href='http://github.com/remicollet/rpmphp'>GIT repository on github.com</a>.</p>
<p>Feedbacks, RFE and patches are welcome.</p>
|