Lines Matching +full:for +full:- +full:each
3 <xsl:variable name="title" select="concat(todo/@project, ' ', todo/@major-version)"/>
7 <TITLE><xsl:value-of select="$title"/></TITLE>
11 <H2><xsl:value-of select="concat($title, ': ', todo/@title)"/></H2>
12 <p><font size="-1">See a
14 <xsl:attribute name="href">#developer-list</xsl:attribute>
18 <font size="-1"><p>Planned releases:
19 <BR/><xsl:for-each select="todo/actions/target-release-description">
21 … <xsl:attribute name="href">#release-date-<xsl:value-of select="date"/></xsl:attribute>
22 <xsl:value-of select="date"/>
24 </xsl:for-each>
26 <xsl:attribute name="href">#release-date-completed</xsl:attribute>
31 <xsl:for-each select="todo">
32 <xsl:for-each select="actions">
33 <xsl:for-each select="target-release-description">
35 <xsl:apply-templates/>
37 </xsl:for-each>
38 <xsl:for-each select="action">
39 <xsl:if test="normalize-space(.)">
41 <xsl:number/>) <xsl:apply-templates/>
45 <xsl:apply-templates select="@*"/>
48 </xsl:for-each>
50 </xsl:for-each>
52 <xsl:for-each select="completed">
54 <xsl:attribute name="name">release-date-completed</xsl:attribute>
57 <xsl:for-each select="action">
58 <xsl:if test="normalize-space(.)">
60 <xsl:number/>) <xsl:apply-templates/>
64 <xsl:apply-templates select="@*"/>
67 </xsl:for-each>
69 </xsl:for-each>
71 <xsl:call-template name="developer-list"/>
72 </xsl:for-each>
79 <!-- Add link to the who attributes to corresponding item in developer-list -->
80 <b><xsl:value-of select="name(.)"/>:</b><xsl:text> </xsl:text>
84 <xsl:attribute name="href">#personref-<xsl:value-of select="."/></xsl:attribute>
85 <xsl:value-of select="."/>
89 <xsl:value-of select="."/>
97 <xsl:template match="target-release-description/date">
99 <xsl:attribute name="name">release-date-<xsl:value-of select="."/></xsl:attribute>
100 <b><xsl:text>For release: </xsl:text><xsl:value-of select="."/></b>
106 <BR/><b>Issue </b><xsl:text>[</xsl:text><xsl:value-of select="@id"/>
108 <xsl:apply-templates/>
111 <xsl:template match="target-release-description/level">
112 <xsl:text>, </xsl:text><xsl:apply-templates/>
115 <xsl:template match="target-release-description/goal">
116 <BR/><b>Goal </b><xsl:text>[</xsl:text><xsl:value-of select="@type"/>
118 <xsl:apply-templates/>
122 <xsl:template name="developer-list">
125 <xsl:attribute name="name">developer-list</xsl:attribute>
129 …<p>A list of some of people currently working on working on <xsl:value-of select="/todo/@project"/…
131 <xsl:for-each select="devs/person">
134 <xsl:value-of select="@name"/>
137 …<xsl:attribute name="name"><xsl:text>personref-</xsl:text><xsl:value-of select="@id"/></xsl:attrib…
138 <xsl:text> (</xsl:text><xsl:value-of select="@id"/><xsl:text>)</xsl:text>
140 <BR/><xsl:value-of select="."/>
142 </xsl:for-each>
147 <!--
150 * distributed with this work for additional information
156 * http://www.apache.org/licenses/LICENSE-2.0
161 * See the License for the specific language governing permissions and
163 -->