new_content_utilization.xts 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ps
  5. (C) Copyright IBM Corp. 2013
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xts:morphlet xmlns:xts="http://developer.cognos.com/schemas/xts/" messageBase="messages/portal.xml, messages/portalRL.xml" requiredCapability="canUseAdministrationPortal">
  9. <!--
  10. ===============================================================================================
  11. Render the select tenants page
  12. ===============================================================================================
  13. -->
  14. <xts:block id="renderSelectTenantsPage" mode="output" processor="XSLT" type="exec" mimeType="text/html" mandatory="false" path="portal/contentUtilization/renderSelectTenantsPage.xslt">
  15. <!-- get the ContentManager logic sheet -->
  16. <!-- deployment packages part -->
  17. <xts:logicsheet path="logicsheets/contentadmin.xsl"/>
  18. <xts:logicsheet path="logicsheets/deploymentlogic.xsl"/>
  19. <!-- get the new theme stuff -->
  20. <xts:logicsheet path="logicsheets/portal.xsl"/>
  21. <xts:logicsheet path="logicsheets/presentation/dialog/framework.xsl"/>
  22. <xts:logicsheet path="logicsheets/presentation/layout.xsl"/>
  23. <xts:logicsheet path="logicsheets/presentation/dialog/presentation.xsl"/>
  24. <!-- apply the form logic -->
  25. <xts:logicsheet path="logicsheets/formlogic.xslt"/>
  26. <xts:logicsheet path="logicsheets/validation.xslt"/>
  27. <xts:logicsheet path="logicsheets/presentation/touch_up.xslt"/>
  28. </xts:block>
  29. <!--
  30. ================================================
  31. Debug block
  32. ===============================================
  33. -->
  34. <xts:block id="debug" dependency="renderSelectTenantsPage" condition=".[/root/session/param[@name='debug'] = '1']" type="exec" mode="output" processor="XSLT" mandatory="false" mimeType="text/html">
  35. <xts:logicsheet path="logicsheets/debuglogic.xslt"/>
  36. <!-- debug logic sheet -->
  37. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dbg="http://developer.cognos.com/schemas/xts/logicsheets/xslt/debug/" exclude-result-prefixes="dbg">
  38. <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no" omit-xml-declaration="yes"/>
  39. <xsl:template match="/">
  40. <dbg:dumpxml select="/root"/>
  41. </xsl:template>
  42. </xsl:stylesheet>
  43. </xts:block>
  44. </xts:morphlet>