mob_error.html.template 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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, 2019
  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="Page" content="$META_PAGE"/>
  20. <meta name="RenderID" content="$META_RENDERID"/>
  21. <meta name="drillTargetCount" content="0"/>
  22. <style>
  23. body {
  24. background-color: white;
  25. color: #000;
  26. font-family: Helvetica;
  27. font-size: 16px;
  28. font-weight: bold;
  29. margin: 0;
  30. overflow-x: hidden;
  31. }
  32. .viewer {
  33. background-color: #fff;
  34. bottom: 3px;
  35. font-weight: normal !important;
  36. position: absolute;
  37. top: 47px;
  38. width: 100%;
  39. z-index: 1;
  40. }
  41. div.error-header {
  42. font-size: 18px;
  43. padding: 0 10px;
  44. }
  45. div.error-path {
  46. color: #808080;
  47. font-style: italic;
  48. padding-left: 12px;
  49. padding-right: 10px;
  50. }
  51. div.error-text {
  52. background-color: #fff2f2;
  53. border: 2px solid red;
  54. color: #000000;
  55. float: left;
  56. font-size: 14px;
  57. margin-bottom: 5px;
  58. margin-left: 10px;
  59. margin-top: 5px;
  60. padding: 7px 14px;
  61. }
  62. p.error-warning {
  63. font-size: 18px;
  64. }
  65. h1 {
  66. font-size: 18px;
  67. margin: 0;
  68. padding: 0;
  69. }
  70. </style>
  71. </head>
  72. <body>
  73. <div class="viewer">
  74. <div class="page">
  75. <div class="error-header">
  76. <h1>$REPORT_LABEL</h1>
  77. </div>
  78. <div class="error-path">
  79. $REPORT_PATH
  80. </div>
  81. <div class="error-text">
  82. <p class="error-warning">
  83. <img src="$ERROR_ICON_URI">
  84. $ERROR_WARNING
  85. </p>
  86. <p>
  87. $REPORT_ERROR_TEXT
  88. </p>
  89. </div>
  90. </div>
  91. </div>
  92. </body>
  93. </html>