123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- +===================================================================+
- | Licensed Materials - Property of IBM
- | BI and PM: prmt
- | (C) Copyright IBM Corp. 2002, 2011
- |
- | US Government Users Restricted Rights - Use, duplication or
- | disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- |
- +===================================================================+
- ////////////////////////////////////////////////////////////////////////
- // p_include_standard.xsl
- ///////////////////////////////////////////////////////////////////////
- This XSL file defines a common interface for using prompting controls. Prompt controls are used to create forms for user input
- with rich, browser specific user interfaces.
- This file serves two purposes:
- 1) to be used in combination with an XML input document, appropriate XSL style sheets and XSLt transformer to produce the
- desired browser output.
- 2) to be used as an example for calling prompt control templates from other products (e.g. via: XSL, XTS, C++, Java, ...). This file
- encapsulates the prompting control functionality so that developers can include prompting controls with a few tags.
- All the XSL code is in the nested XSL p_include_main.xsl This is xsl "shell" is the one to be used by any client not using XTS or
- including the RSVP's V5environment.xsl which already declares the param PRMT_isBidiEnabled.
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
- <xsl:param name="PRMT_isBidiEnabled" select="'false'"/>
- <xsl:param name="cogLocalePath" select="'../../../configuration'"/>
- <xsl:include href="p_include_main.xsl"/>
- </xsl:stylesheet>
|