Skip to content

Commit 6a83a0e

Browse files
committed
add download page that shows all available downloads and the news.js for news
1 parent bd64988 commit 6a83a0e

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5+
<title>Arduino Eclipse plugin product download page</title>
6+
<link href="MyStyle.css" rel="Stylesheet" type="text/css">
7+
<body>
8+
9+
<div id="header">
10+
<a href="http://www.eclipse.org/"><img src="http://download.eclipse.org/eclipse/eclipse.org-common/stylesheets/header_logo.gif" width="163" height="68" border="0" alt="Eclipse Logo" class="logo" /></a>
11+
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" src="news.js"></SCRIPT>
12+
</div>
13+
<h1>here you can find product versions build by the build machine.</h1>
14+
product versions can be run without having to install eclipse as the product versions contain eclipse.<br>
15+
Yust download the correct version for your os unpack and start eclipse.
16+
You still need to configure (step 4 of the installation instructions)
17+
18+
19+
<h2>Linux 32 bit</h2><br>
20+
<?php
21+
$dir = "http://eclipse.baeyens.it/download/product";
22+
$dh = opendir("download/product");
23+
while ($f = readdir($dh)) {
24+
$fullpath = $dir."/".$f;
25+
if ($f{0} == "." || is_dir($fullpath)) continue;
26+
if (substr($f,0,18)=="linux.gtk.x86.opt.")
27+
{
28+
echo "<a href=\"$fullpath\" target=\"_blank\">$f</a>\n<br>";
29+
}
30+
}
31+
closedir($dh);
32+
?>
33+
<h2>win 32 bit</h2>
34+
<?php
35+
$dir = "http://eclipse.baeyens.it/download/product";
36+
$dh = opendir("download/product");
37+
while ($f = readdir($dh)) {
38+
$fullpath = $dir."/".$f;
39+
if ($f{0} == "." || is_dir($fullpath)) continue;
40+
if (substr($f,0,10)=="win32.x86.")
41+
{
42+
echo "<a href=\"$fullpath\" target=\"_blank\">$f</a>\n<br>";
43+
}
44+
}
45+
closedir($dh);
46+
?>
47+
48+
<br>
49+
</body>
50+
</html>
51+

Eclipse update site/WebContent/news.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)