国内流行的内容管理系统(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.

94 lines
4.6KB

  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>自动摘要分页</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. </head>
  10. <body>
  11. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  12. <form action="article_description_main.php" name="form1" target="stafrm" method="post">
  13. <tr>
  14. <td height="26" background="../static/web/img/tbg.gif">
  15. <table width="98%" cellpadding="0" cellspacing="0" class="table table-borderless">
  16. <tr>
  17. <td width="30%" style="padding-left:10px">自动摘要分页</td>
  18. <td width="70%" align="right"></td>
  19. </tr>
  20. </table>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td height="30">用于自动更新您系统没有填写摘要的文档的摘要信息或更新没分页的文档的自动分页标识(文档使用了自动分页后会降低HTML生成速度,并且在没人工干扰的情况下可能导致分页内容的HTML错误,请小心使用此功能)</td>
  25. </tr>
  26. <tr>
  27. <td height="36">
  28. <table width="90%" cellpadding="2" cellspacing="2" class="table table-borderless">
  29. <tr>
  30. <td width="560">频道ID:<input name="channel" type="text" id="channel" value="1" style="width:260px">(可在“<a href="mychannel_main.php">频道模型管理</a>”处获得)</td>
  31. <td>摘要大小:<input name="dsize" type="text" id="dsize" value="<?php echo $cfg_auot_description?>" style="width:260px">(最大250字节)</td>
  32. </tr>
  33. <tr>
  34. <td>数据表:<input name="table" type="text" id="table2" value="<?php echo $cfg_dbprefix?>addonarticle" style="width:260px"></td>
  35. <td>分析字段:<input name="field" type="text" id="field2" value="body" style="width:260px"></td>
  36. </tr>
  37. <tr>
  38. <td>最小值:<input name="msize" type="text" id="msize2" value="512" style="width:260px">(字节,内容大于该值才分析)</td>
  39. <td>每批处理:<input name="pagesize" type="text" id="pagesize" value="100" style="width:260px">条记录</td>
  40. </tr>
  41. <tr>
  42. <td>
  43. 开始ID:<input name="sid" type="text" id="sid" style="width:60px">
  44. 结束ID:<input name="eid" type="text" id="eid" style="width:60px">
  45. </td>
  46. <td></td>
  47. </tr>
  48. <tr>
  49. <td>操作:
  50. <label><input name="dojob" type="radio" class="np" value="des" checked>
  51. 自动摘要</label>
  52. <label><input type="radio" name="dojob" class="np" value="page">
  53. 自动分页</label>
  54. </td>
  55. <td>自动分页大小:<?php echo $cfg_arcautosp_size?> K,<a href='sys_info.php' class="btn btn-success btn-sm">修改系统参数</a></td>
  56. </tr>
  57. </table>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td height="30" bgcolor="#F8FCF1" align="center">
  62. <button type="submit" name="Submit" class="btn btn-success btn-sm">开始执行分析</button>
  63. </td>
  64. </tr>
  65. </form>
  66. <tr>
  67. <td height="26">
  68. <table width="100%" class="table table-borderless">
  69. <tr>
  70. <td width="70%">结果:</td>
  71. <td width="30%" align="right">
  72. <script language='javascript'>
  73. function ResizeDiv(obj, ty) {
  74. if (ty == "+") document.all[obj].style.pixelHeight += 50;
  75. else if (document.all[obj].style.pixelHeight > 80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  76. }
  77. </script>
  78. <a href="javascript:;" onClick="ResizeDiv('mdv','+');" class="btn btn-success btn-sm">增大</a>
  79. <a href="javascript:;" onClick="ResizeDiv('mdv','-');" class="btn btn-success btn-sm">缩小</a>
  80. </td>
  81. </tr>
  82. </table>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td id="mtd">
  87. <div id="mdv" style="width:100%;height:300px">
  88. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  89. </div>
  90. </td>
  91. </tr>
  92. </table>
  93. </body>
  94. </html>