-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdailies.php
More file actions
25 lines (24 loc) · 792 Bytes
/
dailies.php
File metadata and controls
25 lines (24 loc) · 792 Bytes
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
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>eclipse communication framework dailies</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="default_style.css" type="text/css">
</head>
<body text="#000000" bgcolor="#ffffff" link="#0000ee" vlink="#551a8b" alink="#ff0000"><table width=100% BORDER=0 CELLPADDING=2 CELLSPACING=5 STYLE="page-break-before: always">
<h1>ECF Daily Downloads</h1>
<div>
<p>
</p>
<?php
$files=file("filelist.txt");
rsort($files);
foreach ($files as $file) {
echo '<tr> <td><p>
<a href="http://www.eclipse.org/downloads/download.php?file=/rt/ecf/dailies/' . $file .'">' . $file .'</a>
</p></td></tr>';
}
?>
</div>
</body>
</html>