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

130 lines
5.3KB

  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. <script language='javascript'>
  7. function SubmitNew()
  8. {
  9. document.form1.totalnum.value = "0";
  10. document.form1.submit();
  11. }
  12. </script>
  13. <link href="css/base.css" rel="stylesheet" type="text/css">
  14. </head>
  15. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  16. <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" align="center">
  17. <tr>
  18. <td height="20" colspan="2" background='images/tbg.gif'>
  19. <table width="98%" border="0" cellpadding="0" cellspacing="0">
  20. <form name='form2' action='co_url.php' target='stafrm'>
  21. <input type='hidden' name='small' value='1'>
  22. <input type='hidden' name='nid' value='<?php echo $nid; ?>'>
  23. </form>
  24. <tr>
  25. <td width="30%" height="18" style="padding-left:10px;">
  26. <strong><?php echo $ntitle; ?></strong>
  27. </td>
  28. <td width="70%" align="right">
  29. <input type="button" name="b11" value="查看已下载" class="coolbg np" onClick="document.form2.submit();" style="width:90px" />
  30. <input type="button" name="b12" value="采集节点管理" class="coolbg np" style="width:90px" onClick="location.href='co_main.php';" />
  31. <input type="button" name="b13" value="导出数据" class="coolbg np" style="width:90px" onClick="location.href='co_export.php?nid=<?php echo $nid; ?>';" />
  32. </td>
  33. </tr>
  34. </table></td>
  35. </tr>
  36. <tr>
  37. <td width="108" valign="top" bgcolor="#FFFFFF">节点名称:</td>
  38. <td width="377" valign="top" bgcolor="#FFFFFF">
  39. <?php
  40. if(!empty($nid)) echo $co->noteInfos['notename'];
  41. else echo "所有节点";
  42. ?>
  43. </td>
  44. </tr>
  45. <tr>
  46. <td height="20" valign="top" bgcolor="#FFFFFF">种子网址数:</td>
  47. <td height="20" valign="top" bgcolor="#FFFFFF">
  48. <?php echo $unum; ?>
  49. </td>
  50. </tr>
  51. <form name="form1" action="co_getsource_url_action.php" method="get" target='stafrm'>
  52. <input type='hidden' name='nid' value='<?php echo $nid; ?>' />
  53. <input type='hidden' name='totalnum' value='<?php echo $row['dd']; ?>' />
  54. <input type='hidden' name='startdd' value='0' />
  55. <tr>
  56. <td height="20" bgcolor="#FFFFFF">每页采集:</td>
  57. <td height="20" bgcolor="#FFFFFF">
  58. <input name="pagesize" type="text" id="pagesize" value="5" size="3" />
  59. 条,
  60. 间隔时间:
  61. <input name="sptime" type="text" id="sptime" value="0" size="3" />
  62. 秒(防刷新的站点需设置)
  63. </td>
  64. </tr>
  65. <tr>
  66. <td height="20" bgcolor="#FFFFFF">特殊选项:</td>
  67. <td height="20" bgcolor="#FFFFFF">
  68. <input name="notckpic" type="checkbox" class="np" />
  69. 不检测重复图片
  70. </td>
  71. </tr>
  72. <tr>
  73. <td height="20" bgcolor="#FFFFFF">附加选项:</td>
  74. <td height="20" bgcolor="#FFFFFF">
  75. <input name="islisten" type="radio" class="np" value="1" <?php if(empty($nid)) echo " checked='1' "; ?> />
  76. 监控采集模式(检测当前或所有节点是否有新内容)
  77. <?php
  78. if(!empty($nid)) {
  79. ?>
  80. <br />
  81. <input name="islisten" type="radio" class="np" value="-1" checked='1'; />
  82. 重新下载全部内容
  83. <br />
  84. <input name="islisten" type="radio" class="np" value="0" />
  85. 下载种子网址的未下载内容
  86. <br />
  87. <?php
  88. }
  89. ?>
  90. </td>
  91. </tr>
  92. <tr>
  93. <td height="28" colspan="2" bgcolor="#ffffff" align="center">
  94. <input name="b112" type="button" class="coolbg np" value="开始采集网页" onClick="document.form1.submit();" style="width:100px" /> 
  95. <input name="b113" type="button" class="coolbg np" value="查看种子网址" onClick="document.form2.submit();" style="width:100px" />
  96. </td>
  97. </tr>
  98. </form>
  99. <tr bgcolor="#F9FCEF">
  100. <td height="20" colspan="2">
  101. <table width="100%">
  102. <tr>
  103. <td width="74%">节点的种子网址: </td>
  104. <td width="26%" align="right">
  105. <script language='javascript'>
  106. function ResizeDiv(obj,ty)
  107. {
  108. if(ty=="+") document.all[obj].style.pixelHeight += 50;
  109. else if(document.all[obj].style.pixelHeight>80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  110. }
  111. </script>
  112. [<a href='#' onClick="ResizeDiv('mdv','+');">增大</a>] [<a href='#' onClick="ResizeDiv('mdv','-');">缩小</a>]
  113. </td>
  114. </tr>
  115. </table></td>
  116. </tr>
  117. <tr bgcolor="#FFFFFF">
  118. <td colspan="2" id="mtd">
  119. <div id='mdv' style='width:100%;height:350px;'>
  120. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"<?php if($row['dd']>0) echo " src=co_url.php?nid=$nid&small=1";?>></iframe>
  121. </div>
  122. <script language="JavaScript">
  123. document.all.mdv.style.pixelHeight = screen.height - 360;
  124. </script>
  125. </td>
  126. </tr>
  127. </table>
  128. </body>
  129. </html>