From 947a2b5522a0cb0e3733299bb965b974d48ace68 Mon Sep 17 00:00:00 2001 From: david_williams <david_williams> Date: Fri, 8 Aug 2008 03:25:53 +0000 Subject: [PATCH] improve version checker --- .../versioningReportToHTML.xsl | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/org.eclipse.wtp.releng.tests/versioningReportToHTML.xsl b/tests/org.eclipse.wtp.releng.tests/versioningReportToHTML.xsl index 38d958901..fcaa8d996 100644 --- a/tests/org.eclipse.wtp.releng.tests/versioningReportToHTML.xsl +++ b/tests/org.eclipse.wtp.releng.tests/versioningReportToHTML.xsl @@ -116,7 +116,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='major' and @codePackageType ='bundle'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -137,7 +137,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='minor' and @codePackageType ='bundle'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -156,7 +156,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='service' and @codePackageType ='bundle'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -173,14 +173,14 @@ <h3 id="bundlequalifier">Bundles with qualifier-only increases</h3> - <p>These may be an error, as normally, when compared to a release, at least the service version will - increase. But, not always an error. And, certainly, within a developement cycle, such as milestone to milestone, - is is quite normal for the qualifer, only, to increase.</p> + <p>There may be occasions these do not always indicate a true error (such as fixing a spelling mistake in a comment, + but it is clearer if qualifier-only increases are not allowed, since usually it indicates + that someone has changed the code, but forgotten to increase the service or minor version.</p> <dl> <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='qualifier' and @codePackageType ='bundle'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: crimson"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -202,7 +202,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='major' and @codePackageType ='feature'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -221,7 +221,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='minor' and @codePackageType ='feature'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -240,7 +240,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='service' and @codePackageType ='feature'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: blue"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> @@ -262,7 +262,7 @@ <xsl:for-each select="versioningCompare"> <xsl:if test="@kind = 'increase' and @field='qualifier' and @codePackageType ='feature'"> - <dt style="font-weight: bold; color: gold"> + <dt style="font-weight: bold; color: crimson"> <xsl:value-of select="entry" /> </dt> <dd style="font-family: monospace"> -- GitLab