Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eda7ed538d71a3978e8a6a8f4dbafd25eae34ef6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!--
Copyright (c) 2012 CEA LIST.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html

Contributors:
Gregoire Dupe (Mia-Software) - initial contribution
Remi Schnekenburger (CEA LIST) - modification for Papyrus stats
Nicolas Bros (Mia-Software) - stats for main and extra plug-ins
-->
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
	version="1.0">
	<xsl:output encoding="UTF-8" method="xml" indent="yes" />
	<xsl:strip-space elements="*" />

	<xsl:template match="/">
		<xsl:processing-instruction name="artifactRepository">version='1.1.0'</xsl:processing-instruction>

		<xsl:apply-templates />
	</xsl:template>

	<xsl:template match="repository/properties">
		<properties size='{@size+1}'>
			<xsl:copy-of select="property" />
			<property name='p2.statsURI' value='http://download.eclipse.org/stats' />
		</properties>
	</xsl:template>

	<xsl:template match="artifact[@classifier='osgi.bundle' and @id='org.eclipse.papyrus.infra.core']/properties">
		<xsl:call-template name="artifact_properties"/>
	</xsl:template>
	
	<xsl:template match="artifact[@classifier='osgi.bundle' and @id='org.eclipse.papyrus.uml.diagram.clazz']/properties">
		<xsl:call-template name="artifact_properties"/>
	</xsl:template>

	<xsl:template match="artifact[@classifier='osgi.bundle' and @id='org.eclipse.papyrus.sysml']/properties">
		<xsl:call-template name="artifact_properties"/>
	</xsl:template>
	
 	<xsl:template name="artifact_properties">
 		<properties size='{@size+1}'>
			<xsl:copy-of select="property" />
			<property name='download.stats' value='{../@id}.bundle-{../@version}' />
		</properties>
	</xsl:template>

	<xsl:template match="*">
		<xsl:copy>
			<xsl:for-each select="@*">
				<xsl:copy-of select="." />
			</xsl:for-each>
			<xsl:apply-templates />
		</xsl:copy>
	</xsl:template>

</xsl:stylesheet>

Back to the top