| 
							- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 - <html xmlns="http://www.w3.org/1999/xhtml">
 - <head>
 -   <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
 -   <title>软件频道设置</title>
 -   <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
 -   <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
 -   <link rel="stylesheet" href="../static/web/css/admin.css">
 -   <script language="javascript" src="../static/web/js/jquery.min.js"></script>
 -   <script src="../static/web/js/bootstrap.bundle.min.js"></script>
 -   <script language='javascript' src="js/main.js"></script>
 -   <script language="JavaScript">
 -     function AddServer() {
 -       if (document.form1.serverurl.value == "" || document.form1.serverurl.value == "http://") { ShowMsg('服务器网址不能为空'); return; }
 -       if (document.form1.servername.value == "") { ShowMsg('服务器名称不能为空'); return; }
 -       if (document.form1.servertype.value == "") { ShowMsg('服务器类型不能为空'); return; }
 -       document.form1.sites.value += document.form1.serverurl.value + " | " + document.form1.servername.value + " | " + document.form1.servertype.value + "";
 -     }
 -   </script>
 - </head>
 - <body>
 -   <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
 -     <form name="form1" action="soft_config.php" method="post">
 -       <input type="hidden" name="dopost" value="save">
 -       <tr>
 -         <td height="26" colspan="2" background="../static/web/img/tbg.gif">
 -           <table width="98%" cellpadding="0" cellspacing="0" class="table table-borderless">
 -             <tr>
 -               <td width="30%" style="padding-left:10px">软件频道设置</td>
 -               <td width="70%" align="right"></td>
 -             </tr>
 -           </table>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td width="200">链接显示方式:</td>
 -         <td>
 -           <label><input type="radio" name="downtype" class="np" value="0"
 -             <?php if($row['downtype']==0) echo " checked='checked' "; ?>>
 -           直接显示地址列表</label>
 -           <label><input name="downtype" type="radio" value="1" class="np"
 -             <?php if($row['downtype']==1) echo " checked='checked' "; ?>>
 -           要求进入下载地址列表页</label>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td>附件下载方式:</td>
 -         <td>
 -           <label><input type="radio" name="gotojump" class="np" value="0"
 -             <?php if($row['gotojump']==0) echo " checked='checked' "; ?>>
 -           链接到真实软件地址</label>
 -           <label><input name="gotojump" type="radio" class="np" value="1"
 -             <?php if($row['gotojump']==1) echo " checked='checked' "; ?>>
 -           链接到跳转页面</label>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td>是否启用镜像站点:</td>
 -         <td>
 -           <label><input type="radio" name="ismoresite" class="np" value="1"
 -             <?php if($row['ismoresite']==1) echo " checked='checked' "; ?>>
 -           启用</label>
 -           <label><input name="ismoresite" type="radio" class="np" value="0"
 -             <?php if($row['ismoresite']==0) echo " checked='checked' "; ?>>
 -           不启用</label></td>
 -       </tr>
 -       <tr>
 -         <td>启用镜像站点后是否保留本地下载:</td>
 -         <td>
 -           <label><input type="radio" name="islocal" class="np" value="1"
 -             <?php if($row['islocal']==1) echo " checked='checked' "; ?>>
 -           保留</label>
 -           <label><input name="islocal" type="radio" class="np" value="0"
 -             <?php if($row['islocal']==0) echo " checked='checked' "; ?>>
 -           不保留</label></td>
 -       </tr>
 -       <tr>
 -         <td>镜像处理方式:</td>
 -         <td>
 -           <label><input type="radio" name="moresitedo" class="np" value="1"
 -             <?php if($row['moresitedo']==1) echo " checked='checked' "; ?>>
 -           根据本地地址和服务器列表自动生成</label>
 -           <label><input name="moresitedo" type="radio" class="np" value="0"
 -             <?php if($row['moresitedo']==0) echo " checked='checked' "; ?>>
 -           发布时按服务器生成列表由我手工填写</label>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td bgcolor="#f8f8f8" colspan='2' style="padding-left:10px">不管是全局,还是具体某软件设置了下面的参数,附件下载方式都必须链接到中转页,否则无效
 -         </td>
 -         </td>
 -       <tr>
 -         <td>下载默认等级:</td>
 -         <td>
 -           <select name="dfrank" id="dfrank" style="width:160px">
 -             <?php
 -               $urank = $cuserLogin->getUserRank();
 -               $dsql->SetQuery("Select * from `#@__arcrank` where `rank`>=0 ");
 -               $dsql->Execute();
 -               while($nrow = $dsql->GetArray())
 -               {
 -                 	if($nrow['rank']==0) $nrow['membername'] = "开放下载";
 -                 	if($nrow['rank']==$row['dfrank']) echo "<option value='{$nrow['rank']}' selected>{$nrow['membername']}</option>";
 -                 	else echo "<option value='{$nrow['rank']}'>{$nrow['membername']}</option>";
 -               }
 -          ?>
 -           </select>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td>下载默认金币:</td>
 -         <td>
 -           <input type="text" name="dfywboy" class="np" value="<?php echo $row['dfywboy']; ?>" style='width:80px;'>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td>参数限制方式:</td>
 -         <td>
 -             <label><input type="radio" name="argrange" class="np" value="0"
 -             <?php if($row['argrange']==0) echo " checked='checked' "; ?>> 允许发布时重新选择权限</label> 
 -             <label><input type="radio" name="argrange" class="np" value="2"
 -             <?php if($row['argrange']==1) echo " checked='checked' "; ?>> 所有软件均使用此权限</label> 
 -         </td>
 -       </tr>
 -       <tr>
 -         <td height="26" colspan="2" bgcolor="#f8f8f8" style="padding-left:10px">
 -           镜像服务器列表:</td>
 -       </tr>
 -       <tr>
 -         <td colspan="2">服务器网址:
 -           <input name="serverurl" type="text" id="serverurl" value="http://">
 -           服务器名称:
 -           <input name="servername" type="text" id="servername">
 -           服务器类型:
 -           <input name="servertype" type="text" id="servertype" value="默认">
 -           <button type="button" name="Submit" onClick="AddServer()" class="btn btn-success btn-sm">增加一项</button>
 -         </td>
 -       </tr>
 -       <tr>
 -         <td height="62" colspan="2"><textarea name="sites" id="sites" style="width:98%;height:150px"><?php echo $row['sites']; ?></textarea></td>
 -       </tr>
 -       <tr>
 -         <td height="26" colspan="2" bgcolor="#f8f8f8" style="padding-left:10px">下载说明:</td>
 -       </tr>
 -       <tr>
 -         <td height="60" colspan="2"><?php GetEditor('downmsg',$row['downmsg'],250); ?></td>
 -       </tr>
 -       <tr>
 -         <td bgcolor="#f8f8f8" colspan="2" align="center" class="py-3">
 -           <button type="submit" name="Submit" class="btn btn-success btn-sm">保存</button>
 -           <button type="reset" name="rset" id="rset" class="btn btn-success btn-sm">重置</button>
 -         </td>
 -       </tr>
 -     </form>
 -   </table>
 - </body>
 - </html>
 
 
  |