Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml2
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl42
2 files changed, 26 insertions, 18 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index ac2ecf4937..5d5c6809c2 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -328,7 +328,6 @@
<!-- ============== -->
<target name="init.workspace" depends="init.properties">
- <echo message="" />
<echo message="Initializing workspace" />
<if>
@@ -410,7 +409,6 @@
<!-- ======= -->
<target name="site.p2" depends="build" description="Generates the site and depending artifacts">
- <echo message="" />
<echo message="Performing org.eclipse.emf.cdo.site#site.p2" />
<buckminster command="perform">
<cmdargs>
diff --git a/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl b/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
index faea4c1726..4c8a62d10c 100644
--- a/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
+++ b/plugins/org.eclipse.emf.cdo.releng/xsl/content2html.xsl
@@ -32,22 +32,32 @@
</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><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>
+ <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>
</body>
</xsl:template>

Back to the top