summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2018-07-13 13:55:54 -0400
committerBrian Evans <grknight@gentoo.org>2018-07-13 13:55:54 -0400
commit88f73ba789fb0aeb1037a89b0864a3ad2869d4aa (patch)
tree0b5f9b2ad753976d6f8abbafe401efafe09b3ab7
parentarchives: fix header (diff)
downloadplanet-88f73ba789fb0aeb1037a89b0864a3ad2869d4aa.tar.gz
planet-88f73ba789fb0aeb1037a89b0864a3ad2869d4aa.tar.bz2
planet-88f73ba789fb0aeb1037a89b0864a3ad2869d4aa.zip
Modernize the archive listing with SPL, headings and columns
-rw-r--r--archives/planet/index.php34
-rw-r--r--archives/universe/index.php34
2 files changed, 50 insertions, 18 deletions
diff --git a/archives/planet/index.php b/archives/planet/index.php
index 6a2c70d..4d58783 100644
--- a/archives/planet/index.php
+++ b/archives/planet/index.php
@@ -7,6 +7,11 @@
<link type="image/x-icon" href="/favicon.ico" rel="shortcut icon">
<link rel="stylesheet" href="/planet.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="Planet Gentoo" href="rss20.xml">
+<style type="text/css">
+.row:after,.row:before{display:table;content:" "}
+.row:after{clear:both}
+div.archive-entry { float: left; width: 25%; }
+</style>
</head>
<body>
@@ -59,17 +64,28 @@
</div>
<?php
- $scandir = scandir('./', 1);
- echo "<ul>";
- foreach ($scandir as $curdir) {
- if ( substr($curdir,0,5) == "index" || $curdir == ".." || $curdir == "." ) continue;
- $cscan = scandir('./' . $curdir, 1);
- foreach($cscan as $filename) {
- if ( $filename == "." || $filename == ".." ) continue;
- echo "<li> <a href='$curdir/$filename'>$filename</a></li>\n";
+ class SortedFileIterator extends SplHeap {
+ public function __construct(Iterator $iterator) {
+ foreach($iterator as $item) {
+ $this->insert($item);
+ }
}
+ public function compare($b, $a) {
+ return strcmp($b->getRealpath(), $a->getRealpath());
+ }
+ }
+ foreach (new SortedFileIterator(new FilesystemIterator('.')) as $entry) {
+ if (!$entry->isDir()) continue;
+ $path = $entry->getFileName();
+ echo "<div class='dateheading'>$path</div><div class='row'>";
+ foreach (new SortedFileIterator(new FilesystemIterator($entry)) as $file) {
+ if (!$file->isFile()) continue;
+ $filename = $file->getFileName();
+ $basename = $file->getBaseName('.html');
+ echo "<div class='archive-entry'> <a href='$path/$filename'>{$basename}</a></div>\n";
+ }
+ echo "</div><br />";
}
- echo "</ul>";
?>
</td></tr>
diff --git a/archives/universe/index.php b/archives/universe/index.php
index ac212f5..4586c6f 100644
--- a/archives/universe/index.php
+++ b/archives/universe/index.php
@@ -7,6 +7,11 @@
<link type="image/x-icon" href="/favicon.ico" rel="shortcut icon">
<link rel="stylesheet" href="/planet.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="Planet Gentoo" href="rss20.xml">
+<style type="text/css">
+.row:after,.row:before{display:table;content:" "}
+.row:after{clear:both}
+div.archive-entry { float: left; width: 25%; }
+</style>
</head>
<body>
@@ -59,17 +64,28 @@
</div>
<?php
- $scandir = scandir('./', 1);
- echo "<ul>";
- foreach ($scandir as $curdir) {
- if ( substr($curdir,0,5) == "index" || $curdir == ".." || $curdir == "." ) continue;
- $cscan = scandir('./' . $curdir, 1);
- foreach($cscan as $filename) {
- if ( $filename == "." || $filename == ".." ) continue;
- echo "<li> <a href='$curdir/$filename'>$filename</a></li>\n";
+ class SortedFileIterator extends SplHeap {
+ public function __construct(Iterator $iterator) {
+ foreach($iterator as $item) {
+ $this->insert($item);
+ }
}
+ public function compare($b, $a) {
+ return strcmp($b->getRealpath(), $a->getRealpath());
+ }
+ }
+ foreach (new SortedFileIterator(new FilesystemIterator('.')) as $entry) {
+ if (!$entry->isDir()) continue;
+ $path = $entry->getFileName();
+ echo "<div class='dateheading'>$path</div><div class='row'>";
+ foreach (new SortedFileIterator(new FilesystemIterator($entry)) as $file) {
+ if (!$file->isFile()) continue;
+ $filename = $file->getFileName();
+ $basename = $file->getBaseName('.html');
+ echo "<div class='archive-entry'> <a href='$path/$filename'>{$basename}</a></div>\n";
+ }
+ echo "</div><br />";
}
- echo "</ul>";
?>
</td></tr>