Bug 506658 - Eclipse header/banner logo too big
Migrating downloads.eclipse.org errors files to git.
There was a file names 5megfile. Need to confirm if this is needed. The
file is not included in this commit.
Change-Id: I1c58ade935cb22c39828ef18abb5dab01311c810
Signed-off-by: Christopher Guindon <chris.guindon@eclipse.org>
diff --git a/403.html b/403.html
index 3a15304..a1d142d 100644
--- a/403.html
+++ b/403.html
@@ -1,4 +1,10 @@
<html>
-<head><title>Access Forbidden</title></head>
-<body><h2>Access Forbidden</h2>Your access to this page is denied. Please contact webmaster@eclipse.org if you think you should have access to this page.</body>
-</html>
+ <head>
+ <title>Access Forbidden</title>
+ </head>
+ <body>
+ <h1>Access Forbidden</h1>
+ <p>Your access to this page is denied. Please contact webmaster@eclipse.org
+ if you think you should have access to this page.</p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/404.html b/404.html
index aa0ac8e..96d18d4 100644
--- a/404.html
+++ b/404.html
@@ -1,29 +1,23 @@
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
-<head>
-<title>Not Found</title>
-<link rel="stylesheet" href="/default_style.css">
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body text="#000000" bgcolor="#ffffff" link="#0000ee" vlink="#551a8b" alink="#ff0000">
- <font class=indextop> 404 file not found</font></td>
-<table border=0 cellspacing=5 cellpadding=2 width="100%" >
- <tr>
- <td colspan="2">
- <p> <br>
- <b><font size="3">We're sorry! <br>
- The page you requested cannot be found. You can <a href="http://www.eclipse.org/search/search.cgi">Search</a>
- to find the correct url. </font></b></p>
- </td>
- </tr>
-</table>
-<br><br>
-<p>For software licensing,website <a href="http://www.eclipse.org/legal/privacy.php">privacy
- policy</a>, website <a href="http://www.eclipse.org/legal/termsofuse.php">terms
- of use</a>, and legal FAQs, please see our <a href="http://www.eclipse.org/legal/">legal
- stuff</a> page. Eclipse logos and graphics are found on our <a href="/artwork/">logos</a>
- page. For problems with the eclipse.org site, please contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>
- or read the <a href="http://wiki.eclipse.org/index.php/Webmaster_FAQ">webmaster FAQ</a> for answers to
- common questions!</p>
-</body>
-</html>
+ <head>
+ <title>Not Found</title>
+ <link rel="stylesheet" href="/default_style.css">
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ </head>
+ <body>
+ <h1> 404 file not found</h1>
+ <h2>We're sorry!</h2>
+ <p> The page you requested cannot be found. You can
+ <a href="http://www.eclipse.org/search/search.cgi">Search</a> to find the correct url.</p>
+
+ <p>For software licensing,website <a href="http://www.eclipse.org/legal/privacy.php">privacy
+ policy</a>, website <a href="http://www.eclipse.org/legal/termsofuse.php">terms
+ of use</a>, and legal FAQs, please see our <a href="http://www.eclipse.org/legal/">legal
+ stuff</a> page. Eclipse logos and graphics are found on our <a href="/artwork/">logos</a>
+ page. For problems with the eclipse.org site, please contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>
+ or read the <a href="http://wiki.eclipse.org/index.php/Webmaster_FAQ">webmaster FAQ</a> for answers to
+ common questions!
+ </p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/404.php b/404.php
index 3b9459f..1089f0e 100644
--- a/404.php
+++ b/404.php
@@ -1,24 +1,32 @@
-<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
- #*****************************************************************************
- #
- # 404.php
- #
- # Author: Denis Roy
- # Date: 2007-11-13
- #
- # Description: login page for site login
- #
- #****************************************************************************
+<?php
+/*******************************************************************************
+ * Copyright (c) 2014 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Denis Roy (Eclipse Foundation)
+ * Christopher Guindon (Eclipse Foundation)
+ *******************************************************************************/
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
- #
- # Begin: page-specific settings. Change these.
- $pageTitle = "404 File not found";
- $pageAuthor = "";
- $pageKeywords = "";
- $Nav = null;
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
- include("content/en_" . $App->getScriptName());
+# Begin: page-specific settings. Change these.
+$pageTitle = "404 File not found";
+$pageKeywords = "";
+$pageAuthor = "";
- # Generate the web page
- $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
+// Place your html content in a file called content/en_pagename.php
+ob_start();
+include("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+# Generate the web page
+$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/_projectCommon.php b/_projectCommon.php
deleted file mode 100755
index 9d68b68..0000000
--- a/_projectCommon.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
- $theme = "solstice";
-?>
\ No newline at end of file
diff --git a/content/en_404.php b/content/en_404.php
index eae1818..5d66867 100644
--- a/content/en_404.php
+++ b/content/en_404.php
@@ -1,18 +1,40 @@
<?php
- $html = <<<EOHTML
-<div id="fullcolumn"><div id="midcolumn"><h1>$pageTitle</h1><p>We're sorry, the page you requested cannot be found. Below are some links that may be useful.</p>
-<ul>
-<li><a href="//eclipse.org">Eclipse home</a></li>
-<li><a href="//eclipse.org/projects/searchpage.php">Search</a> our site</li>
-<li>Website <a href="//eclipse.org/legal/privacy.php">privacy policy</a> and <a href="//eclipse.org/legal/termsofuse.php">terms of use</a></li>
-<li><a href="//eclipse.org/legal">Legal documents</a></li>
-<li><a href="//eclipse.org/artwork/">Logos</a> and artwork</li>
-<li><a href="//wiki.eclipse.org/index.php/Webmaster_FAQ">webmaster FAQ</a></li>
-<li><a href="mailto:webmaster@eclipse.org">Email the webmaster</a></li>
-<br /><br />
-</div><div id="rightcolumn"><div class="sideitem">
-<h6>Useful links</h6><ul><li><a href="//archive.eclipse.org">Eclipse project archives</a></li>
-<li><a href="//download.eclipse.org/eclipse/downloads">Eclipse project downloads</a></li>
-</ul></div></div></div>
-EOHTML;
-?>
\ No newline at end of file
+/*******************************************************************************
+ * Copyright (c) 2014 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Denis Roy (Eclipse Foundation)
+ * Christopher Guindon (Eclipse Foundation)
+ *******************************************************************************/
+//if name of the file requested is the same as the current file, the script will exit directly.
+if(basename(__FILE__) == basename($_SERVER['PHP_SELF'])){exit();}
+?>
+<div id="fullcolumn">
+ <div id="midcolumn">
+ <h1><?php print $pageTitle;?></h1>
+ <p>We're sorry, the page you requested cannot be found. Below are some links that may be useful.</p>
+ <ul>
+ <li><a href="//eclipse.org">Eclipse home</a></li>
+ <li><a href="//eclipse.org/projects/searchpage.php">Search</a> our site</li>
+ <li>Website <a href="//eclipse.org/legal/privacy.php">privacy policy</a> and <a href="//eclipse.org/legal/termsofuse.php">terms of use</a></li>
+ <li><a href="//eclipse.org/legal">Legal documents</a></li>
+ <li><a href="//eclipse.org/artwork/">Logos</a> and artwork</li>
+ <li><a href="//wiki.eclipse.org/index.php/Webmaster_FAQ">webmaster FAQ</a></li>
+ <li><a href="mailto:webmaster@eclipse.org">Email the webmaster</a></li>
+ </ul>
+ <br /><br />
+ </div>
+ <div id="rightcolumn">
+ <div class="sideitem">
+ <h6>Useful links</h6>
+ <ul>
+ <li><a href="//archive.eclipse.org">Eclipse project archives</a></li>
+ <li><a href="//download.eclipse.org/eclipse/downloads">Eclipse project downloads</a></li>
+ </ul>
+ </div>
+ </div>
+</div>
\ No newline at end of file
diff --git a/denied.html b/denied.html
index feeaa52..86a0a52 100644
--- a/denied.html
+++ b/denied.html
@@ -1,4 +1,10 @@
<html>
- <head><title>Access Denied</title></head>
- <body><h2>Access Denied</h2>Your access to this server has been denied because of abuse. Please contact webmaster@eclipse.org.</body>
-</html>
+ <head>
+ <title>Access Denied</title>
+ </head>
+ <body>
+ <h1>Access Denied</h1>
+ <p>Your access to this server has been denied because of abuse.
+ Please contact webmaster@eclipse.org.</p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/403.html b/download.eclipse.org/403.html
new file mode 100644
index 0000000..d071463
--- /dev/null
+++ b/download.eclipse.org/403.html
@@ -0,0 +1,12 @@
+<html>
+ <head>
+ <title>Access Forbidden</title>
+ </head>
+ <body>
+ <h1>Access Forbidden</h1>
+ <p>The file permissions are either wrong, or there is no default index file for
+ this directory.<br /><br />
+ Please consider filing <a href="https://bugs.eclipse.org/bugs/">a bug</a>
+ against the project to let them know.</p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/404.html b/download.eclipse.org/404.html
new file mode 100644
index 0000000..3d43f39
--- /dev/null
+++ b/download.eclipse.org/404.html
@@ -0,0 +1,294 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Project download area</title>
+ <meta name="author" content="Christopher Guindon"/>
+ <meta name="keywords" content="eclipse.org, Eclipse Foundation"/>
+ <link rel="shortcut icon" href="/eclipse.org-common/themes/solstice/public/images/favicon.ico"/>
+ <base href="http://download.eclipse.org/" />
+ <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100" rel="stylesheet" type="text/css">
+ <link rel="stylesheet" href="/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css">
+ <meta property="og:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta property="og:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-200x200.png"/>
+ <meta property="og:title" content="HTML Template"/>
+ <meta property="og:image:width" content="200"/>
+ <meta property="og:image:height" content="200"/>
+ <meta itemprop="name" content="HTML Template"/>
+ <meta itemprop="description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta itemprop="image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <meta name="twitter:site" content="@EclipseFdn"/>
+ <meta name="twitter:card" content="summary"/>
+ <meta name="twitter:title" content="HTML Template"/>
+ <meta name="twitter:url" content="http://www.eclipse.org/eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"/>
+ <meta name="twitter:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta name="twitter:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <script> var eclipse_org_common = {"settings":{"cookies_class":{"name":"eclipse_settings","enabled":1}}}</script>
+ </head>
+ <body id="body_solstice">
+ <a class="sr-only" href="#content">Skip to main content</a>
+ <!--
+ <div class="clearfix toolbar-container-wrapper">
+ <div class="container">
+ <div class="text-right toolbar-row row hidden-print">
+ <div class="col-md-24 row-toolbar-col">
+ <ul class="list-inline">
+ <li><a href="https://dev.eclipse.org/site_login/createaccount.php"><i class="fa fa-user fa-fw"></i> Create account</a></li>
+ <li><a href="https://dev.eclipse.org/site_login/?takemeback=http://www.eclipse.org//eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"><i class="fa fa-sign-in fa-fw"></i> Log in</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+ -->
+ <header role="banner" id="header-wrapper">
+ <div class="container">
+ <div class="row" id="header-row">
+ <div class="hidden-xs col-sm-8 col-md-6 col-lg-5" id="header-left">
+ <div class="wrapper-logo-default"><a href="http://www.eclipse.org/"><img class="logo-eclipse-default img-responsive hidden-xs" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-426x100.png"/></a></div>
+ </div>
+ <div class="col-sm-10 col-md-8 col-lg-5 hidden-print hidden-xs pull-right" id="header-right">
+ <div class="row">
+ <div class="col-md-24">
+ <div id="custom-search-form" class="reset-box-sizing">
+ <script>
+ (function() {
+ var cx = '011805775785170369411:15ipmpflp-0';
+ var gcse = document.createElement('script');
+ gcse.type = 'text/javascript';
+ gcse.async = true;
+ gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
+ '//cse.google.com/cse.js?cx=' + cx;
+ var s = document.getElementsByTagName('script')[0];
+ s.parentNode.insertBefore(gcse, s);
+ })();
+ </script>
+ <gcse:searchbox-only></gcse:searchbox-only>
+ </div>
+ </div>
+ </div>
+ <div id="btn-call-for-action"><a href="https://www.eclipse.org/donate/" class="btn btn-huge btn-info"><i class="fa fa-star"></i> Donate</a></div>
+ </div>
+ <div class="col-sm-14 col-md-16 col-lg-19 reset" id="main-menu-wrapper">
+ <div class="navbar yamm" id="main-menu">
+ <div id="navbar-collapse-1" class="navbar-collapse collapse">
+ <ul class="nav navbar-nav">
+ <li class="visible-thin"><a href="http://www.eclipse.org/downloads/" target="_self">Download</a></li>
+ <li><a href="http://www.eclipse.org/users/" target="_self">Getting Started</a></li>
+ <li><a href="http://www.eclipse.org/membership/" target="_self">Members</a></li>
+ <li><a href="http://www.eclipse.org/projects/" target="_self">Projects</a></li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Community <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Participate <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Working Groups <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </li>
+ <!-- More -->
+ <li class="dropdown eclipse-more hidden-xs">
+ <a data-toggle="dropdown" class="dropdown-toggle">More<b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li>
+ <!-- Content container to add padding -->
+ <div class="yamm-content">
+ <div class="row">
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Community</strong></p>
+ </li>
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Participate</strong></p>
+ </li>
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Working Groups</strong></p>
+ </li>
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </div>
+ </div>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <div class="wrapper-logo-mobile"><a class="navbar-brand visible-xs" href="http://www.eclipse.org/"><img class="logo-eclipse-default-mobile img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png"/></a></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </header>
+ <section class="hidden-print default-breadcrumbs" id="breadcrumb">
+ <div class="container">
+ <h3 class="sr-only">Breadcrumbs</h3>
+ <div class="col-xs-24">
+ <ol class="breadcrumb">
+ <li><a href="//eclipse.org/">Home</a></li>
+ <li><a href="//eclipse.org/downloads/">Downloads</a></li>
+ <li class="active">Project Download Area</li>
+ </ol>
+ </div>
+ </div>
+ </section>
+ <!-- /#breadcrumb -->
+ <main class="no-promo">
+ <div class="novaContent container" id="novaContent">
+ <div id="midcolumn">
+ <h1>Eclipse Downloads</h1>
+ <p>This page is not designed to be web-accessible, as the project has not created a web page here. You can try the following:</p>
+ <ul>
+ <li>Contact the project members on their user <a href="//eclipse.org/forums">forum</a>.</li>
+ <li>Browse the directory contents to find the file you're looking for.</li>
+ <li>Go to the <a href="//eclipse.org/downloads/">main Downloads page</a>.</li>
+ </ul>
+ <!-- DNR:FILE -->
+ <h2>Other useful links</h2>
+ <ul>
+ <li><a href="//eclipse.org">Eclipse home</a> | <a href="//eclipse.org/downloads">Downloads Home</a></li>
+ <li><a href="mailto:webmaster@eclipse.org">Email the webmaster</a></li>
+ </ul>
+ </div>
+ <div class="col-md-6">
+ <div class="sideitem">
+ <h6>Useful links</h6>
+ <ul>
+ <li><a href="//archive.eclipse.org">Eclipse project archives</a></li>
+ <li><a href="//download.eclipse.org/eclipse/downloads">Eclipse project downloads</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </main>
+ <p id="back-to-top">
+ <a class="visible-xs" href="#top">Back to the top</a>
+ </p>
+ <footer role="contentinfo" id="solstice-footer">
+ <div class="container">
+ <div class="row">
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-eclipse-foundation">
+ <h2 class="section-title">Eclipse Foundation</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/org/">About us</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/contact.php">Contact Us</a></li>
+ <li><a href="http://www.eclipse.org/donate">Donate</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/">Governance</a></li>
+ <li><a href="http://www.eclipse.org/artwork/">Logo and Artwork</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/directors.php">Board of Directors</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-legal">
+ <h2 class="section-title">Legal</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/legal/privacy.php">Privacy Policy</a></li>
+ <li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
+ <li><a href="http://www.eclipse.org/legal/copyright.php">Copyright Agent</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/epl-v10.php">Eclipse Public License </a></li>
+ <li><a href="http://www.eclipse.org/legal/">Legal Resources </a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-useful-links">
+ <h2 class="section-title">Useful Links</h2>
+ <ul class="nav">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="//help.eclipse.org/">Documentation</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="//marketplace.eclipse.org">Marketplace</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-other">
+ <h2 class="section-title">Other</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/ide/">IDE and Tools</a></li>
+ <li><a href="http://www.eclipse.org/projects">Community of Projects</a></li>
+ <li><a href="http://www.eclipse.org/org/workinggroups/">Working Groups</a></li>
+ </ul>
+ <ul class="list-inline social-media">
+ <li><a href="https://twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
+ <li><a href="https://plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
+ <li><a href="https://www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i> </a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
+ </ul>
+ </section>
+ <div id="copyright" class="col-sm-offset-1 col-sm-14 col-md-24 col-md-offset-0">
+ <span class="hidden-print">
+ <div class="wrapper-logo-eclipse-white"><a href="http://www.eclipse.org"><img class="logo-eclipse-white img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-332x78.png"/></a></div>
+ </span>
+ <p id="copyright-text">Copyright © 2016 The Eclipse Foundation. All Rights Reserved.</p>
+ </div>
+ <a href="#" class="scrollup">Back to the top</a>
+ </div>
+ </div>
+ </footer>
+ <!-- Placed at the end of the document so the pages load faster -->
+ <script src="/eclipse.org-common/themes/solstice/public/javascript/main.min.js"></script>
+ <script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-910670-2']);
+ _gaq.push(['_trackPageview']);
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+ </script>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/404.php b/download.eclipse.org/404.php
new file mode 100644
index 0000000..35c713e
--- /dev/null
+++ b/download.eclipse.org/404.php
@@ -0,0 +1,121 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2013 Eclipse Foundation, Inc.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eclipse Foundation - initial API and implementation
+ *******************************************************************************/
+ $browser = $_SERVER['HTTP_USER_AGENT'];
+ # Send short 404 for non-human browsers
+ if(
+ strpos($browser, "Jakarta") !== FALSE
+ || strpos($browser, "Java/") !== FALSE
+ || strpos($browser, "Slurp") !== FALSE
+ || stripos($browser, "bot") !== FALSE
+ || strpos($browser, "bing") !== FALSE
+ || strpos($browser, "p2/") !== FALSE
+ || strpos($browser, "Wget") !== FALSE
+ || strpos($browser, "Googlebot/") !== FALSE
+ || strpos($browser, "apacheHttpClient") !== FALSE
+ || strpos($browser, "Apache-HttpClient/") !== FALSE
+ || stripos($browser, "spider") !== FALSE
+ || strpos($browser, "Apache-Maven/") !== FALSE
+ || strpos($browser, "Apache Ivy/") !== FALSE
+ || strpos($browser, "HTTP-Tiny/") !== FALSE
+ || strpos($browser, "Archiva") !== FALSE
+ || strpos($browser, "Artifactory/") !== FALSE
+ || strpos($browser, "Gradle/") !== FALSE
+ || strpos($browser, "Finjan") !== FALSE
+ || strpos($browser, "Aether") !== FALSE
+ || strpos($browser, "m2e/") !== FALSE
+ || strpos($browser, "Debian APT/") !== FALSE
+ || strpos($browser, "developer fusion") !== FALSE
+ || strpos($browser, "Genuitec") !== FALSE
+ || strpos($browser, "netBeans") !== FALSE
+ ) {
+ echo "404 Not Found";
+ }
+ else {
+ $_SERVER['REQUEST_URI'] = str_replace("?d", "", $_SERVER['REQUEST_URI']);
+ $dir = $_SERVER['DOCUMENT_ROOT'] . urldecode($_SERVER['REQUEST_URI']);
+ $dir_html = "";
+ $is_p2 = false;
+
+ $initial_state_string = "Show";
+ $initial_state_style = "none";
+ if($_SERVER['QUERY_STRING'] == "d") {
+ $initial_state_string = "Hide";
+ $initial_state_style = "inline";
+ }
+ if(is_dir($dir)) {
+ $files = array();
+ $dirs = array();
+ if ($dh = opendir($dir)) {
+ $dir_html = "<p><a id='togglelabel' href='#' onclick='fnToggleDirList();return false;'>$initial_state_string Directory Contents.</a></p><div id='dirlist' style='display:$initial_state_style;'>";
+ while (($file = readdir($dh)) !== false) {
+ if (filetype($dir . $file) == "dir") {
+ $dirs[] = $file;
+ }
+ else {
+ $files[] = $file;
+
+ if(strpos($file, "artifacts.jar") !== FALSE
+ || strpos($file, "artifacts.xml") !== FALSE
+ || strpos($file, "compositeArtifacts.jar") !== FALSE
+ || strpos($file, "compositeArtifacts.xml") !== FALSE) {
+ # p2 repo
+ $is_p2 = true;
+ }
+ }
+ }
+ closedir($dh);
+ asort($dirs);
+ asort($files);
+
+ foreach ($dirs as $directory) {
+ if($directory != "." ) {
+ $dir_html .= "<img src='http://dev.eclipse.org/small_icons/places/folder.png'><a href='" . $_SERVER['REQUEST_URI'] . "$directory/?d'> " . $directory . "</a><br />\n";
+ }
+ }
+ foreach ($files as $file) {
+ $dir_html .= "<img src='http://dev.eclipse.org/small_icons/actions/edit-copy.png'><a href='" . $_SERVER['REQUEST_URI'] . "$file'> " . $file . "</a><br />\n";
+ }
+
+ $dir_html .= "</div><script language='javascript' src='/errors/js.js'></script>";
+ }
+ if($is_p2) {
+ # p2
+ $html = file_get_contents("404_p2.html");
+ }
+ else {
+ $html = file_get_contents("404.html");
+ }
+ $html = str_replace("<!-- DNR:FILE -->", $dir_html, $html);
+ }
+ else {
+ # Check archives
+ $html = file_get_contents("404_nodoc.html");
+ $message_html = "<h1>Not Found</h1>";
+ $message_html .= "<p>We're sorry, the page or file cannot be found. Here are some reasons why:</p>";
+ $message_html .= "<ul><li>A file may have moved to the archives. Please contact the project members on their user <a href='//eclipse.org/forums'>forum</a>.<br /></li>";
+ $message_html .= "<li>Your file was part of a nightly or integration build which is no longer there. Simply download the latest version.</li><li>The project is uploading a new build, and this file is not there yet. Try again later.</li></ul>";
+ $archive_dir = str_replace("download.eclipse.org", "archive.eclipse.org", $dir);
+ if(is_dir($archive_dir)) {
+ $message_html = "<h1>Moved to archives</h1>";
+ $message_html .= "<p>It appears this content was moved to the archives. You can try accessing this URL instead:<br /><br />";
+ $message_html .= "    <a href=\"http://archive.eclipse.org" . $_SERVER['REQUEST_URI'] . "\">http://archive.eclipse.org" . $_SERVER['REQUEST_URI'] . "</a></p>";
+
+ # doc title
+ $html = str_replace("<title>Not Found</title>", "<title>Moved</title>", $html);
+
+ # breadcrumb
+ $html = str_replace("<li class=\"active\">Not Found</li>", "<li class=\"active\">Moved</li>", $html);
+ }
+ $html = str_replace("<!-- DNR:FILE -->", $message_html, $html);
+ }
+ echo $html;
+ }
\ No newline at end of file
diff --git a/download.eclipse.org/404_nodoc.html b/download.eclipse.org/404_nodoc.html
new file mode 100644
index 0000000..9b1e7aa
--- /dev/null
+++ b/download.eclipse.org/404_nodoc.html
@@ -0,0 +1,290 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Not Found</title>
+ <meta name="author" content="Christopher Guindon"/>
+ <meta name="keywords" content="eclipse.org, Eclipse Foundation"/>
+ <link rel="shortcut icon" href="/eclipse.org-common/themes/solstice/public/images/favicon.ico"/>
+ <base href="http://download.eclipse.org/" />
+ <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100" rel="stylesheet" type="text/css">
+ <link rel="stylesheet" href="/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css">
+ <meta property="og:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta property="og:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-200x200.png"/>
+ <meta property="og:title" content="HTML Template"/>
+ <meta property="og:image:width" content="200"/>
+ <meta property="og:image:height" content="200"/>
+ <meta itemprop="name" content="HTML Template"/>
+ <meta itemprop="description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta itemprop="image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <meta name="twitter:site" content="@EclipseFdn"/>
+ <meta name="twitter:card" content="summary"/>
+ <meta name="twitter:title" content="HTML Template"/>
+ <meta name="twitter:url" content="http://www.eclipse.org/eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"/>
+ <meta name="twitter:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta name="twitter:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <script> var eclipse_org_common = {"settings":{"cookies_class":{"name":"eclipse_settings","enabled":1}}}</script>
+ </head>
+ <body id="body_solstice">
+ <a class="sr-only" href="#content">Skip to main content</a>
+ <!--
+ <div class="clearfix toolbar-container-wrapper">
+ <div class="container">
+ <div class="text-right toolbar-row row hidden-print">
+ <div class="col-md-24 row-toolbar-col">
+ <ul class="list-inline">
+ <li><a href="https://dev.eclipse.org/site_login/createaccount.php"><i class="fa fa-user fa-fw"></i> Create account</a></li>
+ <li><a href="https://dev.eclipse.org/site_login/?takemeback=http://www.eclipse.org//eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"><i class="fa fa-sign-in fa-fw"></i> Log in</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+ -->
+ <header role="banner" id="header-wrapper">
+ <div class="container">
+ <div class="row" id="header-row">
+ <div class="hidden-xs col-sm-8 col-md-6 col-lg-5" id="header-left">
+ <div class="wrapper-logo-default"><a href="http://www.eclipse.org/"><img class="logo-eclipse-default img-responsive hidden-xs" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-426x100.png"/></a></div>
+ </div>
+ <div class="col-sm-10 col-md-8 col-lg-5 hidden-print hidden-xs pull-right" id="header-right">
+ <div class="row">
+ <div class="col-md-24">
+ <div id="custom-search-form" class="reset-box-sizing">
+ <script>
+ (function() {
+ var cx = '011805775785170369411:15ipmpflp-0';
+ var gcse = document.createElement('script');
+ gcse.type = 'text/javascript';
+ gcse.async = true;
+ gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
+ '//cse.google.com/cse.js?cx=' + cx;
+ var s = document.getElementsByTagName('script')[0];
+ s.parentNode.insertBefore(gcse, s);
+ })();
+ </script>
+ <gcse:searchbox-only></gcse:searchbox-only>
+ </div>
+ </div>
+ </div>
+ <div id="btn-call-for-action"><a href="https://www.eclipse.org/donate/" class="btn btn-huge btn-info"><i class="fa fa-star"></i> Donate</a></div>
+ </div>
+ <div class="col-sm-14 col-md-16 col-lg-19 reset" id="main-menu-wrapper">
+ <div class="navbar yamm" id="main-menu">
+ <div id="navbar-collapse-1" class="navbar-collapse collapse">
+ <ul class="nav navbar-nav">
+ <li class="visible-thin"><a href="http://www.eclipse.org/downloads/" target="_self">Download</a></li>
+ <li><a href="http://www.eclipse.org/users/" target="_self">Getting Started</a></li>
+ <li><a href="http://www.eclipse.org/membership/" target="_self">Members</a></li>
+ <li><a href="http://www.eclipse.org/projects/" target="_self">Projects</a></li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Community <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Participate <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Working Groups <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </li>
+ <!-- More -->
+ <li class="dropdown eclipse-more hidden-xs">
+ <a data-toggle="dropdown" class="dropdown-toggle">More<b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li>
+ <!-- Content container to add padding -->
+ <div class="yamm-content">
+ <div class="row">
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Community</strong></p>
+ </li>
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Participate</strong></p>
+ </li>
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Working Groups</strong></p>
+ </li>
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </div>
+ </div>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <div class="wrapper-logo-mobile"><a class="navbar-brand visible-xs" href="http://www.eclipse.org/"><img class="logo-eclipse-default-mobile img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png"/></a></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </header>
+ <section class="hidden-print default-breadcrumbs" id="breadcrumb">
+ <div class="container">
+ <h3 class="sr-only">Breadcrumbs</h3>
+ <div class="col-xs-24">
+ <ol class="breadcrumb">
+ <li><a href="https://www.eclipse.org/">Home</a></li>
+ <li><a href="http://www.eclipse.org/downloads/">Downloads</a></li>
+ <li class="active">Not Found</li>
+ </ol>
+ </div>
+ </div>
+ </section>
+ <!-- /#breadcrumb -->
+ <main class="no-promo">
+ <div class="novaContent container" id="novaContent">
+ <div id="midcolumn">
+ <!-- DNR:FILE -->
+ <h2>Other useful links</h2>
+ <ul>
+ <li><a href="//eclipse.org">Eclipse home</a> | <a href="//eclipse.org/downloads">Downloads Home</a></li>
+ <li><a href="mailto:webmaster@eclipse.org">Email the webmaster</a></li>
+ </ul>
+ </div>
+ <div class="col-md-6">
+ <div class="sideitem">
+ <h6>Useful links</h6>
+ <ul>
+ <li><a href="//archive.eclipse.org">Eclipse project archives</a></li>
+ <li><a href="//download.eclipse.org/eclipse/downloads">Eclipse project downloads</a></li>
+ </ul>
+ </div>
+ </div>
+ <!-- End of content area -->
+ </div>
+ </main>
+ <p id="back-to-top">
+ <a class="visible-xs" href="#top">Back to the top</a>
+ </p>
+ <footer role="contentinfo" id="solstice-footer">
+ <div class="container">
+ <div class="row">
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-eclipse-foundation">
+ <h2 class="section-title">Eclipse Foundation</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/org/">About us</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/contact.php">Contact Us</a></li>
+ <li><a href="http://www.eclipse.org/donate">Donate</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/">Governance</a></li>
+ <li><a href="http://www.eclipse.org/artwork/">Logo and Artwork</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/directors.php">Board of Directors</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-legal">
+ <h2 class="section-title">Legal</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/legal/privacy.php">Privacy Policy</a></li>
+ <li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
+ <li><a href="http://www.eclipse.org/legal/copyright.php">Copyright Agent</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/epl-v10.php">Eclipse Public License </a></li>
+ <li><a href="http://www.eclipse.org/legal/">Legal Resources </a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-useful-links">
+ <h2 class="section-title">Useful Links</h2>
+ <ul class="nav">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="//help.eclipse.org/">Documentation</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="//marketplace.eclipse.org">Marketplace</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-other">
+ <h2 class="section-title">Other</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/ide/">IDE and Tools</a></li>
+ <li><a href="http://www.eclipse.org/projects">Community of Projects</a></li>
+ <li><a href="http://www.eclipse.org/org/workinggroups/">Working Groups</a></li>
+ </ul>
+ <ul class="list-inline social-media">
+ <li><a href="https://twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
+ <li><a href="https://plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
+ <li><a href="https://www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i> </a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
+ </ul>
+ </section>
+ <div id="copyright" class="col-sm-offset-1 col-sm-14 col-md-24 col-md-offset-0">
+ <span class="hidden-print">
+ <div class="wrapper-logo-eclipse-white"><a href="http://www.eclipse.org"><img class="logo-eclipse-white img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-332x78.png"/></a></div>
+ </span>
+ <p id="copyright-text">Copyright © 2016 The Eclipse Foundation. All Rights Reserved.</p>
+ </div>
+ <a href="#" class="scrollup">Back to the top</a>
+ </div>
+ </div>
+ </footer>
+ <!-- Placed at the end of the document so the pages load faster -->
+ <script src="/eclipse.org-common/themes/solstice/public/javascript/main.min.js"></script>
+ <script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-910670-2']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/404_p2.html b/download.eclipse.org/404_p2.html
new file mode 100644
index 0000000..4f988af
--- /dev/null
+++ b/download.eclipse.org/404_p2.html
@@ -0,0 +1,280 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Eclipse software repository</title>
+ <meta name="author" content="Christopher Guindon"/>
+ <meta name="keywords" content="eclipse.org, Eclipse Foundation"/>
+ <link rel="shortcut icon" href="/eclipse.org-common/themes/solstice/public/images/favicon.ico"/>
+ <base href="http://download.eclipse.org/" />
+ <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100" rel="stylesheet" type="text/css">
+ <link rel="stylesheet" href="/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css">
+ <meta property="og:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta property="og:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-200x200.png"/>
+ <meta property="og:title" content="HTML Template"/>
+ <meta property="og:image:width" content="200"/>
+ <meta property="og:image:height" content="200"/>
+ <meta itemprop="name" content="HTML Template"/>
+ <meta itemprop="description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta itemprop="image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <meta name="twitter:site" content="@EclipseFdn"/>
+ <meta name="twitter:card" content="summary"/>
+ <meta name="twitter:title" content="HTML Template"/>
+ <meta name="twitter:url" content="http://www.eclipse.org/eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"/>
+ <meta name="twitter:description" content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation."/>
+ <meta name="twitter:image" content="https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-400x400.png"/>
+ <script> var eclipse_org_common = {"settings":{"cookies_class":{"name":"eclipse_settings","enabled":1}}}</script>
+ </head>
+ <body id="body_solstice">
+ <a class="sr-only" href="#content">Skip to main content</a>
+ <!--
+ <div class="clearfix toolbar-container-wrapper">
+ <div class="container">
+ <div class="text-right toolbar-row row hidden-print">
+ <div class="col-md-24 row-toolbar-col">
+ <ul class="list-inline">
+ <li><a href="https://dev.eclipse.org/site_login/createaccount.php"><i class="fa fa-user fa-fw"></i> Create account</a></li>
+ <li><a href="https://dev.eclipse.org/site_login/?takemeback=http://www.eclipse.org//eclipse.org-common/themes/solstice/html_template/index.php?theme=solstice&layout=default"><i class="fa fa-sign-in fa-fw"></i> Log in</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+ -->
+ <header role="banner" id="header-wrapper">
+ <div class="container">
+ <div class="row" id="header-row">
+ <div class="hidden-xs col-sm-8 col-md-6 col-lg-5" id="header-left">
+ <div class="wrapper-logo-default"><a href="http://www.eclipse.org/"><img class="logo-eclipse-default img-responsive hidden-xs" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-426x100.png"/></a></div>
+ </div>
+ <div class="col-sm-10 col-md-8 col-lg-5 hidden-print hidden-xs pull-right" id="header-right">
+ <div class="row">
+ <div class="col-md-24">
+ <div id="custom-search-form" class="reset-box-sizing">
+ <script>
+ (function() {
+ var cx = '011805775785170369411:15ipmpflp-0';
+ var gcse = document.createElement('script');
+ gcse.type = 'text/javascript';
+ gcse.async = true;
+ gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
+ '//cse.google.com/cse.js?cx=' + cx;
+ var s = document.getElementsByTagName('script')[0];
+ s.parentNode.insertBefore(gcse, s);
+ })();
+ </script>
+ <gcse:searchbox-only></gcse:searchbox-only>
+ </div>
+ </div>
+ </div>
+ <div id="btn-call-for-action"><a href="https://www.eclipse.org/donate/" class="btn btn-huge btn-info"><i class="fa fa-star"></i> Donate</a></div>
+ </div>
+ <div class="col-sm-14 col-md-16 col-lg-19 reset" id="main-menu-wrapper">
+ <div class="navbar yamm" id="main-menu">
+ <div id="navbar-collapse-1" class="navbar-collapse collapse">
+ <ul class="nav navbar-nav">
+ <li class="visible-thin"><a href="http://www.eclipse.org/downloads/" target="_self">Download</a></li>
+ <li><a href="http://www.eclipse.org/users/" target="_self">Getting Started</a></li>
+ <li><a href="http://www.eclipse.org/membership/" target="_self">Members</a></li>
+ <li><a href="http://www.eclipse.org/projects/" target="_self">Projects</a></li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Community <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Participate <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ </li>
+ <li class="dropdown visible-xs">
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle">Working Groups <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </li>
+ <!-- More -->
+ <li class="dropdown eclipse-more hidden-xs">
+ <a data-toggle="dropdown" class="dropdown-toggle">More<b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li>
+ <!-- Content container to add padding -->
+ <div class="yamm-content">
+ <div class="row">
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Community</strong></p>
+ </li>
+ <li><a href="http://marketplace.eclipse.org">Marketplace</a></li>
+ <li><a href="http://events.eclipse.org">Events</a></li>
+ <li><a href="http://www.planeteclipse.org/">Planet Eclipse</a></li>
+ <li><a href="http://www.eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Participate</strong></p>
+ </li>
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
+ <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ </ul>
+ <ul class="col-sm-8 list-unstyled">
+ <li>
+ <p><strong>Working Groups</strong></p>
+ </li>
+ <li><a href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
+ <li><a href="http://iot.eclipse.org">Internet of Things</a></li>
+ <li><a href="http://locationtech.org">LocationTech</a></li>
+ <li><a href="http://lts.eclipse.org">Long-Term Support</a></li>
+ <li><a href="http://polarsys.org">PolarSys</a></li>
+ <li><a href="http://science.eclipse.org">Science</a></li>
+ <li><a href="http://www.openmdm.org">OpenMDM</a></li>
+ </ul>
+ </div>
+ </div>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <div class="wrapper-logo-mobile"><a class="navbar-brand visible-xs" href="http://www.eclipse.org/"><img class="logo-eclipse-default-mobile img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png"/></a></div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </header>
+ <section class="hidden-print default-breadcrumbs" id="breadcrumb">
+ <div class="container">
+ <h3 class="sr-only">Breadcrumbs</h3>
+ <div class="col-xs-24">
+ <ol class="breadcrumb">
+ <li><a href="https://www.eclipse.org/">Home</a></li>
+ <li><a href="http://www.eclipse.org/downloads/">Downloads</a></li>
+ <li class="active">Add software</li>
+ </ol>
+ </div>
+ </div>
+ </section>
+ <!-- /#breadcrumb -->
+ <main class="no-promo">
+ <div class="novaContent container" id="novaContent">
+ <div id="midcolumn">
+ <h1>You're close!</h1>
+ <p>This URL is an Eclipse <b>software repository</b>; you must use it in Eclipse (<a href="//help.eclipse.org/topic/org.eclipse.platform.doc.user/tasks/tasks-127.htm">see how</a>).<br /><br /><br /></p>
+ <img align="right" src="/errors/content/eclipse-software-install-win10-v1.png" />
+ <div>
+ <!-- DNR:FILE -->
+ </div>
+ </div>
+ </div>
+ </main>
+ <p id="back-to-top">
+ <a class="visible-xs" href="#top">Back to the top</a>
+ </p>
+ <footer role="contentinfo" id="solstice-footer">
+ <div class="container">
+ <div class="row">
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-eclipse-foundation">
+ <h2 class="section-title">Eclipse Foundation</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/org/">About us</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/contact.php">Contact Us</a></li>
+ <li><a href="http://www.eclipse.org/donate">Donate</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/">Governance</a></li>
+ <li><a href="http://www.eclipse.org/artwork/">Logo and Artwork</a></li>
+ <li><a href="http://www.eclipse.org/org/foundation/directors.php">Board of Directors</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-legal">
+ <h2 class="section-title">Legal</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/legal/privacy.php">Privacy Policy</a></li>
+ <li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
+ <li><a href="http://www.eclipse.org/legal/copyright.php">Copyright Agent</a></li>
+ <li><a href="http://www.eclipse.org/org/documents/epl-v10.php">Eclipse Public License </a></li>
+ <li><a href="http://www.eclipse.org/legal/">Legal Resources </a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-useful-links">
+ <h2 class="section-title">Useful Links</h2>
+ <ul class="nav">
+ <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
+ <li><a href="//help.eclipse.org/">Documentation</a></li>
+ <li><a href="http://www.eclipse.org/contribute/">How to Contribute</a></li>
+ <li><a href="http://www.eclipse.org/mail/">Mailing Lists</a></li>
+ <li><a href="http://www.eclipse.org/forums/">Forums</a></li>
+ <li><a href="//marketplace.eclipse.org">Marketplace</a></li>
+ </ul>
+ </section>
+ <section class="col-sm-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print" id="footer-other">
+ <h2 class="section-title">Other</h2>
+ <ul class="nav">
+ <li><a href="http://www.eclipse.org/ide/">IDE and Tools</a></li>
+ <li><a href="http://www.eclipse.org/projects">Community of Projects</a></li>
+ <li><a href="http://www.eclipse.org/org/workinggroups/">Working Groups</a></li>
+ </ul>
+ <ul class="list-inline social-media">
+ <li><a href="https://twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
+ <li><a href="https://plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
+ <li><a href="https://www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i> </a></li>
+ <li><a href="https://www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
+ </ul>
+ </section>
+ <div id="copyright" class="col-sm-offset-1 col-sm-14 col-md-24 col-md-offset-0">
+ <span class="hidden-print">
+ <div class="wrapper-logo-eclipse-white"><a href="http://www.eclipse.org"><img class="logo-eclipse-white img-responsive" alt="logo" src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-332x78.png"/></a></div>
+ </span>
+ <p id="copyright-text">Copyright © 2016 The Eclipse Foundation. All Rights Reserved.</p>
+ </div>
+ <a href="#" class="scrollup">Back to the top</a>
+ </div>
+ </div>
+ </footer>
+ <!-- Placed at the end of the document so the pages load faster -->
+ <script src="/eclipse.org-common/themes/solstice/public/javascript/main.min.js"></script>
+ <script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-910670-2']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/405.php b/download.eclipse.org/405.php
new file mode 100644
index 0000000..373c8d0
--- /dev/null
+++ b/download.eclipse.org/405.php
@@ -0,0 +1,17 @@
+<?php
+ $browser = $_SERVER['HTTP_USER_AGENT'];
+ if (strpos($browser, "Jakarta") !== FALSE
+ || strpos($browser, "Java/") !== FALSE
+ || strpos($browser, "Slurp/") !== FALSE
+ || strpos($browser, "msnbot/") !== FALSE
+ || strpos($browser, "Googlebot/") !== FALSE
+ || strpos($browser, "apacheHttpClient") !== FALSE
+ || strpos($browser, "Baiduspider") !== FALSE
+ || strpos($browser, "Apache-Maven/") !== FALSE
+ ) {
+ echo "404 Not Found";
+ }
+ else {
+ $html = file_get_contents("404.html");
+ echo $html;
+ }
diff --git a/download.eclipse.org/content/eclipse-software-install-win10-v1.png b/download.eclipse.org/content/eclipse-software-install-win10-v1.png
new file mode 100644
index 0000000..0497d88
--- /dev/null
+++ b/download.eclipse.org/content/eclipse-software-install-win10-v1.png
Binary files differ
diff --git a/download.eclipse.org/content/en_404.php b/download.eclipse.org/content/en_404.php
new file mode 100644
index 0000000..9c0f522
--- /dev/null
+++ b/download.eclipse.org/content/en_404.php
@@ -0,0 +1,51 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2014 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Denis Roy (Eclipse Foundation)
+ * Christopher Guindon (Eclipse Foundation)
+ *******************************************************************************/
+//if name of the file requested is the same as the current file, the script will exit directly.
+if(basename(__FILE__) == basename($_SERVER['PHP_SELF'])){exit();}
+?>
+<div id="fullcolumn">
+ <div id="midcolumn">
+ <h1><?php print $pageTitle; ?></h1>
+ <p>We're sorry, the page you requested cannot be found. Here are some reasons why:</p>
+ <ul>
+ <li>
+ A file may have moved to the archives. You can try the link below:<br />
+ <script language="javascript">
+ var str = document.location.toString();
+ str = str.replace(/download.eclipse.org/, "archive.eclipse.org");
+ document.write("<a href='" + str + "'>" + str + "</a>");
+ </script>
+ </li>
+ <li>This is an Eclipse <b>Update site</b>; you must access it from Eclipse (<a href="http://help.eclipse.org/topic//org.eclipse.platform.doc.user/tasks/tasks-127.htm">see how</a>).
+ <li>Your file was part of a Nightly build which is no longer there. Simply download the latest version.</li>
+ <li>The project is uploading a new build, and this file is not there yet. Try again in 30 minutes.</li>
+ </ul>
+ <h2>Other useful links</h2>
+ <ul>
+ <li><a href="//eclipse.org">Eclipse home</a> | <a href="//eclipse.org/downloads">Downloads Home</a></li>
+ <li><a href="//eclipse.org/legal">Legal documents</a></li>
+ <li><a href="//wiki.eclipse.org/index.php/Webmaster_FAQ">webmaster FAQ</a></li>
+ <li><a href="mailto:webmaster@eclipse.org">Email the webmaster</a></li>
+ </ul>
+ <br /><br />
+ </div>
+ <div id="rightcolumn">
+ <div class="sideitem">
+ <h6>Useful links</h6>
+ <ul>
+ <li><a href="//archive.eclipse.org">Eclipse project archives</a></li>
+ <li><a href="//download.eclipse.org/eclipse/downloads">Eclipse project downloads</a></li>
+ </ul>
+ </div>
+ </div>
+</div>
\ No newline at end of file
diff --git a/download.eclipse.org/denied.html b/download.eclipse.org/denied.html
new file mode 100644
index 0000000..e93bc2c
--- /dev/null
+++ b/download.eclipse.org/denied.html
@@ -0,0 +1,10 @@
+<html>
+ <head>
+ <title>Access Denied</title>
+ </head>
+ <body>
+ <h1>Access Denied</h1>
+ <p>Your access to this server has been denied because of abuse.
+ Please contact webmaster@eclipse.org.</p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/download.eclipse.org/js.js b/download.eclipse.org/js.js
new file mode 100644
index 0000000..2884e51
--- /dev/null
+++ b/download.eclipse.org/js.js
@@ -0,0 +1,9 @@
+function fnToggleDirList() {
+ if (document.getElementById('dirlist').style.display == "none") {
+ document.getElementById('dirlist').style.display = "inline";
+ document.getElementById('togglelabel').innerHTML = "Hide Directory Contents.";
+ } else {
+ document.getElementById('dirlist').style.display = "none";
+ document.getElementById('togglelabel').innerHTML = "Show Directory Contents."
+ }
+}
diff --git a/download.eclipse.org/toobusy.html b/download.eclipse.org/toobusy.html
new file mode 100644
index 0000000..1b10b62
--- /dev/null
+++ b/download.eclipse.org/toobusy.html
@@ -0,0 +1,9 @@
+<html>
+ <head>
+ <title>Too Busy</title>
+ </head>
+ <body>
+ <h1>Server too busy</h1>
+ <p>Please pick a mirror site for your download.</p>
+ </body>
+</html>
\ No newline at end of file
diff --git a/toobusy.html b/toobusy.html
index d80329f..1d64acd 100644
--- a/toobusy.html
+++ b/toobusy.html
@@ -1 +1,10 @@
-<html><head><title>Too Busy</title></head><body><h2>Server too busy</h2>The server is currently too busy to process your request. Please pick a mirror site for your download.</body></html>
+<html>
+ <head>
+ <title>Too Busy</title>
+ </head>
+ <body>
+ <h1>Server too busy</h1>
+ <p>The server is currently too busy to process your request.
+ Please pick a mirror site for your download.</p>
+ </body>
+</html>
\ No newline at end of file