Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 319753 - Download pages not working
Summary: Download pages not working
Status: RESOLVED WORKSFORME
Alias: None
Product: EGit
Classification: Technology
Component: Core (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-13 12:15 EDT by mike.kozelsky CLA
Modified: 2010-07-14 05:23 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description mike.kozelsky CLA 2010-07-13 12:15:21 EDT
* Main Site: http://download.eclipse.org/egit/updates  (Recommended)
    * Helios Site: http://download.eclipse.org/releases/helios

The second gives me some xml error:
<Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>02A65ECCD4782A9F</RequestId><HostId>fCbWEmg7FPR74KGGP30bE3bqoFevweFFvFCExaPJIBBtX5weDCEQanOzUK7J4SpW</HostId></Error>

The first takes me to a blank page:
<html>
<head>
<title>org.eclipse.egit-updatesite</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>@import url("web/site.css");</style>
<script type="text/javascript">
	var returnval = 0;
	var stylesheet, xmlFile, cache, doc;
	function init(){
		// NSCP 7.1+ / Mozilla 1.4.1+ / Safari
		// Use the standard DOM Level 2 technique, if it is supported
		if (document.implementation && document.implementation.createDocument) {
			xmlFile = document.implementation.createDocument("", "", null);
			stylesheet = document.implementation.createDocument("", "", null);
			if (xmlFile.load){
				xmlFile.load("site.xml");
				stylesheet.load("web/site.xsl");
			} else {
				alert("Document could not be loaded by browser.");
			}
			xmlFile.addEventListener("load", transform, false);
			stylesheet.addEventListener("load", transform, false);
		}
		//IE 6.0+ solution
		else if (window.ActiveXObject) {
			xmlFile = new ActiveXObject("msxml2.DOMDocument.3.0");
			xmlFile.async = false;
			xmlFile.load("site.xml");
			stylesheet = new ActiveXObject("msxml2.FreeThreadedDOMDocument.3.0");
			stylesheet.async = false;
			stylesheet.load("web/site.xsl");
			cache = new ActiveXObject("msxml2.XSLTemplate.3.0");
			cache.stylesheet = stylesheet;
			transformData();
		}
	}
	// separate transformation function for IE 6.0+
	function transformData(){
		var processor = cache.createProcessor();
		processor.input = xmlFile;
		processor.transform();
		data.innerHTML = processor.output;
	}
	// separate transformation function for NSCP 7.1+ and Mozilla 1.4.1+ 
	function transform(){
		returnval+=1;
		if (returnval==2){
			var processor = new XSLTProcessor();
			processor.importStylesheet(stylesheet); 
			doc = processor.transformToDocument(xmlFile);
			document.getElementById("data").innerHTML = doc.documentElement.innerHTML;
		}
	}
</script>
</head>
<body onload="init();">
<!--[insert static HTML here]-->
<div id="data"><!-- this is where the transformed data goes --></div>
</body>
</html>
Comment 1 Matthias Sohn CLA 2010-07-13 12:34:30 EDT
You probably pointed your browser at these URLs. Actually both URLs point to p2 repository meant for installing or updating Eclipse software.

Try the following:
- start Eclipse
- Follow menu path "Help > Install New Software"

- if you start from Eclipse Helios installation you may skip the following two steps
- click "Add"
- copy the URL and set a display name for this URL

- if you are behind a firewall you need to setup the HTTP proxy, go to Window > Preferences > General > Network Connections and enter your HTTP proxy

- then select the repository from the drop down list "Work with"
- navigate to the egit feature
- select it and click through the wizard to install it
Comment 2 Matthias Sohn CLA 2010-07-14 05:23:58 EDT
this works for me