Remove x86 and obsolete labels
Signed-off-by: Alexander Dudaev <aleksandr.dudayev@xored.com>
diff --git a/blog/atom.xml b/blog/atom.xml
index 6b0e75f..2712158 100644
--- a/blog/atom.xml
+++ b/blog/atom.xml
@@ -3,7 +3,7 @@
<title><![CDATA[RCP Testing Tool Blog]]></title>
<link href="https://www.eclipse.org/rcptt/atom.xml" rel="self"/>
<link href="https://www.eclipse.org/rcptt/"/>
- <updated>2017-08-18T07:34:51+00:00</updated>
+ <updated>2019-04-23T13:23:42+00:00</updated>
<id>https://www.eclipse.org/rcptt/blog</id>
<author>
<name><![CDATA[RCP Testing Tool Team]]></name> <email><![CDATA[rcptt-dev@eclipse.org]]></email> </author>
@@ -311,7 +311,7 @@
<p>On October, 23, we released a new bugfix version of RCP Testing Tool. The complete list of fixed issues is savailable on <a href="https://projects.eclipse.org/projects/technology.rcptt/releases/1.5.3/bugs">1.5.3 release page</a>, and the latest version can be downloaded from <a href="https://www.eclipse.org/rcptt/download">Downloads</a> page. In this topic I would like to outline a couple of my favourite improvements.</p>
-<h3 id="encryption-of-password-fields-during-recording-%28%7B%7Bm.bugzilla%28%22436965%22%29%7D%7D%29">Encryption of password fields during recording (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=436965">#436965</a>)</h3>
+<h3 id="encryption-of-password-fields-during-recording-%7B%7Bm.bugzilla%22436965%22%7D%7D">Encryption of password fields during recording (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=436965">#436965</a>)</h3>
<p>Now, if you type a password in a password field during recording, for example in a dialog like this</p>
diff --git a/download/index.php b/download/index.php
index 57fdf9a..3318364 100644
--- a/download/index.php
+++ b/download/index.php
@@ -25,11 +25,9 @@
return $result;
}
-function generateDownloadBlock($title, $baseUri, $repoUri, $mars=null, $runner = null) {
+function generateDownloadBlock($title, $baseUri, $repoUri, $runner = null) {
$html = "<h3>" . $title . "</h3>";
- $win32 = str_replace("[classifier]", "win32.win32.x86", $baseUri);
$win64 = str_replace("[classifier]", "win32.win32.x86_64", $baseUri);
- $linux32 = str_replace("[classifier]", "linux.gtk.x86", $baseUri);
$linux64 = str_replace("[classifier]", "linux.gtk.x86_64", $baseUri);
$macosx64 = str_replace("[classifier]", "macosx.cocoa.x86_64", $baseUri);
$html .= " <table class='downloads'>";
@@ -43,13 +41,11 @@
$html .= " <tr>";
$html .= " <td>";
$html .= " <ul>";
- $html .= " <li><a href='" . $win32 . "'>Windows 32-bit</a></li>";
$html .= " <li><a href='" . $win64 . "'>Windows 64-bit</a></li>";
$html .= " </ul>";
$html .= " </td>";
$html .= " <td>";
$html .= " <ul>";
- $html .= " <li><a href='" . $linux32 . "'>Linux 32-bit</a></li>";
$html .= " <li><a href='" . $linux64 . "'>Linux 64-bit</a></li>";
$html .= " </ul>";
$html .= " </td>";
@@ -60,7 +56,7 @@
$html .= " </td>";
$html .= " <td>";
$html .= " <ul>";
- $html .= " <li><a href='" . $repoUri . "'>Update Site$mars</a></li>";
+ $html .= " <li><a href='" . $repoUri . "'>Update Site</a></li>";
if (!empty($runner)) {
$html .= " <li><a href='" . $runner . "'>Test Runner</a></li>";
}
@@ -112,7 +108,6 @@
$latestRelease . " Release",
$relPrefix . "/ide/rcptt.ide-" . $latestRelease ."-[classifier].zip",
$relURI . $latestRelease . "/repository",
- " (Oxygen)",
$relPrefix . "/runner/rcptt.runner-" . $latestRelease . ".zip"
);
@@ -126,7 +121,6 @@
$latestNightlyUnqualified . "." . $latestNightlyQualifier . " Nightly",
$prefix . "/ide/rcptt.ide-" . $decoration . "-[classifier].zip",
$prefixLatest . "/repository",
- " (Oxygen)",
$prefix . "/runner/rcptt.runner-" . $decoration . ".zip"
);
$html .= "</div>";