vlibTemplate_debugmod_no_javascript.html 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <div id='{tmpl_var name="filename_enc" escape="sq"}' style="margin-top: 20px;">
  2. <table width="100%" border="0" cellpadding="1" bgcolor="#3D4355" height="160">
  3. <tr>
  4. <td height="151">
  5. <table width="100%" border="0" cellpadding="1" bgcolor="#3D4355" bordercolor="#3D4355">
  6. <tr bgcolor="#E1E3EA">
  7. <td width="31%"><b>Template:</b>
  8. </td>
  9. <td width="69%" style='margin-left: 8px;'><tmpl_var vLIB_template_name></td>
  10. </tr>
  11. </table>
  12. <tmpl_if warnings>
  13. <table width="100%" border="0" cellpadding="1" bgcolor="#3D4355" bordercolor="#3D4355">
  14. <tr bgcolor="#E1E3EA">
  15. <th valign="top" height="37" colspan="3">
  16. <font color="#FB0D0D">Following
  17. is a list of warning which could possibly resolve any issues you've
  18. had parsing the template</font><br>
  19. </th>
  20. </tr>
  21. <tr bgcolor="#E1E3EA">
  22. <td width="22%" bgcolor="#E1E3EA" valign="top" height="23"><b>Problem</b></td>
  23. <td width="45%" style='margin-left: 8px;' height="23"><b>Detail</b></td>
  24. <td width="33%" style='margin-left: 8px;' height="23"><b>Location</b></td>
  25. </tr>
  26. <tmpl_loop vLIB_warnings>
  27. <tr bgcolor="#E1E3EA">
  28. <td width="22%" valign="top"><tmpl_var problem></td>
  29. <td width="45%" style='margin-left: 8px;' valign="top">
  30. <tmpl_var detail escape=html>
  31. </td>
  32. <td width="33%" style='margin-left: 8px;' valign="top"><tmpl_var location></td>
  33. </tr>
  34. </tmpl_loop>
  35. </table>
  36. </tmpl_if>
  37. <table width="100%" border="0" cellpadding="1" bgcolor="#3D4355" bordercolor="#3D4355">
  38. <tr bgcolor="#E1E3EA">
  39. <td width="31%">No. of global vars:
  40. </td>
  41. <td width="69%" style='margin-left: 8px;'><tmpl_var vLIB_num_global_vars></td>
  42. </tr>
  43. <tr bgcolor="#E1E3EA">
  44. <td width="31%">No. of top level loops:
  45. </td>
  46. <td width="69%" style='margin-left: 8px;'><tmpl_var vLIB_num_top_level_loops></td>
  47. </tr>
  48. <tr bgcolor="#E1E3EA">
  49. <td width="31%" height="62" valign="top"> List of parameters: </td>
  50. <td width="69%" style='margin-left: 8px;' height="62">
  51. <table width="100%" border="1" cellpadding="0">
  52. <tmpl_loop vLIB_list_params>
  53. <tr bgcolor="#<tmpl_if __EVEN__>E1E3EA<tmpl_else>F0F1F4</tmpl_if>">
  54. <td width="40%" vAlign="top"><b><tmpl_var param_name></b>:</td>
  55. <td width="60%"><tmpl_var name="param_value" escape="none"></td>
  56. </tr>
  57. </tmpl_loop>
  58. </table>
  59. </td>
  60. </tr>
  61. </table>
  62. </td>
  63. </tr>
  64. <tr>
  65. <td height="338">
  66. <table width="100%" border="0" cellpadding="0" bgcolor="#3D4355">
  67. <tr bgcolor="#E1E3EA">
  68. <td width="38%" valign="top" height="76">List of Template Tags:<br>
  69. i.e. TMPL_* tags in html file
  70. </td>
  71. <td width="62%" height="76">
  72. <table width="100%" border="1" cellpadding="0">
  73. <tmpl_if vLIB_include_files>
  74. <tr>
  75. <td width="37%"><b>TMPL_INCLUDE</b>:</td>
  76. <td width="63%">
  77. <tmpl_loop vLIB_include_files>
  78. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  79. <tmpl_var filename>
  80. </tmpl_loop>
  81. </td>
  82. </tr>
  83. </tmpl_if>
  84. <tmpl_if vLIB_vars>
  85. <tr>
  86. <td width="37%"><b>TMPL_VAR</b>:</td>
  87. <td width="63%">
  88. <tmpl_loop vLIB_vars>
  89. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  90. <tmpl_var varname>
  91. </tmpl_loop>
  92. </td>
  93. </tr>
  94. </tmpl_if>
  95. <tmpl_if vLIB_ifs>
  96. <tr>
  97. <td width="37%"><b>TMPL_IF</b>:</td>
  98. <td width="63%">
  99. <tmpl_loop vLIB_ifs>
  100. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  101. <tmpl_var ifname>
  102. </tmpl_loop>
  103. </td>
  104. </tr>
  105. </tmpl_if>
  106. <tmpl_if vLIB_elseifs>
  107. <tr>
  108. <td width="37%"><b>TMPL_ELSEIF</b>:</td>
  109. <td width="63%">
  110. <tmpl_loop vLIB_elseifs>
  111. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  112. <tmpl_var elseifname>
  113. </tmpl_loop>
  114. </td>
  115. </tr>
  116. </tmpl_if>
  117. <tmpl_if vLIB_unless>
  118. <tr>
  119. <td width="37%"><b>TMPL_UNLESS</b>:</td>
  120. <td width="63%">
  121. <tmpl_loop vLIB_unless>
  122. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  123. <tmpl_var unlessname>
  124. </tmpl_loop>
  125. </td>
  126. </tr>
  127. </tmpl_if>
  128. <tmpl_if vLIB_loops>
  129. <tr>
  130. <td width="37%"><b>TMPL_LOOP</b>:</td>
  131. <td width="63%">
  132. <tmpl_loop vLIB_loops>
  133. <tmpl_unless name="__FIRST__"><br /></tmpl_unless>
  134. <tmpl_var loopname>
  135. </tmpl_loop>
  136. </td>
  137. </tr>
  138. </tmpl_if>
  139. </table>
  140. </td>
  141. </tr>
  142. <tr bgcolor="#E1E3EA">
  143. <td width="38%" valign="top">List of vars set using setVar() or by vlibTemplate:
  144. </td>
  145. <td width="62%" style='margin-left: 8px;'>
  146. <tmpl_loop vLIB_tmplvars>
  147. <tmpl_var varname>
  148. <tmpl_unless __LAST__><br></tmpl_unless>
  149. </tmpl_loop>
  150. </td>
  151. </tr>
  152. <tr bgcolor="#E1E3EA">
  153. <td width="38%" height="62" valign="top">List of loops set using the Loop functions:</td>
  154. <td width="62%" style='margin-left: 8px;' height="62">
  155. <tmpl_loop vLIB_tmplloops>
  156. <tmpl_var loopname>
  157. <tmpl_unless __LAST__><br></tmpl_unless>
  158. </tmpl_loop>
  159. </td>
  160. </tr>
  161. </table>
  162. <table width="100%" border="0" cellpadding="0" bgcolor="#3D4355">
  163. <tr bgcolor="#E1E3EA">
  164. <td width="38%" valign="top">
  165. This is the array with which the Vars are built:
  166. </td>
  167. </tr>
  168. <tr bgcolor="#E1E3EA">
  169. <td width="100%" valign="top">
  170. <pre><tmpl_var vLIB_allvars></pre>
  171. </td>
  172. </tr>
  173. <tr bgcolor="#E1E3EA">
  174. <td width="38%" valign="top">
  175. This is the array with which the Loops are built:
  176. </td>
  177. </tr>
  178. <tr bgcolor="#E1E3EA">
  179. <td width="100%" valign="top">
  180. <pre><tmpl_var vLIB_allarrvars></pre>
  181. </td>
  182. </tr>
  183. </table>
  184. </td>
  185. </tr>
  186. </table>
  187. <br><br>
  188. </div>