updateSelectedEntries.xslt 966 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: AGS
  5. (C) Copyright IBM Corp. 2005, 2008
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0"
  9. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  10. exclude-result-prefixes="xsl">
  11. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
  12. <xsl:template match="/*[local-name()='queryResponse']/*[local-name()='queryReply']" priority="1">
  13. <xsl:for-each select="*">
  14. <xsl:variable name="searchPathForURL" select="./*[local-name()='searchPathForURL']"/>
  15. <xsl:element name="{local-name()}" namespace="http://developer.cognos.com/schemas/xts-cm/1/">
  16. <type>to</type>
  17. <xsl:copy-of select="*"/>
  18. </xsl:element>
  19. </xsl:for-each>
  20. </xsl:template>
  21. <xsl:template match="text()" priority="0"/>
  22. </xsl:stylesheet>