Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2012-05-19 13:07:10 +0000
committerEike Stepper2012-05-19 13:07:10 +0000
commit456c80fd0f94ee3dca167b880411a17a3030317b (patch)
treec399d69db1fbac4049103fbf6a2fe7ceacfef15e /plugins/org.eclipse.emf.cdo.releng
parenteb6c15bb3dba2b28b74274a7d309b208c2117a54 (diff)
downloadcdo-456c80fd0f94ee3dca167b880411a17a3030317b.tar.gz
cdo-456c80fd0f94ee3dca167b880411a17a3030317b.tar.xz
cdo-456c80fd0f94ee3dca167b880411a17a3030317b.zip
Fix broken p2 repo format in "categories"
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/xsl/content2categories.xsl80
1 files changed, 40 insertions, 40 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/xsl/content2categories.xsl b/plugins/org.eclipse.emf.cdo.releng/xsl/content2categories.xsl
index f43d0fed9d..4e2452a235 100644
--- a/plugins/org.eclipse.emf.cdo.releng/xsl/content2categories.xsl
+++ b/plugins/org.eclipse.emf.cdo.releng/xsl/content2categories.xsl
@@ -1,41 +1,41 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
-
- <xsl:template match="/">
- <repository name='CDO BUILD_QUALIFIER Categories'
- type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1.0.0'>
- <properties size='2'>
- <property name='p2.timestamp' value='1307560601786'/>
- <property name='p2.compressed' value='true'/>
- </properties>
- <units size='1'>
- <unit id="cdo.BUILD_QUALIFIER" version="0.0.0">
- <properties size="2">
- <property name="org.eclipse.equinox.p2.name" value="CDO BUILD_QUALIFIER"/>
- <property name="org.eclipse.equinox.p2.type.category" value="true"/>
- </properties>
- <provides size="1">
- <provided namespace="org.eclipse.equinox.p2.iu" name="cdo.BUILD_QUALIFIER" version="0.0.0"/>
- </provides>
- <requires size="REQUIRES_SIZE">
- <xsl:apply-templates select="//property[@name='org.eclipse.equinox.p2.type.category']"/>
- </requires>
- <touchpoint id="null" version="0.0.0"/>
- </unit>
- </units>
- </repository>
- </xsl:template>
-
- <xsl:template match="property[../../@id!='Default']">
- <required namespace="org.eclipse.equinox.p2.iu">
- <xsl:attribute name="name">
- <xsl:value-of select="../../@id"/>
- </xsl:attribute>
- <xsl:attribute name="version">
- <xsl:value-of select="../../@version"/>
- </xsl:attribute>
- </required>
- </xsl:template>
-
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
+
+ <xsl:template match="/">
+ <repository name='CDO BUILD_QUALIFIER Categories'
+ type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1.0.0'>
+ <properties size='2'>
+ <property name='p2.timestamp' value='1307560620000'/>
+ <property name='p2.compressed' value='true'/>
+ </properties>
+ <units size='1'>
+ <unit id="cdo.BUILD_QUALIFIER" version="0.0.0">
+ <properties size="2">
+ <property name="org.eclipse.equinox.p2.name" value="CDO BUILD_QUALIFIER"/>
+ <property name="org.eclipse.equinox.p2.type.category" value="true"/>
+ </properties>
+ <provides size="1">
+ <provided namespace="org.eclipse.equinox.p2.iu" name="cdo.BUILD_QUALIFIER" version="0.0.0"/>
+ </provides>
+ <requires size="REQUIRES_SIZE">
+ <xsl:apply-templates select="//property[@name='org.eclipse.equinox.p2.type.category']"/>
+ </requires>
+ <touchpoint id="null" version="0.0.0"/>
+ </unit>
+ </units>
+ </repository>
+ </xsl:template>
+
+ <xsl:template match="property[../../@id!='Default']">
+ <required namespace="org.eclipse.equinox.p2.iu">
+ <xsl:attribute name="name">
+ <xsl:value-of select="../../@id"/>
+ </xsl:attribute>
+ <xsl:attribute name="range">
+ <xsl:value-of select="../../@version"/>
+ </xsl:attribute>
+ </required>
+ </xsl:template>
+
</xsl:stylesheet> \ No newline at end of file

Back to the top