pageBreakDelete.xts 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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/dialogIncludes.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:qsdialog="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 qsdialog xtsext">
  28. <xsl:import href="qs/logicsheets/markupTemplates.xsl"/>
  29. <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
  30. <!-- add any theme variables -->
  31. <df:variables/>
  32. <pf:variables/>
  33. <!-- start the output -->
  34. <xsl:template match="/root">
  35. <dp:page>
  36. <dp:script>
  37. <qsdialog:headerIncludes dlgSize="190" featureName="PageBreak"/>
  38. </dp:script>
  39. <form style="margin:0px" name="f" method="POST" onsubmit="execute();return false;">
  40. <table border="0" cellspacing="0" cellpadding="0" height="100%" width="100%">
  41. <tr>
  42. <td width="100%" height="0%">
  43. <!-- dialog header -->
  44. <dp:header help="false">
  45. <!-- header titles -->
  46. <dp:title>
  47. <xts:string id="PAGEBREAK_TITLE"/>
  48. </dp:title>
  49. <!-- close link for the header -->
  50. <dp:close>
  51. <a href="javascript:goDialogManager.getWindowManager().hideDialogFrame()">
  52. <dp:closeMarker/>
  53. </a>
  54. </dp:close>
  55. <!-- description (hint text) -->
  56. <dp:description/>
  57. </dp:header>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td width="100%" height="100%" valign="top">
  62. <!-- layout -->
  63. <lyt:layout style="1" border="no">
  64. <lyt:section>
  65. <dp:input>
  66. <dp:section1/>
  67. <dp:section2>
  68. <xts:string id="PAGEBREAK_EXISTS_ON_ITEM"/>
  69. <br/>
  70. <br/>
  71. <xts:string id="PAGEBREAK_DELETE_QUESTION"/>
  72. </dp:section2>
  73. </dp:input>
  74. <br/>
  75. </lyt:section>
  76. </lyt:layout>
  77. </td>
  78. </tr>
  79. <tr>
  80. <td width="100%" height="0%">
  81. <qsdialog:yesNoCancelButtons/>
  82. </td>
  83. </tr>
  84. <!-- <dbg:dumpxml select="/"/> -->
  85. </table>
  86. </form>
  87. </dp:page>
  88. </xsl:template>
  89. </xsl:stylesheet>
  90. </xts:block>
  91. </xts:morphlet>