-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistros.rhtml
68 lines (67 loc) · 2.43 KB
/
distros.rhtml
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
<!doctype html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='distro.css'/>
<link rel='stylesheet' type='text/css' media="print" href='print.css'/>
<title>Distro EOL dates</title>
</head>
<body>
<div id='tablewrapper'>
<table>
<tr>
<th>Distro</th>
<th>Codename</th>
<th>Version</th>
<th>Release Date</th>
<th>End of Life</th>
<th>Kernel</th>
<th>Apache</th>
<th>PHP</th>
<th>MySQL</th>
<th>GCC</th>
<th>init</th>
</tr>
<% for distro in distros %>
<% distro["releases"].each_with_index do |release,i| %>
<% if release["state"] %>
<tr class='<%=release["state"]%>'>
<% else %>
<tr class='alive'>
<% end %>
<% if i == 0 %>
<td class='distro' rowspan='<%=distro['releases'].length%>'><%=distro["distro"]%></td>
<% end %>
<td class='data codename'>“<%=release["codename"] or "-" %>”</td>
<td class='data version'><%=release["version"]%></td>
<td class='data release'><%=release["release"]%></td>
<td class='data eol'><%=release["eol"]%></td>
<td class='data kernel'><%=release["kernel"] or "unknown"%></td>
<td class='data apache'><%=release["apache"] or "unknown"%></td>
<td class='data php'><%=release["php"] or "unknown"%></td>
<td class='data mysql'><%=release["mysql"] or "unknown"%></td>
<td class='data gcc'><%=release["gcc"] or "unknown"%></td>
<td class='data init'><%=release["init"] or "unknown"%></td>
</tr>
<% end %>
<% end %>
</table>
</div>
<p>Data last updated: <%=updated%></p>
<div id='meta'>
<p><a href=<%=distrofile%>>Raw Data</a></p>
<p>Non-LTS ubuntu releases aren't included because their lifecycle is too short for serious servers.</a>
<p>Errors/Pull Requests on <a href='https://github.com/jiphex/distro.re'>github</a> or via <a href='mailto:james+distro@tlyk.eu'>email</a>.</p>
<p>Sources:
<ul>
<li><a href='https://wiki.ubuntu.com/Releases'/>Ubuntu</a> <a href='http://packages.ubuntu.com/'>(Packages)</a></li>
<li><a href='https://wiki.debian.org/DebianReleases'/>Debian</a> <a href='https://packages.debian.org/'/>(Packages)</a> <a href='https://wiki.debian.org/LTS'/>(LTS)</a></li>
<li><a href='http://wiki.centos.org/FAQ/General'>CentOS</a></li>
<li>Others...</li>
</ul>
</p>
</div>
<div id='attrib'>
Printed from https://distro.re
</div>
</body>
</html>