p_include.xsl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. +===================================================================+
  4. | Licensed Materials - Property of IBM
  5. | BI and PM: prmt
  6. | (C) Copyright IBM Corp. 2002, 2011
  7. |
  8. | US Government Users Restricted Rights - Use, duplication or
  9. | disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  10. |
  11. +===================================================================+
  12. ////////////////////////////////////////////////////////////////////////
  13. // p_include.xsl (this stylesheet should be used only by XTS)
  14. ///////////////////////////////////////////////////////////////////////
  15. This XSL file defines a common interface for using prompting controls. Prompt controls are used to create forms for user input
  16. with rich, browser specific user interfaces.
  17. This file serves two purposes:
  18. 1) to be used in combination with an XML input document, appropriate XSL style sheets and XSLt transformer to produce the
  19. desired browser output.
  20. 2) to be used as an example for calling prompt control templates from other products (e.g. via: XSL, XTS, C++, Java, ...). This file
  21. encapsulates the prompting control functionality so that developers can include prompting controls with a few tags.
  22. All the XSL code is in the nested XSL p_include_main.xsl There are three "shell" xsl templates that provide different starting
  23. parameters. This xsl is to be used by xts (morphlets). The parameter cogLocalePath value will be only understood by the XTS engine.
  24. -->
  25. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
  26. <xsl:param name="PRMT_isBidiEnabled" select="'false'"/>
  27. <xsl:param name="cogLocalePath" select="'$CONFIG_ROOT$'"/>
  28. <xsl:include href="p_include_main.xsl"/>
  29. </xsl:stylesheet>