国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

96 lignes
4.0KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>生成HTML</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" align="center">
  10. <form name='form2' action='content_list.php' method="get" target='stafrm'>
  11. <input type='hidden' name='nullfield' value='ok'>
  12. </form>
  13. <form name="form1" action="makehtml_archives_action.php" method="get" target='stafrm'>
  14. <tr>
  15. <td height="28" colspan="2" background='images/tbg.gif'>
  16. <table width="98%" border="0" cellpadding="0" cellspacing="0">
  17. <tr>
  18. <td width="30%" height="18" style="padding-left:10px;"><strong>更新文档HTML:</strong></td>
  19. <td width="70%" align="right">
  20. <a href="makehtml_list.php?typeid=<?php echo (isset($typeid) ? $typeid : 0); ?>" class="np coolbg">更新栏目HTML</a>
  21. </td>
  22. </tr>
  23. </table></td>
  24. </tr>
  25. <tr>
  26. <td width="108" valign="top" bgcolor="#FFFFFF">选择栏目:</td>
  27. <td width="377" valign="top" bgcolor="#FFFFFF">
  28. <?php
  29. if(empty($cid)) $cid="0";
  30. $tl = new TypeLink($cid);
  31. $typeOptions = $tl->GetOptionArray($cid,$admin_catalogs,0);
  32. echo "<select name='typeid' style='width:300'>\r\n";
  33. if($cid=="0") echo "<option value='0' selected>更新所有文档...</option>\r\n";
  34. echo $typeOptions;
  35. echo "</select>";
  36. ?>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td height="20" valign="top" bgcolor="#FFFFFF">起始ID:</td>
  41. <td height="20" valign="top" bgcolor="#FFFFFF"><input name="startid" type="text" id="startid" size="10">
  42. (空或0表示从头开始)</td>
  43. </tr>
  44. <tr>
  45. <td height="20" valign="top" bgcolor="#FFFFFF">结束ID:</td>
  46. <td height="20" valign="top" bgcolor="#FFFFFF"><input name="endid" type="text" id="endid" size="10">
  47. (空或0表示直到结束ID) </td>
  48. </tr>
  49. <tr>
  50. <td height="20" bgcolor="#FFFFFF">每页生成:</td>
  51. <td height="20" bgcolor="#FFFFFF"> <input name="pagesize" type="text" id="pagesize" value="20" size="8">
  52. 个文件</td>
  53. </tr>
  54. <tr>
  55. <td height="20" colspan="2" bgcolor="#ffffff" align="center">
  56. <input name="b112" type="button" class='coolbg np' value="开始生成HTML" onClick="document.form1.submit();" style="width:100"> <?php
  57. if($cfg_remote_site=='Y')
  58. {
  59. ?>
  60. <input name="isremote" type="checkbox" id="isremote" value="1">
  61. 是否同步远程发布到
  62. <?php GetFtp();?>
  63. <?php
  64. }
  65. ?>
  66. &nbsp;
  67. <input type="button" name="b113" value="查看所有文档" class='coolbg np' onClick="document.form2.submit();" style="width:100"></td>
  68. </tr>
  69. </form>
  70. <tr bgcolor="#F9FCEF">
  71. <td height="20" colspan="2"> <table width="100%">
  72. <tr>
  73. <td width="74%">进行状态: </td>
  74. <td width="26%" align="right">
  75. <script language='javascript'>
  76. function ResizeDiv(obj,ty)
  77. {
  78. if(ty=="+") document.all[obj].style.pixelHeight += 50;
  79. else if(document.all[obj].style.pixelHeight>80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  80. }
  81. </script>
  82. [<a href='#' onClick="ResizeDiv('mdv','+');">增大</a>] [<a href='#' onClick="ResizeDiv('mdv','-');">缩小</a>]
  83. </td>
  84. </tr>
  85. </table></td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td colspan="2" id="mtd">
  89. <div id='mdv' style='width:100%;height:350px;'>
  90. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  91. </div>
  92. </td>
  93. </tr>
  94. </table>
  95. </body>
  96. </html>