国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
3.5KB

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  4. <title>更新TAG HTML</title>
  5. <link href="css/base.css" rel="stylesheet" type="text/css">
  6. </head>
  7. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  8. <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D1DDAA" align="center">
  9. <form name="form1" action="makehtml_tag_action_list.php" method="get" target='stafrm'>
  10. <tr>
  11. <td height="28" colspan="2" background='images/tbg.gif'>
  12. <table width="98%" border="0" cellpadding="0" cellspacing="0">
  13. <tr>
  14. <td width="30%" height="18"><strong>更新TAG HTML</strong> </td>
  15. <td width="70%" align="right">
  16. </td>
  17. </tr>
  18. </table>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td width="300" valign="top" bgcolor="#FFFFFF">选择TAG:</td>
  23. <td width="377" valign="top" bgcolor="#FFFFFF">
  24. <?php
  25. $sql="select * from #@__tagindex order by tag asc";
  26. $dsql->Execute('al',$sql);
  27. echo "<select name='tagid' style='width:300px'>\r\n";
  28. echo "<option value='0' selected='1'>更新所有TAG...</option>\r\n";
  29. while($row=$dsql->GetObject('al')){
  30. echo "<option value='".$row->id."'>".$row->tag."</option>";
  31. }
  32. echo "</select>";
  33. ?>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td height="20" valign="top" bgcolor="#FFFFFF">每次最大创建页数:</td>
  38. <td height="20" valign="top" bgcolor="#FFFFFF"><input name="maxpagesize" type="text" id="maxpagesize" value="50"
  39. size="10">
  40. 个文件 </td>
  41. </tr>
  42. <tr>
  43. <td height="20" valign="top" bgcolor="#FFFFFF">说明:</td>
  44. <td height="20" valign="top" bgcolor="#FFFFFF">
  45. * TAG首页模板文件:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/tag.htm<br>
  46. * TAG列表页模板文件:<?php echo $cfg_templets_dir;?>/<?php echo $cfg_df_style?>/taglist.htm<br>
  47. 生成静态文件后,访问动态文件则直接跳转到静态文件,如果需要动态访问,删除对应文件即可。
  48. </td>
  49. </tr>
  50. <tr>
  51. <td height="20" colspan="2" bgcolor="#FAFAF1" align="center">
  52. <input name="b112" type="button" class="coolbg np" value="生成TAG HTML"
  53. onClick="document.form1.action='makehtml_taglist_action.php';document.form1.submit();" style="width:120px">
  54. </td>
  55. </tr>
  56. </form>
  57. <tr bgcolor="#F9FCEF">
  58. <td height="20" colspan="2">
  59. <table width="100%">
  60. <tr>
  61. <td width="74%">进行状态: </td>
  62. <td width="26%" align="right">
  63. <script language='javascript'>
  64. function ResizeDiv(obj, ty) {
  65. if (ty == "+") document.all[obj].style.pixelHeight += 50;
  66. else if (document.all[obj].style.pixelHeight > 80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  67. }
  68. </script>
  69. [<a href='#' onClick="ResizeDiv('mdv','+');">增大</a>] [<a href='#' onClick="ResizeDiv('mdv','-');">缩小</a>]
  70. </td>
  71. </tr>
  72. </table>
  73. </td>
  74. </tr>
  75. <tr bgcolor="#FFFFFF">
  76. <td colspan="2" id="mtd">
  77. <div id='mdv' style='width:100%;height:350px;'>
  78. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  79. </div>
  80. </td>
  81. </tr>
  82. </table>
  83. </body>
  84. </html>