Skip to content

Commit 2ae4f89

Browse files
author
jantje
committed
more website updates
1 parent 26735a0 commit 2ae4f89

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

Eclipse update site/WebContent/fragments/file-buttons.php

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function listFiles($prefix) {
66
global $filter;
77
$filter = $prefix;
88
date_default_timezone_set('UTC');
9-
$location="../download/product";
9+
$location="/customers/0/9/d/baeyens.it/httpd.www/eclipse/download/product";
1010
echo "<!-- listing files in $location with prefix $prefix -->";
1111
$dir = opendir($location);
1212
while(false != ($file = readdir($dir))) {
@@ -15,14 +15,6 @@ function listFiles($prefix) {
1515
}
1616
}
1717
closedir($dir);
18-
$location="../../download/product";
19-
$dir = opendir($location);
20-
while(false != ($file = readdir($dir))) {
21-
if(($file != ".") and ($file != "..") and ($file != "index.php")) {
22-
$files[] = $location."/".$file; // put in array.
23-
}
24-
}
25-
closedir($dir);
2618
$files = array_filter($files, "filter");
2719
sort($files);
2820
$count = count($files);

Eclipse update site/WebContent/stable-osx.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ <h1>OsX Latest Stable <small>runs smoothly and nicely</small></h1>
4141
<h3>Product bundle</h3><a name="product">&nbsp;</a>
4242
<p>Strongly advised when you are new to the Arduino eclipse IDE.</p>
4343
<p>This is the simplest way to start using Arduino Eclipse as it bundles in one single download a complete setup including a stable version of the Eclipse CDT and the latest stable build of our great plugin!</p>
44+
<p>Watch this movie to see how easy it is to get started:</p>
45+
<iframe width="560" height="315" src="https://www.youtube.com/embed/HE5iYxv-B-o" frameborder="0" allowfullscreen></iframe>
46+
4447
<div class="row">
4548
<ng-include src="'fragments/file-buttons.php?arch=mac&ver=3.0'"></ng-include>
4649
</div>

Eclipse update site/WebContent/stable-win.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ <h1>Windows Latest Stable <small>runs smoothly and nicely</small></h1>
4141
<h3>Product bundle</h3><a name="product">&nbsp;</a>
4242
<p>Strongly advised when you are new to the Arduino eclipse IDE.</p>
4343
<p>This is the simplest way to start using Arduino Eclipse as it bundles in one single download a complete setup including a stable version of the Eclipse CDT and the latest stable build of our great plugin!</p>
44+
<p>Watch this movie to see how easy it is to get started:</p>
45+
<iframe width="560" height="315" src="https://www.youtube.com/embed/HE5iYxv-B-o" frameborder="0" allowfullscreen></iframe>
46+
4447
<div class="row">
4548
<ng-include src="'fragments/file-buttons.php?arch=win&ver=3.0'"></ng-include>
4649
</div>

Eclipse update site/WebContent/stable.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<?php
2+
if(isset($_GET["OS"]) )
3+
$OS = $_GET["OS"] ;
4+
$os = $OS; ?>
5+
16
<!DOCTYPE html>
27
<html lang="en">
38
<head>

0 commit comments

Comments
 (0)