mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
As of commit ea25f98
(Avoid overflow in updates table, 2014-05-22), long
package names in the updates statistics are chopped off. Add a title
attribute so that users at least get a tooltip with the full package
name and version.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
23 lines
847 B
PHP
23 lines
847 B
PHP
<h3><?= __("Recent Updates") ?></h3>
|
|
|
|
<a href="<?= get_uri('/rss/') ?>" title="Arch Package Updates RSS Feed" class="rss-icon"><img src="/images/feed-icon-14x14.png" alt="RSS Feed" /></a>
|
|
|
|
<table>
|
|
<tbody>
|
|
<?php foreach ($newest_packages->getIterator() as $row): ?>
|
|
<tr>
|
|
<td class="pkg-name">
|
|
<a href="<?= get_pkg_uri($row["Name"]); ?>" title="<?= htmlspecialchars($row["Name"]) . ' ' . htmlspecialchars($row["Version"]); ?>"><?= htmlspecialchars($row["Name"]) . ' ' . htmlspecialchars($row["Version"]); ?></a>
|
|
</td>
|
|
<td class="pkg-new">
|
|
<?php if ($row["ModifiedTS"] === $row["SubmittedTS"]): ?>
|
|
<img src="images/new.png" alt="New!" />
|
|
<?php endif; ?>
|
|
</td>
|
|
<td class="pkg-date">
|
|
<span><?= gmdate("Y-m-d H:i", intval($row["ModifiedTS"])); ?></span>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|