diff options
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/index.html | 60 | ||||
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/index.php | 57 | ||||
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/site-interim.xml | 480 | ||||
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/site.xml | 59 | ||||
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/web/site.xsl | 466 | ||||
-rw-r--r-- | releng/org.eclipse.gmf.updatesite/web/web.xml | 2 |
6 files changed, 295 insertions, 829 deletions
diff --git a/releng/org.eclipse.gmf.updatesite/index.html b/releng/org.eclipse.gmf.updatesite/index.html deleted file mode 100644 index 409aac460..000000000 --- a/releng/org.eclipse.gmf.updatesite/index.html +++ /dev/null @@ -1,60 +0,0 @@ -<html> -<head> -<title>GMF Update 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 onload="init();"> -<!--[insert static HTML here]--> -<div id="data"><!-- this is where the transformed data goes --></div> -</body> -</html> diff --git a/releng/org.eclipse.gmf.updatesite/index.php b/releng/org.eclipse.gmf.updatesite/index.php new file mode 100644 index 000000000..22288f01d --- /dev/null +++ b/releng/org.eclipse.gmf.updatesite/index.php @@ -0,0 +1,57 @@ +<?php + +$pre = "../"; + +// Process query string +$vars = explode("&", $_SERVER['QUERY_STRING']); +for ($i=0;$i<=count($vars);$i++) { + $var = explode("=", $vars[$i]); + $qsvars[$var[0]] = $var[1]; +} + +$params = array(); +$params["project"] = $qsvars["proj"]; + +$HTMLTitle = "GMF - Update Manager"; +$ProjectName = array( + "Update Manager", + "GMF", + "Update Manager", + "images/reference.gif" +); + +if (is_file($pre . "includes/header.php")) include $pre . "includes/header.php"; + +/* + * To work, this script must be run with a version of PHP4 which + * includes the Sablotron XSLT extension compiled into it + * + * Params in stylesheet: + * + * <xsl:param name="project"></xsl:param> + * + */ + +// define XML and XSL sources +$XMLfile = $qsvars["XMLfile"] ? str_replace("../","",$qsvars["XMLfile"]).".xml" : "site.xml"; +$XSLfile = "web/site.xsl"; + +if (function_exists('xslt_create')) { + $processor = xslt_create(); + $fileBase = 'file://' . getcwd () . '/'; + xslt_set_base ( $processor, $fileBase ); + $result = xslt_process($processor, $fileBase.$XMLfile, $fileBase.$XSLfile, NULL, array(), $params); + + if(!$result) { + echo "Trying to parse ".$XMLfile." with ".$XSLfile."...<br/>"; + echo "ERROR #".xslt_errno($processor) . " : " . xslt_error($processor); + } + echo $result; +} else { ?> + <meta http-equiv="Refresh" content="0;url=site.html"> +<?php } ?> + +<p><a href="view-source:http://download.eclipse.org/technology/gmf/update-site/<?php echo $XMLfile; ?>" class="red">View as XML</a></p> + +<?php if (is_file($pre . "includes/footer.php")) include $pre . "includes/footer.php"; ?> +<!-- $Id: index.php,v 1.1 2006/04/18 17:04:44 mfeldman Exp $ --> diff --git a/releng/org.eclipse.gmf.updatesite/site-interim.xml b/releng/org.eclipse.gmf.updatesite/site-interim.xml deleted file mode 100644 index bde640a8e..000000000 --- a/releng/org.eclipse.gmf.updatesite/site-interim.xml +++ /dev/null @@ -1,480 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet type="text/xsl" href="web/site.xsl"?> -<site> - <description url="http://download.eclipse.org/technology/gmf/update-site/"> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.sdk" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.tests" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.doc" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.examples" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.source" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.sdk.source" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060129-1145"/> - </feature> - <category-def name="Graphical Modeling Framework 1.0.0.I20060129-1145" label="Graphical Modeling Framework 1.0.0.I20060129-1145"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.sdk" patch="false" version="1.0.0.I20060129-1145"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.I20060202-1415.jar" id="org.eclipse.gmf.tests" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.I20060202-1415.jar" id="org.eclipse.gmf" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.doc" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.examples" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.I20060202-1415.jar" id="org.eclipse.gmf.source" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.I20060129-1145.jar" id="org.eclipse.gmf.sdk.source" patch="false" version="1.0.0.I20060202-1415"> - <category name="Graphical Modeling Framework 1.0.0.I20060202-1415"/> - </feature> - <category-def name="Graphical Modeling Framework 1.0.0.I20060202-1415" label="Graphical Modeling Framework 1.0.0.I20060202-1415"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.sdk" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.tests" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.doc" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.examples" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.source" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.I20060210-1715.jar" id="org.eclipse.gmf.sdk.source" patch="false" version="1.0.0.I20060210-1715"> - <category name="Graphical Modeling Framework 1.0.0.I20060210-1715"/> - </feature> - <category-def name="Graphical Modeling Framework 1.0.0.I20060210-1715" label="Graphical Modeling Framework 1.0.0.I20060210-1715"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.sdk" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.tests" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.doc" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.examples" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.source" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.I20060216-1945.jar" id="org.eclipse.gmf.sdk.source" patch="false" version="1.0.0.I20060216-1945"> - <category name="Graphical Modeling Framework 1.0.0.I20060216-1945"/> - </feature> - <category-def name="Graphical Modeling Framework 1.0.0.I20060216-1945" label="Graphical Modeling Framework 1.0.0.I20060216-1945"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> - - <archive path="features/org.eclipse.gmf.doc_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.doc_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf.examples_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.examples_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf.sdk.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.sdk.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf.sdk_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.sdk_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf.tests_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf.tests_1.0.0.I20060216-1945.jar"/> - - - <archive path="features/org.eclipse.gmf_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/features/org.eclipse.gmf_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.apache.batik_1.6.0.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.apache.batik_1.6.0.jar"/> - - - <archive path="plugins/org.eclipse.gmf.bridge_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.bridge_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.codegen.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.codegen.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.codegen.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.codegen.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.codegen_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.codegen_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.common_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.common_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.doc_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.doc_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.ecore.editor_1.0.0.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.ecore.editor_1.0.0.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.common.service_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.common.service_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.decorator_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.decorator_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.geoshapes_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.geoshapes_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.layout_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.layout_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.logic.model.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.logic.model.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.logic.model_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.logic.model_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.diagram.logic_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.diagram.logic_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.runtime.emf.clipboard_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.runtime.emf.clipboard_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.examples_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.examples_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.graphdef.codegen_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.graphdef.codegen_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.graphdef.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.graphdef.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.graphdef_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.graphdef_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.map.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.map.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.map_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.map_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.action.ide_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.action.ide_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.action_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.action_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.pathvariables.ide_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.pathvariables.ide_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.printing.win32_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.printing.win32_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.printing_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.printing_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.services.action_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.services.action_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.services.dnd.ide_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.services.dnd.ide_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.services.dnd_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.services.dnd_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.services.properties_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.services.properties_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui.services_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui.services_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.common.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.common.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.actions_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.actions_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.dnd_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.dnd_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.geoshapes_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.geoshapes_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.printing.render_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.printing.render_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.printing_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.printing_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.properties_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.properties_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.providers.ide_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.providers.ide_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.providers_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.providers_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.render_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.render_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui.resources.editor_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui.resources.editor_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.diagram.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.diagram.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.draw2d.ui.render.awt_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.draw2d.ui.render.awt_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.draw2d.ui.render_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.draw2d.ui.render_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.draw2d.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.draw2d.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.clipboard.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.clipboard.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.commands.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.commands.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.type.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.type.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.type.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.type.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.ui.properties_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.ui.properties_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.emf.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.emf.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.gef.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.gef.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.notation.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.notation.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.notation.providers_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.notation.providers_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.runtime.notation_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.runtime.notation_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.sdk.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.sdk.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.sdk_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.sdk_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.common.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.common.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.common.ui.services.action_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.common.ui.services.action_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.common.ui.services.provider_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.common.ui.services.provider_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.common.ui.services_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.common.ui.services_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.common.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.common.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.diagram.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.diagram.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.draw2d.ui.render_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.draw2d.ui.render_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.draw2d.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.draw2d.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.clipboard.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.clipboard.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.commands.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.commands.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.type.core_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.type.core_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.type.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.type.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.ui.properties_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.ui.properties_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.emf.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.emf.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.runtime.gef.ui_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.runtime.gef.ui_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests.source_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests.source_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tests_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tests_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tooldef.edit_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tooldef.edit_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf.tooldef_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf.tooldef_1.0.0.I20060216-1945.jar"/> - - - <archive path="plugins/org.eclipse.gmf_1.0.0.I20060216-1945.jar" - url="http://www.eclipse.org/downloads/download.php?r=1&file=/technology/gmf/update-site/plugins/org.eclipse.gmf_1.0.0.I20060216-1945.jar"/> - - -</site> diff --git a/releng/org.eclipse.gmf.updatesite/site.xml b/releng/org.eclipse.gmf.updatesite/site.xml index dd9b5c778..20d3f8885 100644 --- a/releng/org.eclipse.gmf.updatesite/site.xml +++ b/releng/org.eclipse.gmf.updatesite/site.xml @@ -1,58 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<site> - <description url="http://download.eclipse.org/technology/gmf/update-site/"> +<?xml-stylesheet type="text/xsl" href="web/site.xsl"?> +<site mirrorsURL="http://www.eclipse.org/downloads/download.php?file=/technology/gmf/update-site/milestone/site.xml&format=xml"> + <description url="http://download.eclipse.org/technology/gmf/update-site"> A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). </description> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.v200603031600.jar" id="org.eclipse.gmf.sdk" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.v200603031600.jar" id="org.eclipse.gmf.tests" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.v200603031600.jar" id="org.eclipse.gmf" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.v200603031600.jar" id="org.eclipse.gmf.doc" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.v200603031600.jar" id="org.eclipse.gmf.examples" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.v200603031600.jar" id="org.eclipse.gmf.source" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.v200603031600.jar" id="org.eclipse.gmf.sdk.source" version="1.0.0.v200603031600" patch="false"> - <category name="Graphical Modeling Framework 1.0M5"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk_1.0.0.jar" id="org.eclipse.gmf.sdk" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf.tests_1.0.0.jar" id="org.eclipse.gmf.tests" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf_1.0.0.jar" id="org.eclipse.gmf" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf.doc_1.0.0.jar" id="org.eclipse.gmf.doc" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf.examples_1.0.0.jar" id="org.eclipse.gmf.examples" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf.source_1.0.0.jar" id="org.eclipse.gmf.source" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <feature url="features/org.eclipse.gmf.sdk.source_1.0.0.jar" id="org.eclipse.gmf.sdk.source" version="1.0.0"> - <category name="Graphical Modeling Framework 1.0M4"/> - </feature> - <category-def name="Graphical Modeling Framework 1.0M5" label="Graphical Modeling Framework 1.0M5"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> - <category-def name="Graphical Modeling Framework 1.0M4" label="Graphical Modeling Framework 1.0M4"> - <description> - A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). - </description> - </category-def> + + </site> diff --git a/releng/org.eclipse.gmf.updatesite/web/site.xsl b/releng/org.eclipse.gmf.updatesite/web/site.xsl index 78f630e9c..8ebe2a88d 100644 --- a/releng/org.eclipse.gmf.updatesite/web/site.xsl +++ b/releng/org.eclipse.gmf.updatesite/web/site.xsl @@ -1,234 +1,232 @@ -<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:msxsl="urn:schemas-microsoft-com:xslt"> -<xsl:output method="html" encoding="UTF-8"/> -<xsl:key name="cat" match="category" use="@name"/> -<xsl:template match="/"> -<xsl:for-each select="site"> - <html> - <head> - <title>GMF Update Site</title> - <style>@import url("web/site.css");</style> - </head> - <body> - <table width="100%"> - <tr valign="top"> - <td width="75%"> - <a name="top"> </a> - <h2 class="title">GMF Update Site</h2> - <p class="bodyText"><xsl:copy-of select="description"/> For more on how to do this, <a href="http://help.eclipse.org/help31/topic/org.eclipse.platform.doc.user/tasks/tasks-36.htm">click here</a>. - </p> - <pre><p class="bodyText"> Help - > Software Updates - > Find and Install... - > Search for new features to install - > New Remote Site... - * Name: <b>GMF Update Site</b> - * URL: <b><a href="http://download.eclipse.org/technology/gmf/update-site/site.xml" target="_um">http://download.eclipse.org/technology/gmf/update-site/site.xml</a></b> (Release/Milestone builds) - (or): <b><a href="http://download.eclipse.org/technology/gmf/update-site/site-interim.xml" target="_um">http://download.eclipse.org/technology/gmf/update-site/site-interim.xml</a></b> (Integration builds)</p></pre> - </td> - <td width="25%"><img alt="how to" src="http://eclipse.org/images/howto_banner.jpg" height="111" width="272" align="middle" /></td> - </tr> - </table> - <p class="bodyText">You will also need <a href="http://www.antlr.org/download/antlr-2.7.2.zip">antlr-2.7.2.zip</a> to leverage OCL capabilities. (<b>Note</b>: Place the antlr.jar from this distribution in the antlr plug-in 'lib' folder. This is a temporary dependency.) - </p> - <p class="bodyText"><xsl:value-of select="description"/></p> - <table width="100%" border="0" cellspacing="1" cellpadding="2"> - <xsl:for-each select="category-def"> - <xsl:sort select="@label" order="ascending" case-order="upper-first"/> - <xsl:sort select="@name" order="ascending" case-order="upper-first"/> - <xsl:if test="count(key('cat',@name)) != 0"> - <tr class="header"> - <td class="sub-header" width="30%"> - <xsl:value-of select="@name"/> - </td> - <td class="sub-header" width="70%"> - <xsl:value-of select="@label"/> - </td> - </tr> - <xsl:for-each select="key('cat',@name)"> - <xsl:sort select="ancestor::feature//@version" order="ascending"/> - <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/> - <tr> - <xsl:choose> - <xsl:when test="(position() mod 2 = 1)"> - <xsl:attribute name="class">dark-row</xsl:attribute> - </xsl:when> - <xsl:otherwise> - <xsl:attribute name="class">light-row</xsl:attribute> - </xsl:otherwise> - </xsl:choose> - <td class="log-text" id="indent"> - <xsl:choose> - <xsl:when test="ancestor::feature//@label"> - <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a> - <br/> - <div id="indent"> - (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>) - </div> - </xsl:when> - <xsl:otherwise> - <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a> - </xsl:otherwise> - </xsl:choose> - <br /> - </td> - <td> - <table> - <xsl:if test="ancestor::feature//@os"> - <tr><td class="log-text" id="indent">Operating Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@os"/></td> - </tr> - </xsl:if> - <xsl:if test="ancestor::feature//@ws"> - <tr><td class="log-text" id="indent">Windows Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@ws"/></td> - </tr> - </xsl:if> - <xsl:if test="ancestor::feature//@nl"> - <tr><td class="log-text" id="indent">Languages:</td> - <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@nl"/></td> - </tr> - </xsl:if> - <xsl:if test="ancestor::feature//@arch"> - <tr><td class="log-text" id="indent">Architecture:</td> - <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@arch"/></td> - </tr> - </xsl:if> - </table> - </td> - </tr> - </xsl:for-each> - <tr><td class="spacer"><br/></td><td class="spacer"><br/></td></tr> - </xsl:if> - </xsl:for-each> - <xsl:if test="count(feature) > count(feature/category)"> - <tr class="header"> - <td class="sub-header" colspan="2"> - Uncategorized - </td> - </tr> - </xsl:if> - <xsl:choose> - <xsl:when test="function-available('msxsl:node-set')"> - <xsl:variable name="rtf-nodes"> - <xsl:for-each select="feature[not(category)]"> - <xsl:sort select="@id" order="ascending" case-order="upper-first"/> - <xsl:sort select="@version" order="ascending" /> - <xsl:value-of select="."/> - <xsl:copy-of select="." /> - </xsl:for-each> - </xsl:variable> - <xsl:variable name="myNodeSet" select="msxsl:node-set($rtf-nodes)/*"/> - <xsl:for-each select="$myNodeSet"> - <tr> - <xsl:choose> - <xsl:when test="position() mod 2 = 1"> - <xsl:attribute name="class">dark-row</xsl:attribute> - </xsl:when> - <xsl:otherwise> - <xsl:attribute name="class">light-row</xsl:attribute> - </xsl:otherwise> - </xsl:choose> - <td class="log-text" id="indent"> - <xsl:choose> - <xsl:when test="@label"> - <a href="{@url}"><xsl:value-of select="@label"/></a> - <br /> - <div id="indent"> - (<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>) - </div> - </xsl:when> - <xsl:otherwise> - <a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a> - </xsl:otherwise> - </xsl:choose> - <br /><br /> - </td> - <td> - <table> - <xsl:if test="@os"> - <tr><td class="log-text" id="indent">Operating Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="@os"/></td> - </tr> - </xsl:if> - <xsl:if test="@ws"> - <tr><td class="log-text" id="indent">Windows Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="@ws"/></td> - </tr> - </xsl:if> - <xsl:if test="@nl"> - <tr><td class="log-text" id="indent">Languages:</td> - <td class="log-text" id="indent"><xsl:value-of select="@nl"/></td> - </tr> - </xsl:if> - <xsl:if test="@arch"> - <tr><td class="log-text" id="indent">Architecture:</td> - <td class="log-text" id="indent"><xsl:value-of select="@arch"/></td> - </tr> - </xsl:if> - </table> - </td> - </tr> - </xsl:for-each> - </xsl:when> - <xsl:otherwise> - <xsl:for-each select="feature[not(category)]"> - <xsl:sort select="@id" order="ascending" case-order="upper-first"/> - <xsl:sort select="@version" order="ascending" /> - <tr> - <xsl:choose> - <xsl:when test="count(preceding-sibling::feature[not(category)]) mod 2 = 1"> - <xsl:attribute name="class">dark-row</xsl:attribute> - </xsl:when> - <xsl:otherwise> - <xsl:attribute name="class">light-row</xsl:attribute> - </xsl:otherwise> - </xsl:choose> - <td class="log-text" id="indent"> - <xsl:choose> - <xsl:when test="@label"> - <a href="{@url}"><xsl:value-of select="@label"/></a> - <br /> - <div id="indent"> - (<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>) - </div> - </xsl:when> - <xsl:otherwise> - <a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a> - </xsl:otherwise> - </xsl:choose> - <br /><br /> - </td> - <td> - <table> - <xsl:if test="@os"> - <tr><td class="log-text" id="indent">Operating Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="@os"/></td> - </tr> - </xsl:if> - <xsl:if test="@ws"> - <tr><td class="log-text" id="indent">Windows Systems:</td> - <td class="log-text" id="indent"><xsl:value-of select="@ws"/></td> - </tr> - </xsl:if> - <xsl:if test="@nl"> - <tr><td class="log-text" id="indent">Languages:</td> - <td class="log-text" id="indent"><xsl:value-of select="@nl"/></td> - </tr> - </xsl:if> - <xsl:if test="@arch"> - <tr><td class="log-text" id="indent">Architecture:</td> - <td class="log-text" id="indent"><xsl:value-of select="@arch"/></td> - </tr> - </xsl:if> - </table> - </td> - </tr> - </xsl:for-each> - </xsl:otherwise> - </xsl:choose> - </table> - </body> - </html> -</xsl:for-each> -</xsl:template> -</xsl:stylesheet> +<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:msxsl="urn:schemas-microsoft-com:xslt">
+<xsl:output method="html" encoding="UTF-8"/>
+<xsl:key name="cat" match="category" use="@name"/>
+<xsl:template match="/">
+<xsl:for-each select="site">
+ <html>
+ <head>
+ <title>GMF Update Site</title>
+ <style>@import url("web/site.css");</style>
+ </head>
+ <body>
+ <table width="100%">
+ <tr valign="top">
+ <td width="75%">
+ <a name="top"> </a>
+ <h2 class="title">GMF Update Site</h2>
+ <p class="bodyText"><xsl:copy-of select="description"/> For more on how to do this, <a href="http://help.eclipse.org/help31/topic/org.eclipse.platform.doc.user/tasks/tasks-36.htm">click here</a>.
+ </p>
+ <pre><p class="bodyText"> Help
+ > Software Updates
+ > Find and Install...
+ > Search for new features to install
+ > New Remote Site...
+ * Name: <b>GMF Update Site</b>
+ * URL: <b><a href="http://download.eclipse.org/technology/gmf/update-site/site.xml" target="_um">http://download.eclipse.org/technology/gmf/update-site/site.xml</a></b> (Release/Milestone builds)
+ (or): <b><a href="http://download.eclipse.org/technology/gmf/update-site/interim/site.xml" target="_um">http://download.eclipse.org/technology/gmf/update-site/site-interim.xml</a></b> (Integration builds)</p></pre>
+ </td>
+ <td width="25%"><img alt="how to" src="http://eclipse.org/images/howto_banner.jpg" height="111" width="272" align="middle" /></td>
+ </tr>
+ </table>
+ <p class="bodyText"><xsl:value-of select="description"/></p>
+ <table width="100%" border="0" cellspacing="1" cellpadding="2">
+ <xsl:for-each select="category-def">
+ <xsl:sort select="@label" order="ascending" case-order="upper-first"/>
+ <xsl:sort select="@name" order="ascending" case-order="upper-first"/>
+ <xsl:if test="count(key('cat',@name)) != 0">
+ <tr class="header">
+ <td class="sub-header" width="30%">
+ <xsl:value-of select="@name"/>
+ </td>
+ <td class="sub-header" width="70%">
+ <xsl:value-of select="@label"/>
+ </td>
+ </tr>
+ <xsl:for-each select="key('cat',@name)">
+ <xsl:sort select="ancestor::feature//@version" order="ascending"/>
+ <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
+ <tr>
+ <xsl:choose>
+ <xsl:when test="(position() mod 2 = 1)">
+ <xsl:attribute name="class">dark-row</xsl:attribute>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:attribute name="class">light-row</xsl:attribute>
+ </xsl:otherwise>
+ </xsl:choose>
+ <td class="log-text" id="indent">
+ <xsl:choose>
+ <xsl:when test="ancestor::feature//@label">
+ <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
+ <br/>
+ <div id="indent">
+ (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
+ </div>
+ </xsl:when>
+ <xsl:otherwise>
+ <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a>
+ </xsl:otherwise>
+ </xsl:choose>
+ <br />
+ </td>
+ <td>
+ <table>
+ <xsl:if test="ancestor::feature//@os">
+ <tr><td class="log-text" id="indent">Operating Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@os"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="ancestor::feature//@ws">
+ <tr><td class="log-text" id="indent">Windows Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@ws"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="ancestor::feature//@nl">
+ <tr><td class="log-text" id="indent">Languages:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@nl"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="ancestor::feature//@arch">
+ <tr><td class="log-text" id="indent">Architecture:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@arch"/></td>
+ </tr>
+ </xsl:if>
+ </table>
+ </td>
+ </tr>
+ </xsl:for-each>
+ <tr><td class="spacer"><br/></td><td class="spacer"><br/></td></tr>
+ </xsl:if>
+ </xsl:for-each>
+ <xsl:if test="count(feature) > count(feature/category)">
+ <tr class="header">
+ <td class="sub-header" colspan="2">
+ Uncategorized
+ </td>
+ </tr>
+ </xsl:if>
+ <xsl:choose>
+ <xsl:when test="function-available('msxsl:node-set')">
+ <xsl:variable name="rtf-nodes">
+ <xsl:for-each select="feature[not(category)]">
+ <xsl:sort select="@id" order="ascending" case-order="upper-first"/>
+ <xsl:sort select="@version" order="ascending" />
+ <xsl:value-of select="."/>
+ <xsl:copy-of select="." />
+ </xsl:for-each>
+ </xsl:variable>
+ <xsl:variable name="myNodeSet" select="msxsl:node-set($rtf-nodes)/*"/>
+ <xsl:for-each select="$myNodeSet">
+ <tr>
+ <xsl:choose>
+ <xsl:when test="position() mod 2 = 1">
+ <xsl:attribute name="class">dark-row</xsl:attribute>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:attribute name="class">light-row</xsl:attribute>
+ </xsl:otherwise>
+ </xsl:choose>
+ <td class="log-text" id="indent">
+ <xsl:choose>
+ <xsl:when test="@label">
+ <a href="{@url}"><xsl:value-of select="@label"/></a>
+ <br />
+ <div id="indent">
+ (<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>)
+ </div>
+ </xsl:when>
+ <xsl:otherwise>
+ <a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a>
+ </xsl:otherwise>
+ </xsl:choose>
+ <br /><br />
+ </td>
+ <td>
+ <table>
+ <xsl:if test="@os">
+ <tr><td class="log-text" id="indent">Operating Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@os"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@ws">
+ <tr><td class="log-text" id="indent">Windows Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@ws"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@nl">
+ <tr><td class="log-text" id="indent">Languages:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@nl"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@arch">
+ <tr><td class="log-text" id="indent">Architecture:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@arch"/></td>
+ </tr>
+ </xsl:if>
+ </table>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:for-each select="feature[not(category)]">
+ <xsl:sort select="@id" order="ascending" case-order="upper-first"/>
+ <xsl:sort select="@version" order="ascending" />
+ <tr>
+ <xsl:choose>
+ <xsl:when test="count(preceding-sibling::feature[not(category)]) mod 2 = 1">
+ <xsl:attribute name="class">dark-row</xsl:attribute>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:attribute name="class">light-row</xsl:attribute>
+ </xsl:otherwise>
+ </xsl:choose>
+ <td class="log-text" id="indent">
+ <xsl:choose>
+ <xsl:when test="@label">
+ <a href="{@url}"><xsl:value-of select="@label"/></a>
+ <br />
+ <div id="indent">
+ (<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>)
+ </div>
+ </xsl:when>
+ <xsl:otherwise>
+ <a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a>
+ </xsl:otherwise>
+ </xsl:choose>
+ <br /><br />
+ </td>
+ <td>
+ <table>
+ <xsl:if test="@os">
+ <tr><td class="log-text" id="indent">Operating Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@os"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@ws">
+ <tr><td class="log-text" id="indent">Windows Systems:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@ws"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@nl">
+ <tr><td class="log-text" id="indent">Languages:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@nl"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:if test="@arch">
+ <tr><td class="log-text" id="indent">Architecture:</td>
+ <td class="log-text" id="indent"><xsl:value-of select="@arch"/></td>
+ </tr>
+ </xsl:if>
+ </table>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </xsl:otherwise>
+ </xsl:choose>
+ </table>
+ </body>
+ </html>
+</xsl:for-each>
+</xsl:template>
+</xsl:stylesheet>
diff --git a/releng/org.eclipse.gmf.updatesite/web/web.xml b/releng/org.eclipse.gmf.updatesite/web/web.xml index 55db8ae0a..27b0a8baa 100644 --- a/releng/org.eclipse.gmf.updatesite/web/web.xml +++ b/releng/org.eclipse.gmf.updatesite/web/web.xml @@ -9,7 +9,7 @@ Update site for the Eclipse Graphical Modeling Framework Project. </description> <welcome-file-list> - <welcome-file>index.html</welcome-file> + <welcome-file>index.php</welcome-file> <welcome-file>site.xml</welcome-file> </welcome-file-list> </web-app> |