blob: 662a19d69c83c1e9ebda162476bd64df41c4cbc8 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="default.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Help</title>
<script language="JavaScript">
/**
* Handles Netscape 4.7 resize bug we use on Linux
*/
function resizeFix()
{
window.location.reload();
}
if (document.layers)
window.onresize = resizeFix;
/**
* Parses the query string.
*/
function parseQueryString (str)
{
//str = str ? str : unescape(document.URL);
str = str ? str : unescape(window.location.href);
var longquery = str.split("?");
if (longquery.length <= 1) return "";
var query = longquery[1];
var args = new Object();
if (query)
{
var fields = query.split('&');
for (var f = 0; f < fields.length; f++)
{
var field = fields[f].split('=');
args[unescape(field[0].replace(/\+/g, ' '))] = unescape(field[1].replace(/\+/g, ' '));
}
}
return args;
}
/**
* Builds a string from its unicode codes.
* We assume that codes sequence is a comma separated list of unicode codes
*/
function getUnicodeString(codesSequence)
{
if (!codesSequence) return "";
var unicodeString = "";
var codes = codesSequence.split(',');
for (var i=0; i<codes.length; i++)
{
unicodeString += String.fromCharCode(codes[i]);
}
return unicodeString;
}
// Get the infoset title (passed in as a comma separated list of unicode codes)
var args = parseQueryString ();
//var infosetTitle = getUnicodeString(args['title']);
var infosetTitle = "Welcome to Eclipse Update";
</script>
</head>
<body bgColor="#FFFFFF" style="margin:0;" link="#000080" >
<div style="position:absolute; left:0; top:0; ">
<span style="position: absolute; left: 0; top: 0; z-index: -1">
<img border="0" src="images/banner.gif" width="604" height="45" margin=0>
</span>
</div>
<div id="bannerTitle" style="position:absolute; left:10; top:13; font-size: 12pt; font-weight:bold;">
<script language="JavaScript">
if (document.getElementById)
{
// code for IE5 and NS6
var div = document.getElementById("bannerTitle");
if (div)
{
//div.document.write(infosetTitle);
//div.document.close();
div.appendChild(document.createTextNode(infosetTitle));
}
}
else if (document.all)
{
// code for IE4 (even though we require IE5...)
var div = document.all("bannerTitle");
if (div)
div.document.write(infosetTitle);
}
else if (document.layers)
{
// code for NS4
if (window.document.bannerTitle)
window.document.bannerTitle.document.write(infosetTitle);
}
</script>
</div>
<p><p>&nbsp;</p>
<p>&nbsp;</p>
<table border="0" width="100%" height="155" cellpadding="0">
<tr>
<td width="7%" valign="top" align="right" height="7"><img border="0" src="images/topic.gif" width="16" height="16" align="top" vspace="10">
<p>&nbsp;</p>
</td>
<td width="93%" height="7" valign="top">
<p><b><a href="update://Navigate/NewFeatures/">Install New Features</a><br>
</b>Go here to browse Eclipse update sites and find new features to install
into your platform.</p>
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td width="7%" valign="top" align="right" height="34"><img border="0" src="images/topic.gif" width="16" height="16" vspace="10"></td>
<td width="93%" height="34">
<p><b><a href="update://Navigate/Updates/">Updates of The Installed Features</a><br>
</b>Check if there are updates available for the features you already have
installed.</p>
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td width="7%" valign="top" align="right" height="37"><img border="0" src="images/topic.gif" width="16" height="16" vspace="10"></td>
<td width="93%" height="37">
<p><b><a href="update://Navigate/Uninstall/">Uninstall Features</a><br>
</b>Uninstall features previously installed on your Eclipse platform.</p>
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td width="7%" valign="top" align="right" height="29"><img border="0" src="images/topic.gif" width="16" height="16" vspace="10"></td>
<td width="93%" height="29">
<p><b><a href="update://Navigate/History/">Installation History</a><br>
</b>Browse the record of your past installations or revert to a previous
stable configuration.</p>
</td>
</tr>
</table>
</body>
</html>