comparison xslt/content.xslt @ 497:3309e66c35fb

Regenerated.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 20 Apr 2012 21:24:17 +0000
parents ff41e30fc6ae
children 17cabf13efc8
comparison
equal deleted inserted replaced
496:a57994ede438 497:3309e66c35fb
177 <li> 177 <li>
178 <xsl:apply-templates/> 178 <xsl:apply-templates/>
179 </li> 179 </li>
180 </xsl:template> 180 </xsl:template>
181 181
182 <xsl:template match="list[@type='tag']"> 182 <xsl:template match="list[@type='tag']">
183 <dl compact=""> 183 <xsl:choose>
184 <xsl:apply-templates/> 184
185 </dl> 185 <xsl:when test="@compact = 'yes'">
186
187 <dl class="compact">
188 <xsl:apply-templates/>
189 </dl>
190 </xsl:when>
191
192 <xsl:otherwise>
193
194 <dl>
195 <xsl:apply-templates/>
196 </dl>
197 </xsl:otherwise>
198 </xsl:choose>
186 </xsl:template> 199 </xsl:template>
187 200
188 <xsl:template match="para/list[@type='tag']"> 201 <xsl:template match="para/list[@type='tag']">
189 202
190 <xsl:text disable-output-escaping="yes">&lt;/p&gt; </xsl:text> 203 <xsl:text disable-output-escaping="yes">&lt;/p&gt; </xsl:text>
191 204 <xsl:choose>
192 <dl compact=""> 205
193 <xsl:apply-templates/> 206 <xsl:when test="@compact = 'yes'">
194 </dl> 207
208 <dl class="compact">
209 <xsl:apply-templates/>
210 </dl>
211 </xsl:when>
212
213 <xsl:otherwise>
214
215 <dl>
216 <xsl:apply-templates/>
217 </dl>
218 </xsl:otherwise>
219 </xsl:choose>
195 220
196 <xsl:text disable-output-escaping="yes">&lt;p&gt; </xsl:text> 221 <xsl:text disable-output-escaping="yes">&lt;p&gt; </xsl:text>
197 </xsl:template> 222 </xsl:template>
198 223
199 <xsl:template match="tag-name"> 224 <xsl:template match="tag-name">