Ticket #3309: doxygen_passthrough.diff
File doxygen_passthrough.diff, 1.3 KB (added by , 13 years ago) |
---|
-
doxygen/doxygen2boostbook.xsl
1216 1216 </xsl:if> 1217 1217 </xsl:template> 1218 1218 1219 <xsl:template match=" computeroutput|orderedlist|itemizedlist|listitem"1220 mode="passthrough">1221 <xsl:element name="{name(.)}">1219 <xsl:template match="*" mode="passthrough"> 1220 <xsl:copy> 1221 <xsl:copy-of select="@*"/> 1222 1222 <xsl:apply-templates mode="passthrough"/> 1223 </xsl: element>1223 </xsl:copy> 1224 1224 </xsl:template> 1225 1226 1227 1228 <xsl:template match="initializer" mode="passthrough"/> 1225 1229 <xsl:template match="parameterlist" mode="passthrough"/> 1226 1230 1227 1231 <xsl:template match="bold" mode="passthrough"> … … 1253 1257 </description> 1254 1258 </xsl:if> 1255 1259 </xsl:template> 1260 1261 <xsl:template match="ref" mode="passthrough"> 1262 <xsl:choose> 1263 <xsl:when test="@kindref='compound'"> 1264 <classname> 1265 <xsl:value-of select="text()"/> 1266 </classname> 1267 </xsl:when> 1268 <xsl:otherwise> 1269 <xsl:value-of select="text()"/> 1270 </xsl:otherwise> 1271 </xsl:choose> 1272 </xsl:template> 1256 1273 1257 1274 <!-- Handle function clauses --> 1258 1275 <xsl:template match="simplesect" mode="function-clauses">