Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2177044 | 7 | Erik Trimble | P3 | Closed | Fixed | b21 |
JDK-2172084 | 6u10 | Abhijit Saha | P3 | Resolved | Fixed | b09 |
JDK-2163591 | OpenJDK6 | Serguei Spitsyn | P2 | Resolved | Fixed | b11 |
The jvmti.xml defines the variable "onedotmicroversion" value using the SCCS %I% keyword:
<specification label="JVM(TM) Tool Interface"
majorversion="1"
minorversion="1"
onedotmicroversion="%I%">
There are the following dependencies on the onedotmicroversion value:
jvmtiLib.xsl:
<xsl:variable name="microversionbase" select="100"/>
<xsl:template name="microversion">
<xsl:variable name="micro" select="substring-after(//specification/@onedotmicroversion, '1.')"/>
<xsl:choose>
<xsl:when test="string($micro)=''">
<xsl:text>dev</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$micro - $microversionbase"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
All the above needs to be fixed to complete a transition from TeamWare to Mercurial.
<specification label="JVM(TM) Tool Interface"
majorversion="1"
minorversion="1"
onedotmicroversion="%I%">
There are the following dependencies on the onedotmicroversion value:
jvmtiLib.xsl:
<xsl:variable name="microversionbase" select="100"/>
<xsl:template name="microversion">
<xsl:variable name="micro" select="substring-after(//specification/@onedotmicroversion, '1.')"/>
<xsl:choose>
<xsl:when test="string($micro)=''">
<xsl:text>dev</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$micro - $microversionbase"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
All the above needs to be fixed to complete a transition from TeamWare to Mercurial.
- backported by
-
JDK-2163591 transition to Mercurial: need to eliminate dependencies on SCCS keywords
-
- Resolved
-
-
JDK-2172084 transition to Mercurial: need to eliminate dependencies on SCCS keywords
-
- Resolved
-
-
JDK-2177044 transition to Mercurial: need to eliminate dependencies on SCCS keywords
-
- Closed
-