promptingForDialogs.xsl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: qs
  5. (C) Copyright IBM Corp. 2001, 2017
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
  13. <!--
  14. These variables are required for p_include.xsl to compile.
  15. They aren't applied at runtime.
  16. The resource and skin files are loaded by <qsdlg:promptInit/>.
  17. -->
  18. <xsl:variable name="skin">corporate</xsl:variable>
  19. <xsl:variable name="webRoot">..</xsl:variable>
  20. <xsl:variable name="promptFormName">f</xsl:variable>
  21. <xsl:variable name="promptLocale">en-us</xsl:variable>
  22. <xsl:output method="xml" encoding="UTF-8" indent="no"/>
  23. <xsl:include href="p_include.xsl"/>
  24. <!--
  25. * - This next template is required to copy all other elements into the result.
  26. -->
  27. <xsl:template match="*">
  28. <xsl:copy>
  29. <xsl:copy-of select="@*"/>
  30. <xsl:apply-templates/>
  31. </xsl:copy>
  32. </xsl:template>
  33. </xsl:stylesheet>