summaryrefslogtreecommitdiff
blob: 4586c6f8da1cec965392fbb021f8fa9b5ee7db76 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Gentoo Universe Archives</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<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>
<table cellpadding="0" cellspacing="0" width="100%" border="0">
<tbody><tr>


<td class="logobox">
<a href="https://www.gentoo.org/"><img alt="Gentoo Logo" src="/images/gtop-s.jpg" width="193" height="88"></a><br>
<a href="https://www.gentoo.org/"><img alt="Gentoo Logo Side" src="/images/gbot-s.gif" width="193" height="31"></a>
</td>


<td class="linkbar">
<div class="menu">
<a href="https://www.gentoo.org/get-started/about/" class="menulink">About</a> |
          <a href="https://wiki.gentoo.org/wiki/Project:Gentoo" class="menulink">Projects</a> |
          <a href="https://www.gentoo.org/support/documentation" class="menulink">Docs</a> |
          <a href="https://forums.gentoo.org/" class="menulink">Forums</a> |
          <a href="https://www.gentoo.org/get-involved/mailing-lists/" class="menulink">Lists</a> |
          <a href="https://bugs.gentoo.org/" class="menulink">Bugs</a> |
          <a href="https://www.gentoo.org/downloads/" class="menulink">Get Gentoo!</a> |
          <a href="https://www.gentoo.org/support/" class="menulink">Support</a> |
          <a href="https://wiki.gentoo.org/wiki/Main_Page" class="menulink">Wiki</a> |
          <a href="https://planet.gentoo.org/" class="menulink">Planet</a>
</div></td>


</tr>
<tr>


<td class="leftmenu">
<img alt="Gentoo Spaceship" src="/images/gridtest.gif" align="right" height="96" width="132"><br clear="all"><br>

<div class='altmenu'>
<br>Bugs? Comments? Suggestions? <a href="https://wiki.gentoo.org/wiki/Project:Planet">Contact us!</a>

<br><br><b>Powered by:</b><br>
<a href="http://www.intertwingly.net/code/venus/">Planet Venus</a>

</div>
</td>


<td class="content">

<div id="intro">
<img src="/images/gentoo.gif"><p>Welcome to the <b>Gentoo Universe</b> archives.  Also available for <a href="http://planet.gentoo.org/archives/">Planet Gentoo</a>.</p>
</div>

<?php
	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 />";
	}
?>

</td></tr>


<tr><td colspan="2" class="footer">
Gentoo Design, Copyright 2001-2018 Gentoo Foundation, Inc.<br>
Views expressed in the content shown above do not necessarily represent the views of Gentoo Linux or the Gentoo Foundation.
</td></tr>
</tbody></table></body></html>