mob_error_details.html.template 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: Mobile
  5. (C) Copyright IBM Corp. 2007, 2015
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  11. <title>$META_TITLE</title>
  12. <meta name="Version" content="$META_VERSION"/>
  13. <meta name="Title" content="$META_TITLE"/>
  14. <meta name="Timestamp" content="$META_TIMESTAMP"/>
  15. <meta name="GatewayUrl" content="$META_GATEWAY"/>
  16. <meta name="CMPath" content="$META_CMPATH"/>
  17. <meta name="SourcePath" content="$META_SOURCEPATH"/>
  18. <meta name="DRILLSTR" content=""/>
  19. <meta name="PageCount" content="$META_PAGECOUNT"/>
  20. <meta name="Page" content="$META_PAGE"/>
  21. <meta name="RenderID" content="$META_RENDERID"/>
  22. <meta name="drillTargetCount" content="0"/>
  23. <style>
  24. body {
  25. background-color: white;
  26. color: #000;
  27. font-family: Helvetica;
  28. font-size: 16px;
  29. font-weight: bold;
  30. margin: 0;
  31. overflow-x: hidden;
  32. }
  33. .viewer {
  34. background-color: #fff;
  35. bottom: 3px;
  36. font-weight: normal !important;
  37. position: absolute;
  38. top: 47px;
  39. width: 100%;
  40. z-index: 1;
  41. }
  42. div.error-header {
  43. font-size: 18px;
  44. padding: 0 10px;
  45. }
  46. div.error-path {
  47. color: #808080;
  48. font-style: italic;
  49. padding-left: 12px;
  50. padding-right: 10px;
  51. }
  52. div.error-text {
  53. background-color: #fff2f2;
  54. border: 2px solid red;
  55. color: #000000;
  56. float: left;
  57. font-size: 14px;
  58. margin-bottom: 5px;
  59. margin-left: 10px;
  60. margin-top: 5px;
  61. padding: 7px 14px;
  62. }
  63. p.error-warning {
  64. font-size: 18px;
  65. }
  66. h1 {
  67. font-size: 18px;
  68. margin: 0;
  69. padding: 0;
  70. }
  71. </style>
  72. </head>
  73. <body>
  74. <div class="viewer">
  75. <div class="page">
  76. <div class="error-header">
  77. <h1>$REPORT_LABEL</h1>
  78. </div>
  79. <div class="error-path">
  80. $REPORT_PATH
  81. </div>
  82. <div class="error-text">
  83. <p>
  84. $ERROR_DETAILS
  85. </p>
  86. <pre>
  87. $REPORT_ERROR_TEXT
  88. </pre>
  89. </div>
  90. </div>
  91. </div>
  92. </body>
  93. </html>