123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cogadmin
- (C) Copyright IBM Corp. 2005, 2014
- 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 xmlns:xts="http://developer.cognos.com/schemas/xts/" resolverBase="cogadmin" messageBase="messages/cogadminuimsgs.xml, messages/portal.xml, messages/portalRL.xml" requiredCapability="canUseScheduling canUseMonitorActivityTool or">
- <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 histories
- -->
- <xts:block id="getContent" dependency="frag_init" nodelist="env, header, session, system, http, configProps, user" type="exec" mode="interpret" processor="XSLT">
- <xts:logicsheet path="logicsheets/tenantlogic.xsl"/>
- <xts:logicsheet path="cogadmin/logicsheets/admin.xslt"/>
- <xts:logicsheet path="cogadmin/logicsheets/presentation/filters.xslt"/>
- <xts:logicsheet path="/cogadmin/logicsheets/buslogic.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:bus="http://developer.cognos.com/schemas/bibus/3/"
- xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt"
- xmlns:flt="http://developer.cognos.com/schemas/uic/presentation/filters/"
- xmlns:send="http://developer.cognos.com/schemas/xts/logic-sheet/xslt/brl/1/"
- xmlns:admui="http://developer.cognos.com/schemas/xts/admui"
- exclude-result-prefixes="xsl xts SOAP-ENV bus xtsext admui flt">
-
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <!-- common variables -->
- <admui:variables/>
- <!-- common pager variables -->
- <admui:pagerVariables pagerName="past_activities"/>
-
- <xsl:variable name="personalOnly" select="key('env-param', 'personalOnly') ='true' or not(key('session-param','capabilities')/canUseAdministrationPortal)"/>
- <!-- Filter options -->
-
- <xsl:variable name="from">
- <xsl:choose>
- <!-- first time we hit the page, or the user selected the period from the dropdown list -->
- <xsl:when test="not(key('env-param','past_filter_period')) or key('env-param','past_filter_period') = 'last_hours'">
- <xsl:variable name="last_hours">
- <xsl:choose>
- <xsl:when test="not(key('env-param','past_filter_last_hours'))">-4</xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="concat('-',key('env-param','past_filter_last_hours'))"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:value-of select="xtsext:getDateTimeOffset( xtsext:getCurrentDateTime(string('GMT')), number($last_hours), string('hour'))"/>
- </xsl:when>
- <!-- user has used the date/time control to select the dates/times -->
- <xsl:when test="key('env-param','past_filter_period') = 'fromto'">
- <xsl:value-of select="xtsext:formatDateToUTC(string(concat(substring(key('env-param','past_date_periodFrom'), 1, 10), 'T', substring(string(key('env-param','past_time_periodFrom')), 1,5), ':00')), string($timeZone))"/>
- </xsl:when>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="to">
- <xsl:if test="key('env-param','past_filter_period') = 'fromto'">
- <xsl:value-of select="xtsext:formatDateToUTC(string(concat(substring(key('env-param','past_date_periodTo'), 1, 10), 'T', substring(string(key('env-param','past_time_periodTo')), 1,5), ':00')), string($timeZone))"/>
- </xsl:if>
- </xsl:variable>
- <!--
- build a searchPath to the runnable
- -->
- <flt:buildRunnableSearchPath prefix="past"/>
-
- <xsl:variable name="historyPath">
- <xsl:value-of select="$runnablePath"/>
- <xsl:text>history[@ownerEventID = ''</xsl:text>
- <xsl:choose>
- <xsl:when test="key('env-param', 'past_filter_ran_by') != ''">
- <xsl:text> and containsReferences(@user, </xsl:text>
- <xsl:value-of select="key('env-param', 'past_filter_ran_by')"/>
- <xsl:text>)</xsl:text>
- </xsl:when>
- <xsl:when test="$personalOnly">
- <xsl:text> and containsReferences(@user, ~)</xsl:text>
- </xsl:when>
- </xsl:choose>
- <xsl:text>]</xsl:text>
-
- <!-- period filter -->
- <xsl:text>[@requestedExecutionTime > '</xsl:text>
- <xsl:value-of select="$from"/>
- <xsl:text>'</xsl:text>
- <xsl:if test="$to != ''">
- <xsl:text> and @requestedExecutionTime < '</xsl:text>
- <xsl:value-of select="$to"/>
- <xsl:text>'</xsl:text>
- </xsl:if>
- <xsl:text>]</xsl:text>
- <xsl:if test="not(contains(' own_entries entries_ran ', concat(' ',key('env-param','past_filter_scope'),' ')))">
- <xsl:text>[permission("read")]</xsl:text>
- </xsl:if>
-
- <!-- dispatcher filter -->
- <xsl:if test="key('env-param','past_filter_dispatcher') and key('env-param','past_filter_dispatcher') != ''">
- <xsl:text>[@dispatcherID = '</xsl:text>
- <xsl:value-of select="key('env-param','past_filter_dispatcher')"/>
- <xsl:text>']</xsl:text>
- </xsl:if>
-
- <!-- tenantid filter -->
- <xsl:if test="key('env-param','past_filter_tenantid') and key('env-param','past_filter_tenantid') != ''">
- <xsl:text>[@tenantID = '</xsl:text>
- <xsl:value-of select="key('env-param','past_filter_tenantid')"/>
- <xsl:text>']</xsl:text>
- </xsl:if>
- <!-- add a filter on status to make sure we only get completed histories -->
- <xsl:text>[@status='terminated' or @status='purged' or @status='failed' or @status='succeeded' or @status='cancelled']</xsl:text>
- </xsl:variable>
- <xsl:template match="/">
-
- <xts:sequence>
- <xts:append select="/root">
- <response>
- <xts:request href="bus://dispatcher" protocol="NAV" responseEnvelope="false" outputHeader="false">
- <SOAP-ENV:Envelope xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" xmlns:nav="http://developer.cognos.com/schemas/cps/navigation/1/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <SOAP-ENV:Header>
- <xsl:copy-of select="/root/header/bus:biBusHeader"/>
- </SOAP-ENV:Header>
- <SOAP-ENV:Body>
- <nav:search>
- <!-- nav options -->
- <nav:validateTag fault="true"/>
- <nav:scope>
- <xsl:value-of select="$historyPath"/>
- <!-- Status filter -->
- <xsl:if test="key('env-param','past_filter_status') and key('env-param','past_filter_status') != ''">
- <xsl:text>[@status = '</xsl:text>
- <xsl:value-of select="key('env-param','past_filter_status')"/>
- <xsl:text>'</xsl:text>
- <xsl:if test="key('env-param','past_filter_status') = 'cancelled'">
- <xsl:text> or @status = 'terminated' or @status = 'purged'</xsl:text>
- </xsl:if>
- <xsl:text>]</xsl:text>
- </xsl:if>
- </nav:scope>
- <nav:property name="fullPath"/>
- <nav:property name="icons"/>
- <nav:property name="searchPath"/>
- <nav:property name="times"/>
- <nav:property name="position"/>
- <nav:property name="eventID"/>
- <nav:property name="status"/>
- <nav:property name="requestedExecutionTime"/>
- <nav:property name="actualExecutionTime"/>
- <nav:property name="actualCompletionTime"/>
- <nav:property name="userInfo"/>
- <nav:property name="internalId"/>
- <nav:property name="permissions"/>
- <nav:property name="screenTip"/>
- <nav:property name="tenantID"/>
- <nav:property name="maximumDetailSeverity"/>
- <nav:property name="dispatcherID"/>
-
- <nav:property name="hidden"/>
- <nav:property name="shown"/>
- <!-- nav properties -->
- <nav:recursive>false</nav:recursive>
- <nav:param name="backUrl">false</nav:param>
- <nav:param name="urlFlags">h1cu</nav:param>
- <nav:param name="mode">admin</nav:param>
- <nav:maxObjects><xsl:value-of select="$maxObjects"/></nav:maxObjects>
- <nav:skipObjects><xsl:value-of select="$skipObjects"/></nav:skipObjects>
- <nav:sort>
- <xsl:attribute name="order">
- <xsl:choose>
- <xsl:when test="key('env-param', 'sort_order')='ascending'">ascending</xsl:when>
- <xsl:otherwise>descending</xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- <xsl:choose>
- <xsl:when test="key('env-param', 'sort_column') != ''">
- <xsl:value-of select="key('env-param', 'sort_column')"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:text>requestedExecutionTime</xsl:text>
- </xsl:otherwise>
- </xsl:choose>
- </nav:sort>
- <!-- common nav params -->
- <admui:commonNavParams/>
- </nav:search>
- </SOAP-ENV:Body>
- </SOAP-ENV:Envelope>
- </xts:request>
- </response>
- </xts:append>
- </xts:sequence>
- <xts:sequence>
- <!--
- todo: put back the check to show/hide parts of the UI post beta once a solution is figured out for cogadmin
- <xsl:if test="key('system-param', 'enable-history-counts')='true'">
- -->
- <xts:append>
- <send:request provider="cm">
- <cm:queryCount xmlns:cm="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <search xsi:type="xsd:string">
- <xsl:value-of select="$historyPath"/>
- </search>
- <property xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="cm:propEnum">status</property>
- </cm:queryCount>
- </send:request>
- </xts:append>
- </xts:sequence>
- <xts:sequence>
- <!-- query dispatcher names when not in personal only mode -->
- <xts:append select="/root">
- <dispatchers>
- <xsl:if test="not($personalOnly)">
- <send:request provider="cm">
- <cm:query xmlns:cm="http://developer.cognos.com/schemas/bibus/3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <search xsi:type="xsd:string">/configuration//dispatcher</search>
- <properties xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="cm:propEnum[]">
- <item xsi:type="cm:propEnum">dispatcherID</item>
- <item xsi:type="cm:propEnum">dispatcherPath</item>
- </properties>
- </cm:query>
- </send:request>
- </xsl:if>
- </dispatchers>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
- <!-- Merge the tenantNames into the response -->
- <xts:block processor="XSLT" type="exec" mandatory="false"
- path="/portal/tenancy/mergeTenantNames.xslt"
- id="mergeTenantNames"
- dependency="getContent"
- condition=".[/root/session/param[@name='e_showTenantInfo']='true']">
- <xts:logicsheet path="logicsheets/buslogic.xslt"/>
- </xts:block>
-
- <!--
- render the HTML
- -->
- <xts:block id="getMeta" type="exec" mode="interpret" nodelist="env" 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:xos="http://developer.cognos.com/schemas/xts/output/"
- exclude-result-prefixes="xsl xts xos xtsext">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
-
- <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>
- <library type="text/javascript" href="$WEB$/ps/cogadmin/js/barchart.js"/>
- <info>
- <title><xts:string id="IDS_PAC_TITLE"/></title>
- </info>
- <preferredTitle>
- <xts:string id="IDS_PAC_TITLE"/>
- </preferredTitle>
- <meta>
- <customProperties name="personalOnly">
- <datatype>xs:boolean</datatype>
- <default>
- <value>false</value>
- </default>
- <control appearance="hidden" />
- <validate>
- <name>fixed</name>
- <rule>
- <type>
- <boolean/>
- </type>
- </rule>
- </validate>
- </customProperties>
- <transientProperties name="timestamp">
- <validate>
- <name>timestamp</name>
- <ruleRef id="fragment-cogadmin:timestamp"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_status">
- <validate>
- <name>past_filter_status</name>
- <ruleRef id="fragment-cogadmin:filter_status"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_type">
- <validate>
- <name>past_filter_type</name>
- <ruleRef id="fragment-cogadmin:filter_type"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_scope">
- <validate>
- <name>past_filter_scope</name>
- <ruleRef id="fragment-cogadmin:filter_scope"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_dispatcher">
- <validate>
- <name>past_filter_dispatcher</name>
- <ruleRef id="fragment-cogadmin:filter_dispatcher"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_tenantid">
- <validate>
- <name>past_filter_tenantid</name>
- <ruleRef id="fragment-cogadmin:filter_tenantid"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_period">
- <default>
- <value>last_hours</value>
- </default>
- <validate>
- <name>past_filter_period</name>
- <ruleRef id="fragment-cogadmin:filter_period"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_last_hours">
- <default>
- <value>4</value>
- </default>
- <validate>
- <name>past_filter_last_hours</name>
- <ruleRef id="fragment-cogadmin:filter_last_hours"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_date_periodFrom">
- <validate>
- <name>past_date_periodFrom</name>
- <ruleRef id="fragment-cogadmin:date_period"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_time_periodFrom">
- <validate>
- <name>past_time_periodFrom</name>
- <ruleRef id="fragment-cogadmin:time_period"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_date_periodTo">
- <validate>
- <name>past_date_periodTo</name>
- <ruleRef id="fragment-cogadmin:date_period"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_time_periodTo">
- <validate>
- <name>past_time_periodTo</name>
- <ruleRef id="fragment-cogadmin:time_period"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_owned_by">
- <validate>
- <name>past_filter_owned_by</name>
- <ruleRef id="fragment-cogadmin:user"/>
- </validate>
- </transientProperties>
- <transientProperties name="past_filter_ran_by">
- <validate>
- <name>past_filter_ran_by</name>
- <ruleRef id="fragment-cogadmin:user"/>
- </validate>
- </transientProperties>
- <globalValidator>
- <parameter>
- <name>sort_order</name>
- <ruleRef id="fragment-cogadmin:sort_order"/>
- </parameter>
- </globalValidator>
- <requiredCapabilities>canUseScheduling canUseMonitorActivityTool or</requiredCapabilities>
- </meta>
- <state>
- <xsl:variable name="state">
- <xsl:text><param name="personalOnly"></xsl:text>
- <xsl:value-of select="xtsext:xmlencode(string(/root/env/param[@name='personalOnly']))"/>
- <xsl:text></param></xsl:text>
- </xsl:variable>
- <xsl:value-of select="xtsext:base64encode($state,true())"/>
- </state>
- </fragment>
- </xos:entityBody>
- </xos:part>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
-
- <!-- get bar chart data -->
- <xts:block id="getChart" dependency="frag_init getContent" nodelist="cm:queryCountResponse, env, user, http" type="exec" mode="interpret" processor="XSLT" mandatory="true">
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- exclude-result-prefixes="xsl xts">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
- <xsl:key name="query-count" match="/root/*[local-name()='queryCountResponse']/queryCountResult/item" use="value"/>
- <xsl:template match="/">
- <xts:sequence>
- <xts:append select="/root">
- <barChart>
- <type><xsl:value-of select="'Bars'"/></type>
- <yTitle><xts:string id="IDS_BARCHART_TITLE_NUMBER_OF_ACTIVITIES"/></yTitle>
- <xTitle><xts:string id="IDS_BARCHART_TITLE_MONITORING_ACTIVITIES"/></xTitle>
- <row>
- <label><xts:string id="IDS_BARCHART_SUCCEEDED"/></label>
- <value><xsl:value-of select="string(key('query-count','succeeded')/count)"/></value>
- </row>
- <row>
- <label><xts:string id="IDS_BARCHART_FAILED"/></label>
- <value><xsl:value-of select="string(key('query-count','failed')/count)"/></value>
- </row>
- <row>
- <label><xts:string id="IDS_BARCHART_CANCELLED"/></label>
- <value>
- <xsl:variable name="cancelledCount">
- <xsl:choose>
- <xsl:when test="key('query-count','cancelled')/count"><xsl:value-of select="key('query-count','cancelled')/count"/></xsl:when>
- <xsl:otherwise>0</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="terminatedCount">
- <xsl:choose>
- <xsl:when test="key('query-count','terminated')/count"><xsl:value-of select="key('query-count','terminated')/count"/></xsl:when>
- <xsl:otherwise>0</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="purgedCount">
- <xsl:choose>
- <xsl:when test="key('query-count','purged')/count"><xsl:value-of select="key('query-count','purged')/count"/></xsl:when>
- <xsl:otherwise>0</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:value-of select="number($cancelledCount) + number($terminatedCount) + number($purgedCount)"/>
- </value>
- </row>
- </barChart>
- </xts:append>
- <xts:append select="/root">
- <xts:transform src="/cogadmin/transforms/getChartUrl.xslt" processor="XSLT">
- <xts:param name="logicsheet">/cogadmin/logicsheets/presentation/common.xslt</xts:param>
- <root>
- <xts:queryNode select="/root/barChart"/>
- </root>
- </xts:transform>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
-
- <xts:block id="renderMarkup" nodelist="env, user, session, cogadminChartUrl" type="exec" processor="XSLT" mode="interpret" dependency="frag_init mergeTenantNames getChart getMeta">
- <xts:logicsheet path="cogadmin/logicsheets/admin.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:val="http://developer.cognos.com/schemas/validator/1/"
- xmlns:fragment="urn:cognos:fragments:validator"
- xmlns:fragment-cogadmin="urn:cognos:fragments:validator:cogadmin"
- xmlns:admui="http://developer.cognos.com/schemas/xts/admui"
- exclude-result-prefixes="xsl xts SOAP-ENV xos bus admui">
-
- <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/activities_past.xslt" processor="XSLT">
- <xts:param name="messageBase">/messages/cogadminuimsgs.xml</xts:param>
- <xts:param name="messageBase">/messages/portal.xml</xts:param>
- <xts:param name="messageBase">/messages/portalRL.xml</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/presentation/common.xslt</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/presentation/pager.xslt</xts:param>
- <xts:param name="logicsheet">/cogadmin/logicsheets/admin.xslt</xts:param>
- <root>
- <xts:queryNode select="/root/*[local-name()='queryCountResponse'] | /root/response/* | /root/dispatchers | /root/user | /root/metadata | /root/system | /root/session | /root/env"/>
- </root>
- </xts:transform>
- <xts:queryNode select="/root/system | /root/session | /root/env | /root/user"/>
- </root>
- </xts:transform>
- </markupXml>
- </markup>
- <subfragment id="cogadminChart">
- <xsl:attribute name="href">
- <xsl:value-of select="/root/cogadminChartUrl"/>
- </xsl:attribute>
- </subfragment>
- </xts:append>
- </xts:sequence>
- </xsl:template>
- </xsl:stylesheet>
- </xts:block>
- </xts:morphlet>
|