MediaWiki:RC.xsl

From Calidus HUB
Revision as of 15:04, 18 September 2025 by Anw (talk | contribs) (Initial Creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:output method="html" indent="yes"/>
 <xsl:template match="api/query/recentchanges">
   <html>
     <body>

Recent Changes

<thead> <xsl:for-each select="rc[1]/@*">
             </xsl:for-each>
</thead> <tbody> <xsl:for-each select="rc"> <xsl:for-each select="@*">
               </xsl:for-each>
</xsl:for-each> </tbody>
<xsl:value-of select="name()"/>
<xsl:value-of select="."/>
     </body>
   </html>
 </xsl:template>

</xsl:stylesheet>