123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cogadmin
- (C) Copyright IBM Corp. 2005, 2012
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <xts:morphlet version="1.0" xmlns:xts="http://developer.cognos.com/schemas/xts/" messageBase="messages/cogadminuimsgs.xml" resolverBase="cogadmin" requiredCapability="canUseServerAdministrationTool">
- <xts:block id="frag_init" nodelist="env, credential" type="exec" mode="interpret" processor="XSLT" path="cogadmin/logicsheets/fragment_init.xslt" condition=".[not(/root/env/param[@name='frag-directive']='meta-only')]" mandatory="true"/>
- <!--
- - Get the supported relationships
- - Perform the QueryRelationshipsByType request
- -->
- <xts:block id="getContent" nodelist="env, header" dependency="frag_init" type="exec" mode="interpret" processor="XSLT">
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:cogadminext="xalan://com.cognos.admin.xts.ext.XTSExt"
- exclude-result-prefixes="xsl xts xtsext SOAP-ENV xos bus">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:key name="env-param" match="/root/env/param" use="@name"/>
-
- <xsl:variable name="resourceIdentifier">
- <xsl:choose>
- <xsl:when test="key('env-param','parentResourceID') != ''">
- <xsl:value-of select="xtsext:urldecode(string(key('env-param','parentResourceID')))"/>
- </xsl:when>
- <xsl:when test="key('env-param','relationshipResourceID') != ''">
- <xsl:value-of select="xtsext:urldecode(string(key('env-param','relationshipResourceID')))"/>
- </xsl:when>
- <xsl:when test="key('env-param','resourceID') != ''">
- <xsl:value-of select="xtsext:urldecode(string(key('env-param','resourceID')))"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:variable name="application">
- <xsl:value-of select="key('env-param','application')"/>
- </xsl:variable>
- <xsl:value-of select="cogadminext:getDefaultResourceId(string($application))"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:template match="/">
- <xts:sequence>
- <xsl:choose>
- <!-- if we're building an actions menu, then we need to get the metadata -->
- <xsl:when test="key('env-param','buildActionsMenu') = 'true'">
- <xts:append select="/root">
- <metadata>
- <xts:request protocol="GetResourceProperty">
- <SOAP-ENV:Envelope
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/rp-2"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- <nemo:cogadminHeader>
- <nemo:ResourceIdentifier><xsl:value-of select="key('env-param','objResourceID')"/></nemo:ResourceIdentifier>
- </nemo:cogadminHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <wsrf-rp:GetResourceProperty>MetadataDescriptor</wsrf-rp:GetResourceProperty>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </metadata>
- </xts:append>
- </xsl:when>
- <xsl:otherwise>
- <xsl:choose>
- <xsl:when test="not(key('env-param','buildSiblingMenu') = 'true')">
- <xts:append select="/root">
- <!-- Get the supported relationships of the system -->
- <!-- TODO: Only make this query once -->
- <relationships>
- <xts:request protocol="GetResourceProperty" responseEnvelope="false">
- <SOAP-ENV:Envelope
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/rp-2"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- <xsl:variable name="application">
- <xsl:value-of select="key('env-param','application')"/>
- </xsl:variable>
- <nemo:cogadminHeader>
- <nemo:ResourceIdentifier><xsl:value-of select="cogadminext:getDefaultResourceId(string($application))"/></nemo:ResourceIdentifier>
- </nemo:cogadminHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <wsrf-rp:GetResourceProperty>resource-prop:SupportedRelationships</wsrf-rp:GetResourceProperty>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </relationships>
- <breadcrumbs>
- <xsl:for-each select="/root/env/param[starts-with(@name,'bc_resid')]">
- <xsl:sort select="@name"/>
- <xts:request protocol="GetMultipleResourceProperties" responseEnvelope="false">
- <SOAP-ENV:Envelope
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/rp-2"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- <nemo:cogadminHeader>
- <nemo:ResourceIdentifier><xsl:value-of select="xtsext:urldecode(string(.))"/></nemo:ResourceIdentifier>
- </nemo:cogadminHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <wsrf-rp:GetMultipleResourceProperties>
- <wsrf-rp:ResourceProperty>Caption</wsrf-rp:ResourceProperty>
- </wsrf-rp:GetMultipleResourceProperties>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </xsl:for-each>
- </breadcrumbs>
- </xts:append>
- </xsl:when>
- <xsl:otherwise>
- <xts:append select="/root">
- <!-- QueryRelationshipsByType -->
- <QueryRelationshipsByType>
- <xts:request protocol="QueryRelationshipsByType" responseEnvelope="false">
- <SOAP-ENV:Envelope
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/muws2-2.xsd"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- <nemo:cogadminHeader>
- <nemo:ResourceIdentifier><xsl:value-of select="$resourceIdentifier"/></nemo:ResourceIdentifier>
- </nemo:cogadminHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <muws-p2-xs:QueryRelationshipsByType>
- <muws-p2-xs:RequestedType>
- <xsl:choose>
- <xsl:when test="key('env-param','selectedRelationshipType') != ''">
- <xsl:value-of select="key('env-param','selectedRelationshipType')"/>
- </xsl:when>
- <xsl:when test="key('env-param','relationshipType') != ''">
- <xsl:value-of select="key('env-param','relationshipType')"/>
- </xsl:when>
- <xsl:otherwise>
- <!-- get the default relationship -->
- <xts:queryValue select="/root/relationships/*[local-name()='GetResourcePropertyResponse']/*[local-name()='SupportedRelationships']/*[local-name()='Relationship' and @default='true'][1]/*[local-name()='Name']"/>
-
- </xsl:otherwise>
- </xsl:choose>
- </muws-p2-xs:RequestedType>
- </muws-p2-xs:QueryRelationshipsByType>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </QueryRelationshipsByType>
- </xts:append>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:otherwise>
- </xsl:choose>
- </xts:sequence>
-
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
-
- <xts:block id="getMeta" type="exec" mode="interpret" dependency="getContent" nodelist="env, QueryRelationshipsByType" processor="XSLT">
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:muws2="http://docs.oasis-open.org/wsdm/muws2-2.xsd"
- xmlns:ns1="http://docs.oasis-open.org/wsdm/muws1-2.xsd"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:cogadminext="xalan://com.cognos.admin.xts.ext.XTSExt"
- exclude-result-prefixes="xsl xts xos xtsext muws2 ns1">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
-
- <xsl:key name="env-param" match="/root/env/param" use="@name"/>
- <xsl:template match="/">
- <xts:sequence>
- <xts:append select="/root/output">
- <xos:part>
- <xos:entityHeader>
- <xos:param name="Content-Type">text/xml; charset=utf-8</xos:param>
- </xos:entityHeader>
- <xos:entityBody>
- <fragment>
- <xsl:choose>
- <xsl:when test="/root/env/param[@name='buildSiblingMenu']='true'">
- <info>
- <title>
- <xts:string id="IDS_ADM_TOP_SYSTEM"/>
- </title>
- </info>
- <preferredTitle>
- <xts:string id="IDS_ADM_TOP_SYSTEM"/>
- </preferredTitle>
- </xsl:when>
-
- <xsl:when test="/root/env/param[@name='buildActionsMenu']='true'">
- <preferredTitle><xts:string id="IDS_ADM_TOP_SYSTEM"/></preferredTitle>
- </xsl:when>
-
- <xsl:when test="not(/root/env/param[@name='buildSiblingMenu']='true') and not(/root/env/param[@name='buildActionsMenu']='true')">
- <xsl:variable name="resourceIdentifier">
- <xsl:choose>
- <xsl:when test="key('env-param','currentResourceID') != ''">
- <xsl:value-of select="xtsext:urldecode(string(key('env-param','currentResourceID')))"/>
- </xsl:when>
- <xsl:when test="key('env-param','relationshipResourceID') != ''">
- <xsl:value-of select="xtsext:urldecode(string(key('env-param','relationshipResourceID')))"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:variable name="application">
- <xsl:value-of select="key('env-param','application')"/>
- </xsl:variable>
- <xsl:value-of select="cogadminext:getDefaultResourceId(string($application))"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="storeIdentifier">
- <xsl:choose>
- <xsl:when test="key('env-param','currentStoreID') != ''">
- <xsl:value-of select="key('env-param','currentStoreID')"/>
- </xsl:when>
- <xsl:when test="key('env-param','relationshipStoreID') != ''">
- <xsl:value-of select="key('env-param','relationshipStoreID')"/>
- </xsl:when>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="rootRelationshipType">
- <xsl:choose>
- <xsl:when test="key('env-param','rootRelationshipType') != ''">
- <xsl:value-of select="key('env-param','rootRelationshipType')"/>
- </xsl:when>
- <xsl:when test="key('env-param','selectedRelationshipType') != ''">
- <xsl:value-of select="key('env-param','selectedRelationshipType')"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="key('env-param','relationshipType')"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <preferredTitle>
- <xts:string id="IDS_ADM_TOP_SYSTEM"/>
- </preferredTitle>
-
- <xsl:if test="not(string(/root/env/param[@name='frag-windowState']) = 'maximized')">
- <!-- update the metrics fragment with the root resourceID -->
- <transientUpdate name="resourceID" scope="page">
- <xsl:value-of select="$resourceIdentifier"/>
- </transientUpdate>
-
- <!-- update the settings fragment with the root storeID -->
- <transientUpdate name="storeID" scope="page">
- <xsl:value-of select="$storeIdentifier"/>
- </transientUpdate>
-
- <!-- update the settings fragment with the resourceLabel of the currently selected resourceID-->
- <transientUpdate name="resourceLabel" scope="page">
- <xsl:value-of select="/root/QueryRelationshipsByType/muws2:QueryRelationshipsByTypeResponse/muws2:Relationship/muws2:Participant[ns1:ResourceId= $resourceIdentifier]/muws2:Caption"/>
- </transientUpdate>
- </xsl:if>
- </xsl:when>
- </xsl:choose>
- </fragment>
- </xos:entityBody>
- </xos:part>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
-
- <!--
- Build the sibling menu and display it
- -->
- <xts:block id="buildSiblingMenu" nodelist="QueryRelationshipsByType, env, user" dependency="getMeta" type="exec" mode="interpret" processor="XSLT" condition=".[/root/env/param[@name='buildSiblingMenu']='true']" mandatory="false">
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:muws2="http://docs.oasis-open.org/wsdm/muws2-2.xsd"
- xmlns:ns1="http://docs.oasis-open.org/wsdm/muws1-2.xsd"
- xmlns:resource-prop="http://developer.cognos.com/admin/properties"
- xmlns:meta="http://developer.cognos.com/schemas/xts/cogadmin/logicsheet/meta"
- exclude-result-prefixes="xsl xos ns1 xtsext muws2 resource-prop meta">
-
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:template match="/">
- <xts:sequence>
- <xts:append select="/root/output/*[local-name()='part']/*[local-name()='entityBody']/fragment">
- <markup>
- <mimeType>text/html</mimeType>
- <markupXml>
- <script>
- <xsl:variable name="resourceID" select="xtsext:urldecode(string(/root/env/param[@name='currentResourceID']))"/>
- <xsl:variable name="application" select="/root/env/param[@name='application']"/>
- var g_THIS_siblingMenu=new ui_menu({id: "children", fragment: "_THIS_<xsl:value-of select="$application"/>", items:[
- <xsl:for-each select="/root/QueryRelationshipsByType/muws2:QueryRelationshipsByTypeResponse/muws2:Relationship/muws2:Participant[position() > 1 and ./resource-prop:HasChildren = 'true']">
- <xsl:sort select="muws2:Caption" lang="{/root/user/param[@name='contentLocale']}"/>
- <xsl:variable name="isSelected">
- <xsl:value-of select="ns1:ResourceId = $resourceID"/>
- </xsl:variable>
- {
- <xsl:variable name="jsEncodeName" select="xtsext:javascriptencode(string(muws2:Caption))"/>
- title: "<xsl:value-of select="$jsEncodeName"/>",
- selected: <xsl:value-of select="$isSelected"/>,
- action: function(evt) {
- _THIS_.relationshipsObj.keepBreadcrumbs(<xsl:value-of select="number(/root/env/param[@name='breadcrumbPosition'])"/>);
- _THIS_.navigate('<xsl:value-of select="xtsext:javascriptencode(xtsext:urlencode(string(ns1:ResourceId)))"/>', '<xsl:value-of select="xtsext:javascriptencode(string(resource-prop:StoreID))"/>');
- }
- }
- <xsl:if test="position() != last()">,</xsl:if>
- </xsl:for-each>
- ]});
- ui_menuShow(_THIS_.relationshipsObj, g_THIS_siblingMenu);
- </script>
- </markupXml>
- </markup>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
- <!--
- Build the action menu for a specific resource or the group actions
- -->
- <xts:block id="buildActionMenu" dependency="getMeta" nodelist="metadata, env, header" type="exec" mode="interpret" processor="XSLT" condition=".[/root/env/param[@name='buildActionsMenu']='true']" mandatory="false">
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/rp-2"
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:meta="http://developer.cognos.com/schemas/xts/cogadmin/logicsheet/meta"
- exclude-result-prefixes="xsl xts SOAP-ENV xos bus wsrf-rp nemo meta">
-
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:key name="env-param" match="/root/env/param" use="@name"/>
- <xsl:template match="/">
-
- <xts:sequence>
- <xts:append select="/root/output/*[local-name()='part']/*[local-name()='entityBody']/fragment">
- <markup>
- <mimeType>text/html</mimeType>
- <markupXml>
- <!-- Generate UI markup using the response and metadata -->
- <xts:transform src="/cogadmin/transforms/gen-ui-markup/actions_menu.xslt" processor="XSLT">
- <xts:param name="messageBase">/messages/cogadminuimsgs.xml</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/presentation/common.xslt</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/admin.xslt</xts:param>
- <root>
- <xsl:variable name="propertyCapability">
- <xsl:choose>
- <xsl:when test="/root/env/param[@name='actionType']='group'">http://cognos.com/admin/supportedactions/resourcegroup</xsl:when>
- <xsl:otherwise>http://cognos.com/admin/supportedactions/resource</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <!-- does the current resource support the needed property (supportedActions or supportedGroupActions) -->
- <xsl:variable name="supportedActionsProp" select="/root/metadata/wsrf-rp:GetResourcePropertyResponse/nemo:MetadataDescriptor/nemo:Property[nemo:Capability=string($propertyCapability)]/nemo:Name"/>
-
- <xsl:if test="string($supportedActionsProp) != ''">
- <xts:request protocol="GetResourceProperty">
- <SOAP-ENV:Envelope
- xmlns:nemo="http://developer.cognos.com/nemo"
- xmlns:resource-prop="http://developer.cognos.com/admin/properties"
- xmlns:wsrf-rp="http://docs.oasis-open.org/wsrf/rp-2"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- <nemo:cogadminHeader>
- <nemo:ResourceIdentifier><xsl:value-of select="/root/env/param[@name='objResourceID']"/></nemo:ResourceIdentifier>
- </nemo:cogadminHeader>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <wsrf-rp:GetResourceProperty><xsl:value-of select="$supportedActionsProp"/></wsrf-rp:GetResourceProperty>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </xsl:if>
- <xts:queryNode select="/root/metadata | /root/system | /root/env"/>
- </root>
- </xts:transform>
- </markupXml>
- </markup>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
- <!--
- Generate javascript and breadcrumbs for the various J2HTML scorecard views. TODO: Migrate this to J2HTML
- Only do this if we're not building the sibling or action menus
- -->
- <xts:block id="response" nodelist="env, relationships, QueryRelationshipsByType, user" type="exec" dependency="getMeta" mode="interpret" processor="XSLT" condition=".[not(/root/env/param[@name='buildSiblingMenu']='true') and not(/root/env/param[@name='buildActionsMenu']='true')]" mandatory="false">
-
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
- xmlns:xos="http://developer.cognos.com/schemas/xts/output/"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:meta="http://developer.cognos.com/schemas/xts/cogadmin/logicsheet/meta"
- exclude-result-prefixes="xsl xts SOAP-ENV xos bus xtsext meta">
-
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:key name="env-param" match="/root/env/param" use="@name"/>
-
- <xsl:template match="/">
- <xts:sequence>
- <xts:append select="/root/output/*[local-name()='part']/*[local-name()='entityBody']/fragment">
- <markup>
- <mimeType>text/html</mimeType>
- <markupXml>
- <xts:transform src="/cogadmin/transforms/presentation/renderFragment.xslt" processor="XSLT">
- <xts:param name="messageBase">/messages/cogadminuimsgs.xml</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/admin.xslt</xts:param>
- <root>
- <!-- Generate UI markup using the response and metadata -->
- <xts:transform src="/cogadmin/transforms/gen-ui-markup/relationships.xslt" processor="XSLT">
- <xts:param name="messageBase">/messages/cogadminuimsgs.xml</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/presentation/common.xslt</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/admin.xslt</xts:param>
- <root>
- <!-- supported relationships response and QueryRelationshipsByTypeResponse -->
- <xts:queryNode select="/root/relationships | /root/QueryRelationshipsByType/* | /root/breadcrumbs"/>
- <contentLocale>
- <xsl:value-of select="/root/user/param[@name='contentLocale']"/>
- </contentLocale>
- <xts:queryNode select="/root/env | /root/system | /root/user"/>
- </root>
- </xts:transform>
- <xts:queryNode select="/root/system | /root/user"/>
- </root>
- </xts:transform>
- </markupXml>
- </markup>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
- </xts:morphlet>
|