maDenied.xts 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: qs
  5. (C) Copyright IBM Corp. 2001, 2017
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <xts:morphlet version="1.0" xmlns:xts="http://developer.cognos.com/schemas/xts/" messageBase="messages/QSRVUITextPL.xml,messages/portal.xml,messages/portalRL.xml" requiredCapability="canUseQueryStudio">
  13. <xts:block id="page" type="exec" mode="output" processor="XSLT" mimeType="text/html">
  14. <!-- get the debug logic sheet -->
  15. <xts:logicsheet path="logicsheets/debuglogic.xslt"/>
  16. <!-- get the new theme stuff -->
  17. <xts:logicsheet path="logicsheets/portal.xsl"/>
  18. <xts:logicsheet path="qs/logicsheets/dialogs.xsl"/>
  19. <xts:logicsheet path="logicsheets/presentation/dialog/framework.xsl"/>
  20. <xts:logicsheet path="logicsheets/presentation/layout.xsl"/>
  21. <xts:logicsheet path="logicsheets/presentation/dialog/presentation.xsl"/>
  22. <xts:logicsheet path="logicsheets/presentation/controls/framework.xsl"/>
  23. <xts:logicsheet path="logicsheets/presentation/controls/presentation.xsl"/>
  24. <xts:logicsheet path="logicsheets/cm-logic.xsl"/>
  25. <!-- apply the form logic -->
  26. <xts:logicsheet path="logicsheets/formlogic.xslt"/>
  27. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xts="http://developer.cognos.com/schemas/xts/" xmlns:lyt="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/layout/" xmlns:pf="http://developer.cognos.com/schemas/xts/pf" 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:cp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/presentation/" xmlns:cf="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/framework/" xmlns:dbg="http://developer.cognos.com/schemas/xts/logicsheets/xslt/debug/" xmlns:qsdlg="http://developer.cognos.com/schemas/xts/logicsheets/xslt/qs/dialog/" xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt" exclude-result-prefixes="xsl xts lyt pf dp df cp cf dbg qsdlg xtsext">
  28. <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
  29. <!-- add any theme variables -->
  30. <df:variables/>
  31. <pf:variables/>
  32. <!-- start the output -->
  33. <xsl:template match="/root">
  34. <dp:page>
  35. <dp:script>
  36. <script type="text/javascript">
  37. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/layout.js</xsl:attribute>
  38. <xsl:text/>//<xsl:text/>
  39. </script>
  40. <script type="text/javascript">&lt;!--
  41. function init()
  42. {
  43. attachMouseEvents();
  44. var cf=getConfigFrame?getConfigFrame():null;
  45. if (cf &amp;&amp; cf.showDialogFrame) cf.showDialogFrame(150);
  46. }
  47. //--&gt;</script>
  48. </dp:script>
  49. <form style="margin:0px" name="f" method="POST">
  50. <table border="0" cellspacing="0" cellpadding="0" height="100%" width="100%">
  51. <tr>
  52. <td width="100%" height="0%">
  53. <!-- dialog header -->
  54. <dp:header help="false">
  55. <!-- header titles -->
  56. <dp:title>
  57. <xts:string id="METADATA_NOT_AVAILABLE"/>
  58. </dp:title>
  59. <!-- close link for the header -->
  60. <dp:close>
  61. <a href="javascript:getConfigFrame().hideDialogFrame()">
  62. <dp:closeMarker/>
  63. </a>
  64. </dp:close>
  65. <!-- description (hint text) -->
  66. <dp:description></dp:description>
  67. </dp:header>
  68. </td>
  69. </tr>
  70. <tr>
  71. <td width="100%" height="100%" valign="top">
  72. <!-- layout -->
  73. <lyt:layout style="1" border="no">
  74. <lyt:section>
  75. <dp:box valign="top">
  76. <dp:boxSection hgap="20">
  77. <img width="32" height="32" align="top" hspace="10">
  78. <xsl:attribute name="src"><xsl:value-of select="$webcontent"/>/<xsl:value-of select="$app"/>/images/msg_error.gif</xsl:attribute>
  79. </img>
  80. </dp:boxSection>
  81. <dp:boxSection>
  82. <dp:description>
  83. <xts:string id="METADATA_ACCESS_DENIED"/>
  84. </dp:description>
  85. </dp:boxSection>
  86. </dp:box>
  87. </lyt:section>
  88. </lyt:layout>
  89. </td>
  90. </tr>
  91. <tr>
  92. <td width="100%" height="0%">
  93. <qsdlg:defaultOKCloseLinkButton/>
  94. </td>
  95. </tr>
  96. <!-- <dbg:dumpxml select="/"/> -->
  97. </table>
  98. </form>
  99. </dp:page>
  100. </xsl:template>
  101. </xsl:stylesheet>
  102. </xts:block>
  103. </xts:morphlet>