<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wiki="http://www.mediawiki.org/xml/export-0.4/" version="1.0">
  <xsl:output encoding="utf-8" indent="yes" method="xml" version="1.0"/>
  <xsl:strip-space elements="*"/>

  <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
      <asx:values>
        <IWIKI>
          <xsl:apply-templates select="//wiki:page"/>
        </IWIKI>
      </asx:values>
    </asx:abap>
  </xsl:template>

  <xsl:template match="wiki:page">
    <item>
      <TITLE>
        <xsl:value-of select="wiki:title"/>
      </TITLE>
      <TEXT>
        <xsl:value-of select="wiki:revision/wiki:text"/>
      </TEXT>
    </item>
  </xsl:template>

</xsl:transform>