blob: 2099bdf13c39225adf39275cdad939f02e2f2dda [file] [log] [blame]
<html>
<head>
<title>org.eclipse.smila.designer.site</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 xxxonload="init();">
<div style="float: right;">
<b>Last Modified:</b> <script>document.writeln(document.lastModified)</script>
</div>
<h1 class="section" style="clear: both;">SMILA - BPEL Designer Extensions - Update Site</h1>
<div class="section">
You need either a build of <b>3.6.2</b> (<span class='product'>Helios</span>) or <b>3.7</b> (<span class='product'>Indigo</span>)
<a href="http://www.eclipse.org/downloads/">Eclipse IDE for Java Developers</a> for your platform.
You could also use the <span class='product'>Platform Runtime Binary</span> from
<a href="http://download.eclipse.org/eclipse/downloads/">one of the releases here</a> to download only the plugins that are really necessary.
</div>
<div class="section">
The simplest way to install the extensions is through the Eclipse Update mechanism. You
can get to it from the eclipse <b>Help -&gt; Install New Software ...</b>
menu:
<div>
<img src="web/install.png">
</div>
</div>
<div class="section">
Install the <span class='product'>BPEL Designer</span> from its update site:
<div class="url">http://download.eclipse.org/technology/bpel/update-site/</div>
</div>
<div class="section">
Now you can install the <span class='product'>SMILA BPEL Designer extensions</span> from this update site:
<div class="url">http://download.eclipse.org/rt/smila/tooling/update-site/</div>
</div>
<div class="section">
Eclipse 3.7 was used for the most recent build.
</div>
<div id="data"><!-- this is where the transformed data goes --></div>
</body>
</html>