Skip to content

Commit

Permalink
add votes-5.34.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Jun 30, 2021
1 parent 49f22c5 commit 45a9bbf
Showing 1 changed file with 182 additions and 0 deletions.
182 changes: 182 additions & 0 deletions votes-5.34.xml
@@ -0,0 +1,182 @@
<?xml version="1.0"?><?xml-stylesheet type="text/xml" href="#stylesheet"?><!DOCTYPE doc SYSTEM "doc.dtd"><doc>

<data>

<div><h2>Tickets Listed in 5.34.1 milestone</h2>

See https://github.com/Perl/perl5/milestone/15

</div>

<div><h2>Other Proposed Cherry-Picks</h2>

Proposed cherry-picks are grouped according to the types of change permitted by perlpolicy.pod.

(NOTE: The same document states that the following types of change are not acceptable:

Anything controversial
Breaking binary compatibility
Adding or removing features
Adding new warnings, errors or deprecations

The same criteria apply to code in dual-life modules as to core code.)

See https://github.com/perl/Perl5/issues?q=+label%3Abackport-5.34

</div>

<div><h3>Security Fixes</h3>

</div>

<div><h3>Crash / Assertion / Memory Corruption Fixes</h3>

</div>

<div><h3>Regression Fixes</h3>

<commit votes="tonyc" id="fe991866a0206a96b2ae0b9e875b80609ab3b919" issue="" pull="18900" desc="lib/perl5db.pl: cmd_l() no longer exists." />
<commit votes="tonyc" id="f4918ae72c941f3f53469101d22200cb6dc6903c" issue="" pull="18900" desc="fix comment. " />

</div>

<div><h3>New Feature Fixes</h3>

</div>

<div><h3>Build and Installation Fixes</h3>

</div>

<div><h3>Portability Fixes</h3>

</div>

<div><h3>Platform-Specific Test Fixes</h3>

</div>

<div><h3>Documentation Fixes</h3>

</div>

</data>

<xsl:stylesheet version="1.0" id="stylesheet" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="xsl:stylesheet"/>
<xsl:template match="/">
<html>
<head>
<title>Cherry-pick votes for maint-5.32</title>
<style>
.accepted .ref a { color: #090 }
.unvoted .ref a { color: #c00 }
</style>
</head>
<body>
<h1>Cherry-pick votes for maint-5.32</h1>
<xsl:for-each select="/doc/data/div">
<h2><xsl:value-of select="h2"/></h2>
<h3><xsl:value-of select="h3"/></h3>
<table>
<xsl:for-each select="commit|head">
<xsl:choose>
<xsl:when test="local-name() = 'commit'">
<tr>
<xsl:apply-templates select="@votes"/>
<td style="vertical-align: top; white-space: nowrap">
<xsl:value-of select="@votes"/>
</td>
<td class="ref" style="vertical-align: top">
<a href="http://perl5.git.perl.org/perl5.git/commitdiff/{@id}">
<xsl:value-of select="@id"/>
</a>
</td>
<xsl:choose>
<xsl:when test="string-length(@issue) &gt; 0">
<td style="vertical-align: top">
<a href="https://github.com/Perl/perl5/issues/{@issue}">
GH#<xsl:value-of select="@issue"/>
</a>
</td>
</xsl:when>
<xsl:otherwise>
<td style="vertical-align: top"/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="string-length(@pull) &gt; 0">
<td style="vertical-align: top">
<a href="https://github.com/Perl/perl5/pull/{@pull}">
PR#<xsl:value-of select="@pull"/>
</a>
</td>
</xsl:when>
<xsl:otherwise>
<td style="vertical-align: top"/>
</xsl:otherwise>
</xsl:choose>
<td style="vertical-align: top">
<xsl:value-of select="@desc"/>
</td>
</tr>
</xsl:when>
<xsl:when test="local-name() = 'head'">
<tr>
<xsl:apply-templates select="@votes"/>
<td style="vertical-align: top; white-space: nowrap">
<xsl:value-of select="@votes"/>
</td>
<td class="ref" style="vertical-align: top">
<a href="http://perl5.git.perl.org/perl5.git/shortlog/refs/heads/{@branch}">
<xsl:value-of select="@branch"/>
</a>
</td>
<xsl:choose>
<xsl:when test="string-length(@issue) &gt; 0">
<td style="vertical-align: top">
<a href="https://github.com/Perl/perl5/issues/{@issue}">
GH#<xsl:value-of select="@issue"/>
</a>
</td>
</xsl:when>
<xsl:otherwise>
<td style="vertical-align: top"/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="string-length(@pull) &gt; 0">
<td style="vertical-align: top">
<a href="https://github.com/Perl/perl5/pull/{@pull}">
PR#<xsl:value-of select="@pull"/>
</a>
</td>
</xsl:when>
<xsl:otherwise>
<td style="vertical-align: top"/>
</xsl:otherwise>
</xsl:choose>
<td style="vertical-align: top">
<xsl:value-of select="@desc"/>
</td>
</tr>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</table>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template match="@votes">
<xsl:choose>
<xsl:when test=". = ''">
<xsl:attribute name="class">unvoted</xsl:attribute>
</xsl:when>
<xsl:when test="substring-after(substring-after(normalize-space(translate(., ',', ' ')), ' '), ' ') != ''">
<xsl:attribute name="class">accepted</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>

</doc>

0 comments on commit 45a9bbf

Please sign in to comment.