Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml14
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl48
2 files changed, 30 insertions, 32 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index 5d5c6809c2..e2134f04dc 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -82,6 +82,7 @@
<attribute name="os" />
<attribute name="ws" />
<attribute name="arch" />
+ <attribute name="priority" />
<sequential>
<mkdir dir="${temp.server}" />
<eclipse.launch app="director">
@@ -119,6 +120,11 @@
<delete includeemptydirs="true" quiet="true">
<fileset refid="@{name}-files" />
</delete>
+ <echo message="description=for execution on @{name}."
+ file="${hudson.WORKSPACE}/zips/emf-cdo-${build.qualifier}-DemoServer-@{name}.properties" />
+ <echo message="priority=@{priority}"
+ file="${hudson.WORKSPACE}/zips/emf-cdo-${build.qualifier}-DemoServer-@{name}.properties"
+ append="true" />
</sequential>
</macrodef>
@@ -509,14 +515,14 @@
</fileset>
</zip>
<echo message=" for use with a &lt;a href=&quot;http://help.eclipse.org/indigo/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/p2_dropins_format.html&quot;&gt;dropins&lt;/a&gt; folder."
- file="${hudson.WORKSPACE}/zips/emf-cdo-${build.qualifier}-Dropins.txt" />
+ file="${hudson.WORKSPACE}/zips/emf-cdo-${build.qualifier}-Dropins.properties" />
<echo message="" />
<echo message="Generating demo servers" />
<property name="temp.server" location="${buckminster.temp.root}/server" />
- <generate-server name="Windows" os="win32" ws="win32" arch="x86" />
- <generate-server name="Linux" os="linux" ws="gtk" arch="x86" />
- <generate-server name="Mac" os="macosx" ws="carbon" arch="x86" />
+ <generate-server name="Windows" os="win32" ws="win32" arch="x86" priority="400" />
+ <generate-server name="Linux" os="linux" ws="gtk" arch="x86" priority="300" />
+ <generate-server name="Mac" os="macosx" ws="carbon" arch="x86" priority="200" />
</target>
<!-- ==== -->
diff --git a/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl b/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
index 4c8a62d10c..8b7f46dd9b 100644
--- a/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
+++ b/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
@@ -31,34 +31,26 @@
<a href="bookmarks.xml">bookmarks.xml</a> file.</em>
</p>
- <ul>
- <li>
- <a href="javascript:toggle('features')">Features</a>
- <a name="features" href="#features">
- <img src="http://www.eclipse.org/cdo/images/link_obj.gif" alt="Permalink" width="12" height="12"/>
- </a>
- <div id="features">
- <table border="0">
- <xsl:apply-templates select="//provided[@namespace='org.eclipse.update.feature']">
- <xsl:sort select="@name"/>
- </xsl:apply-templates>
- </table>
- </div>
- </li>
- <li>
- <a href="javascript:toggle('plugins')">Plugins</a>
- <a name="plugins" href="#plugins">
- <img src="http://www.eclipse.org/cdo/images/link_obj.gif" alt="Permalink" width="12" height="12"/>
- </a>
- <div id="plugins">
- <table border="0">
- <xsl:apply-templates select="//provided[@namespace='osgi.bundle']">
- <xsl:sort select="@name"/>
- </xsl:apply-templates>
- </table>
- </div>
- </li>
- </ul>
+ <table border="0">
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h2>Features</h2>
+ </td>
+ </tr>
+ <xsl:apply-templates select="//provided[@namespace='org.eclipse.update.feature']">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h2>Plugins</h2>
+ </td>
+ </tr>
+ <xsl:apply-templates select="//provided[@namespace='osgi.bundle']">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ </table>
</body>
</xsl:template>

Back to the top