123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2012, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:pf="http://developer.cognos.com/schemas/xts/pf"
- xmlns:cm="http://developer.cognos.com/schemas/xts-cm/1/"
- xmlns:dpl="http://developer.cognos.com/schemas/xts/logicsheets/deployment/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:xts="http://developer.cognos.com/schemas/xts/"
- xmlns:lyt="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/layout/"
- xmlns:dp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/dialog/presentation/"
- xmlns:df="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/dialog/framework/"
- xmlns:cf="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/framework/"
- xmlns:cp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/presentation/"
- xmlns:mf="http://developer.cognos.com/schemas/xts/logicsheets/presentation/main/mf"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:utml="http://developer.cognos.com/schemas/xts/logicsheet/xslt/formlogic/"
- xmlns:adm="http://developer.cognos.com/schemas/xts/logicsheets/contentadmin/"
- exclude-result-prefixes="xsl cf cp pf df dp lyt cm utml xts xtsext mf dpl bus">
- <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no" omit-xml-declaration="yes"/>
- <!-- current file name -->
- <xsl:variable name="mname" select="'new_deployment2.xts'"/>
- <!-- add any theme variables -->
- <pf:variables/>
- <!-- deployment variables -->
- <dpl:variables/>
- <mf:variables>
- <mf:stateParams>
- <xsl:value-of select="' m_path backURL m_class m_deploymentWizardPage '"/>
- </mf:stateParams>
- </mf:variables>
- <!-- start the output -->
- <xsl:template match="/root">
-
- <xsl:variable name="browserTitle">
- <xts:string id="IDS_CONTENT_TASK_SELECT_TYPE_TITLE">
- <xts:param name="wizardName">
- <xsl:value-of select="$wizard-title"/>
- </xts:param>
- </xts:string>
- </xsl:variable>
-
- <xsl:text disable-output-escaping='yes'><!DOCTYPE html></xsl:text><dp:page longTitle="$browserTitle">
- <dp:meta>
- <pf:meta/>
- <!-- Standard meta tags -->
- </dp:meta>
- <dp:script>
- <script language="javascript" src="{$webRoot}/dojo16/dojo/dojo.js"/>
- <dpl:tenantSelectionScript/>
- <script language="javascript">
- function validate() {
- return verifyTenantSelection();
- }
-
- </script>
- </dp:script>
- <utml:form name="pform" method="post" action="{$gateway}">
- <utml:excludes>selectedTenants</utml:excludes>
- <!-- dialog header -->
- <dp:header>
- <dpl:title dpl:id="IDS_CONTENT_TASK_SELECT_TYPE_TITLE"/>
- <dp:description>
- <xts:string id="IDS_CONTENT_TASK_DESCRIPTION"/>
- </dp:description>
- </dp:header>
- <!-- page body -->
- <adm:contentUtilization/>
-
- <!-- dialog footer -->
- <dp:footer>
- <df:button df:id="IDS_CANCEL" df:style="back-url"/>
- <df:button df:id="IDS_BACK" df:style="maintain">
- <df:target>
- <xsl:value-of select="concat($app, '/new_general.xts')"/>
- </df:target>
- </df:button>
- <df:button df:id="IDS_NEXT" df:style="maintain" utml:validate="true">
- <df:target>
- <xsl:value-of select="concat($app, '/new_select_action.xts')"/>
- </df:target>
- </df:button>
- <df:button df:id="IDS_FINISH"/>
- </dp:footer>
- </utml:form>
- </dp:page>
- </xsl:template>
- </xsl:stylesheet>
|