MediaWiki:RC.xsl: Difference between revisions
From Calidus HUB
(Initial Creation) |
(No difference)
|
Revision as of 15:04, 18 September 2025
<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>