addtopic.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:21k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import="cn.js.fan.util.*"%>
  3. <%@ page import="com.redmoon.forum.plugin2.*"%>
  4. <%@ page import="com.redmoon.forum.person.*"%>
  5. <%@ page import="com.redmoon.forum.plugin.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.base.*"%>
  7. <%@ page import="com.redmoon.blog.*"%>
  8. <%@ page import="java.util.*"%>
  9. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  10. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  11. <%
  12. String targeturl = StrUtil.getUrl(request);
  13. if (!privilege.isUserLogin(request)) {
  14. response.sendRedirect("../door.jsp?targeturl="+targeturl);
  15. return;
  16. }
  17. String boardcode = request.getParameter("boardcode");
  18. String userName = privilege.getUser(request);
  19. if (!privilege.canUserDo(request, boardcode, "add_topic")) {
  20. response.sendRedirect("../info.jsp?info= " + StrUtil.UrlEncode(SkinUtil.LoadString(request, "pvg_invalid")));
  21. return;
  22. }
  23. Leaf curleaf = new Leaf();
  24. curleaf = curleaf.getLeaf(boardcode);
  25. if (curleaf==null || !curleaf.isLoaded()) {
  26. out.print(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, "res.label.forum.addtopic", "board_none"))); // "版块不存在"));
  27. return;
  28. }
  29. String blogUserDir = ParamUtil.get(request, "blogUserDir");
  30. // 取得皮肤路径
  31. String skincode = curleaf.getSkin();
  32. if (skincode.equals("") || skincode.equals(UserSet.defaultSkin)) {
  33. skincode = UserSet.getSkin(request);
  34. if (skincode==null || skincode.equals(""))
  35. skincode = UserSet.defaultSkin;
  36. }
  37. SkinMgr skm = new SkinMgr();
  38. Skin skin = skm.getSkin(skincode);
  39. String skinPath = skin.getPath();
  40. com.redmoon.forum.Config cfg1 = new com.redmoon.forum.Config();
  41. int msgTitleLengthMin = cfg1.getIntProperty("forum.msgTitleLengthMin");
  42. int msgTitleLengthMax = cfg1.getIntProperty("forum.msgTitleLengthMax");
  43. int msgLengthMin = cfg1.getIntProperty("forum.msgLengthMin");
  44. int msgLengthMax = cfg1.getIntProperty("forum.msgLengthMax");
  45. int maxAttachmentCount = cfg1.getIntProperty("forum.maxAttachmentCount");
  46. int maxAttachmentSize = cfg1.getIntProperty("forum.maxAttachmentSize");
  47. %>
  48. <html>
  49. <head>
  50. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  51. <title><lt:Label res="res.label.forum.addtopic" key="addtopic"/> - <%=Global.AppName%></title>
  52. <link href="<%=skinPath%>/skin.css" rel="stylesheet" type="text/css">
  53. <STYLE>TABLE {
  54. BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 1px
  55. }
  56. TD {
  57. BORDER-RIGHT: 0px; BORDER-TOP: 0px
  58. }
  59. body {
  60. margin-top: 0px;
  61. margin-left: 0px;
  62. margin-right: 0px;
  63. }
  64. </STYLE>
  65. <script language="javascript">
  66. <!--
  67. function findObj(theObj, theDoc)
  68. {
  69.   var p, i, foundObj;
  70.   
  71.   if(!theDoc) theDoc = document;
  72.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  73.   {
  74.     theDoc = parent.frames[theObj.substring(p+1)].document;
  75.     theObj = theObj.substring(0,p);
  76.   }
  77.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  78.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  79.     foundObj = theDoc.forms[i][theObj];
  80.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  81.     foundObj = findObj(theObj,theDoc.layers[i].document);
  82.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  83.   
  84.   return foundObj;
  85. }
  86. function showvote(isshow)
  87. {
  88. if (frmAnnounce.isvote.checked)
  89. {
  90. frmAnnounce.vote.style.display = "";
  91. }
  92. else
  93. {
  94. frmAnnounce.vote.style.display = "none";
  95. }
  96. }
  97. function frmAnnounce_onsubmit()
  98. {
  99. if (document.frmAnnounce.topic.value.length<<%=msgTitleLengthMin%>)
  100. {
  101. alert("<lt:Label res="res.forum.MsgDb" key="err_too_short_title"/><%=msgTitleLengthMin%>");
  102. return false;
  103. }
  104. if (document.frmAnnounce.topic.value.length><%=msgTitleLengthMax%>)
  105. {
  106. alert("<lt:Label res="res.forum.MsgDb" key="err_too_large_title"/><%=msgTitleLengthMax%>");
  107. return false;
  108. }
  109. if (document.frmAnnounce.Content.value.length<<%=msgLengthMin%>)
  110. {
  111. alert("<lt:Label res="res.forum.MsgDb" key="err_too_short_content"/><%=msgLengthMin%>");
  112. return false;
  113. }
  114. if (document.frmAnnounce.Content.value.length><%=msgLengthMax%>)
  115. {
  116. alert("<lt:Label res="res.forum.MsgDb" key="err_too_large_content"/><%=msgLengthMax%>");
  117. return false;
  118. }
  119. }
  120. var attachCount = 1;
  121. function addImg(attchId, imgPath) {
  122. var img = "[img]" + imgPath + "[/img]";
  123. if ((document.selection)&&(document.selection.type == "Text")) {
  124. var range = document.selection.createRange();
  125. range.text += img;
  126. }
  127. else {
  128. document.frmAnnounce.Content.value = document.frmAnnounce.Content.value + img;
  129. document.frmAnnounce.Content.focus();
  130. }
  131. divTmpAttachId.innerHTML += "<input type=hidden name=tmpAttachId value='" + attchId + "'>";
  132. attachCount++;
  133. if (attachCount><%=maxAttachmentCount%>) {
  134. // uploadTable.style.display = "none"; // 隐藏了,但是如果已选择了文件,还是会被上传
  135. uploadTable.outerHTML = "";
  136. }
  137. }
  138. function getAttachCount() {
  139. return attachCount - 1;
  140. }
  141. function AddAttach() {
  142. if (attachCount>=<%=maxAttachmentCount%>) {
  143. alert("<lt:Label res="res.label.forum.addtopic" key="topic_max_attach"/><%=maxAttachmentCount%>");
  144. return;
  145. }
  146. updiv.insertAdjacentHTML("BeforeEnd", "<table width=100%><tr><lt:Label res="res.label.forum.addtopic" key="file"/>&nbsp;<input type='file' name='filename" + attachCount + "' size=10><td></td></tr></table>");
  147. // updiv.innerHTML += "<table width=100%><tr><lt:Label res="res.label.forum.addtopic" key="file"/>&nbsp;<input type='file' name='filename" + attachCount + "' size=10><td></td></tr></table>";
  148. attachCount += 1;
  149. }
  150. //-->
  151. </script>
  152. <script src="inc/ubbcode.jsp"></script>
  153. </head>
  154. <body>
  155. <script src="../inc/calendar.js"></script>
  156. <%if (!boardcode.equals(Leaf.CODE_BLOG)) {%>
  157. <%@ include file="inc/header.jsp"%>
  158. <%@ include file="inc/position.jsp"%>
  159. <%}%>
  160. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  161. <jsp:useBean id="userservice" scope="page" class="com.redmoon.forum.person.userservice"/>
  162. <%
  163. String privurl = ParamUtil.get(request, "privurl");
  164. String boardname = curleaf.getName();
  165. String notwe = request.getParameter("notwe");
  166. if (notwe==null) {
  167. //if (privilege.canWebEdit(request)) {
  168. // response.sendRedirect("addtopic_we.jsp?privurl="+StrUtil.UrlEncode(privurl, "utf-8")+"&boardcode="+boardcode+"&boardname="+StrUtil.UrlEncode(boardname, "utf-8"));
  169. // return;
  170. //}
  171. }
  172. %>
  173. <%
  174. int i=0;
  175. String addFlag = ParamUtil.get(request, "addFlag");
  176. %>
  177. <table width="98%" border="1" align="center" cellpadding="4" cellspacing="0" borderColor="<%=skin.getTableBorderClr()%>">
  178. <form name=frmAnnounce method="post" action="addtopictodb.jsp?addFlag=<%=StrUtil.UrlEncode(addFlag)%>" enctype="MULTIPART/FORM-DATA" onSubmit="return frmAnnounce_onsubmit()">
  179.     <TBODY>
  180.       <tr> 
  181.         <td height="26" colspan="2" background="<%=skinPath%>/images/bg1.gif" class="td_title">
  182. <lt:Label res="res.label.forum.addtopic" key="topic_add_to"/>
  183. <a href="listtopic.jsp?boardcode=<%=boardcode%>"><%=boardname%></a></td>
  184.       </tr>
  185.     </TBODY>
  186.     <TBODY>
  187.       <tr>
  188.         <td colspan="2">
  189. <%
  190. String pluginCode = ParamUtil.get(request, "pluginCode");
  191.   
  192. PluginMgr pm = new PluginMgr();
  193. Vector vplugin = pm.getAllPluginUnitOfBoard(boardcode);
  194. if (vplugin.size()>0) {
  195. Iterator irplugin = vplugin.iterator();
  196. while (irplugin.hasNext()) {
  197. PluginUnit pu = (PluginUnit)irplugin.next();
  198. IPluginUI ipu = pu.getUI(request, response, out);
  199. IPluginViewAddMsg pv = ipu.getViewAddMsg(boardcode);
  200. if (pv.IsPluginBoard()) {
  201. boolean showPlugin = false;
  202. if (pu.getType().equals(pu.TYPE_BOARD))
  203. showPlugin = true;
  204. else if (pu.getType().equals(pu.TYPE_TOPIC)) {
  205. if (pluginCode.equals(pu.getCode()))
  206. showPlugin = true;
  207. }
  208. if (showPlugin) {
  209. if (!pu.getAddTopicPage().equals("")) {
  210. %>
  211. <jsp:include page="<%=pu.getAddTopicPage()%>" flush="true">
  212. <jsp:param name="boardcode" value="<%=StrUtil.UrlEncode(boardcode)%>" /> 
  213. </jsp:include>
  214. <% }
  215. else {
  216. out.print(pu.getName(request) + ":&nbsp;" + pv.render(UIAddMsg.POS_TITLE) + "<BR>");
  217. out.print(pv.render(UIAddMsg.POS_FORM_ELEMENT) + "<BR>");
  218. }
  219. }
  220. }
  221. }
  222. }
  223. String hit = request.getParameter("hit");
  224. String isvote = StrUtil.getNullString(request.getParameter("isvote"));
  225. String plugin2Code = ParamUtil.get(request, "plugin2Code");
  226. if (!plugin2Code.equals("")) {
  227. Plugin2Mgr p2m = new Plugin2Mgr();
  228. Plugin2Unit p2u = p2m.getPlugin2Unit(plugin2Code);
  229. %>
  230. <jsp:include page="<%=p2u.getAddTopicPage()%>" flush="true">
  231. <jsp:param name="boardcode" value="<%=StrUtil.UrlEncode(boardcode)%>" /> 
  232. </jsp:include>
  233. <%}%>
  234.         </td>
  235.       </tr>
  236.       <tr>
  237.         <td><lt:Label res="res.label.forum.addtopic" key="topic_add_to_board"/></td>
  238.         <td><%
  239. if (blogUserDir.equals(""))
  240. blogUserDir = UserDirDb.DEFAULT;
  241. UserConfigDb ucd = new UserConfigDb();
  242. ucd = ucd.getUserConfigDb(privilege.getUser(request));
  243. // 如果用户的博客未开通,则不能选择版块
  244. if (Global.hasBlog && ucd!=null && ucd.isLoaded()) {
  245. %>
  246.             <script>
  247.   var bcode<%=i%> = "<%=boardcode%>";
  248.   </script>
  249.             <select name="boardcode" onChange="if(this.options[this.selectedIndex].value=='not'){alert(this.options[this.selectedIndex].text+' <lt:Label res="res.label.forum.addtopic" key="can_not_sel"/>'); this.value=bcode<%=i%>; return false;}">
  250.               <option value="not" selected>
  251.                 <lt:Label res="res.label.forum.addtopic" key="sel_board"/>
  252.               </option>
  253.               <%
  254. com.redmoon.forum.Directory directory = new com.redmoon.forum.Directory();
  255. com.redmoon.forum.Leaf lf = directory.getLeaf("root");
  256. com.redmoon.forum.DirectoryView dv = new com.redmoon.forum.DirectoryView(lf);
  257. dv.ShowDirectoryAsOptions(out, lf, lf.getLayer());
  258. %>
  259.               <option value="<%=Leaf.CODE_BLOG%>">&nbsp;&nbsp;&nbsp;&nbsp;
  260.                 <lt:Label res="res.label.forum.addtopic" key="blog"/>
  261.               </option>
  262.             </select>
  263.             <script>
  264. frmAnnounce.boardcode.value = "<%=boardcode%>";
  265.   </script>
  266.             <%if (boardcode.equals(Leaf.CODE_BLOG)) {%>
  267.             <lt:Label res="res.label.forum.addtopic" key="info_board_blog"/>
  268.             <%}
  269.   }else{%>
  270.             <%=boardname%>
  271.           <input type="hidden" name="boardcode" value="<%=boardcode%>">
  272.             <%}%>
  273.         </td>
  274.       </tr>
  275.   <%
  276.   if (Global.hasBlog && ucd.isLoaded()) {
  277.   %>
  278.       <tr>
  279.         <td><lt:Label res="res.label.forum.addtopic" key="add_to_blog"/></td>
  280.         <td>
  281. <%
  282. UserDirDb udd = new UserDirDb();
  283. %>
  284. <select name=blogUserDir>
  285.           <option value="<%=UserDirDb.DEFAULT%>"><lt:Label res="res.label.forum.addtopic" key="default_dir"/></option>
  286.           <%=udd.toOptions(privilege.getUser(request))%>
  287.         </select>
  288. <script>
  289. frmAnnounce.blogUserDir.value = "<%=blogUserDir%>";
  290. </script>
  291. <input name=isBlog value=1 type=checkbox <%=boardcode.equals(Leaf.CODE_BLOG)?"checked":""%>>
  292. <lt:Label res="res.label.forum.addtopic" key="add_to_blog"/> </td>
  293.       </tr>
  294.   <%}%>
  295. <%
  296. if (cfg1.getBooleanProperty("forum.addUseValidateCode")) {
  297. %>
  298. <tr><td width="20%">
  299. <lt:Label res="res.label.forum.addtopic" key="input_validatecode"/>
  300. </td><td><input name="validateCode" type="text" size="1">
  301.   <img src='../validatecode.jsp' border=0 align="absmiddle" style="cursor:hand" onClick="this.src='../validatecode.jsp'" alt="<lt:Label res="res.label.forum.index" key="refresh_validatecode"/>"></td>
  302. </tr>   <%}%>   
  303.       <tr> 
  304.         <td width="20%"><lt:Label res="res.label.forum.addtopic" key="topic_title"/></td>
  305.         <td width="80%"> <SELECT name=font onchange=DoTitle(this.options[this.selectedIndex].value)>
  306.             <OPTION selected value=""><lt:Label res="res.label.forum.addtopic" key="sel_topic"/></OPTION>
  307.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_origi"/>><lt:Label res="res.label.forum.addtopic" key="pre_origi"/></OPTION>
  308.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_from"/>><lt:Label res="res.label.forum.addtopic" key="pre_from"/></OPTION>
  309.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_water"/>><lt:Label res="res.label.forum.addtopic" key="pre_water"/></OPTION>
  310.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_discuss"/>><lt:Label res="res.label.forum.addtopic" key="pre_discuss"/></OPTION>
  311.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_help"/>><lt:Label res="res.label.forum.addtopic" key="pre_help"/></OPTION>
  312.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_recommend"/>><lt:Label res="res.label.forum.addtopic" key="pre_recommend"/></OPTION>
  313.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_notice"/>><lt:Label res="res.label.forum.addtopic" key="pre_notice"/></OPTION>
  314.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_note"/>><lt:Label res="res.label.forum.addtopic" key="pre_note"/></OPTION>
  315.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_image"/>><lt:Label res="res.label.forum.addtopic" key="pre_image"/></OPTION>
  316.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_advise"/>><lt:Label res="res.label.forum.addtopic" key="pre_advise"/></OPTION>
  317.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_download"/>><lt:Label res="res.label.forum.addtopic" key="pre_download"/></OPTION>
  318.             <OPTION value=<lt:Label res="res.label.forum.addtopic" key="pre_share"/>><lt:Label res="res.label.forum.addtopic" key="pre_share"/></OPTION>
  319.           </SELECT> <input name="topic" type="text" id="topic" size="60" maxlength="80">
  320.           <input type="hidden" name="boardname" value="<%=boardname%>">
  321.           <input type="hidden" name="hit" value="<%=hit%>">
  322.           <input type="hidden" name="privurl" value="<%=privurl%>">
  323.   <%
  324.   String threadType = ParamUtil.get(request, "threadType");
  325.   if (threadType.equals("")) {
  326.    threadType = "" + ThreadTypeDb.THREAD_TYPE_NONE;
  327.   }
  328.   %>
  329.   <%
  330.   ThreadTypeDb ttd = new ThreadTypeDb();
  331.   Vector ttv = ttd.getThreadTypesOfBoard(boardcode);
  332.   if (ttv.size()>0) {
  333.    Iterator ir = ttv.iterator();
  334.   %>
  335.   <lt:Label res="res.label.forum.addtopic" key="thread_type"/><select name="threadType">
  336.           <option value="<%=ThreadTypeDb.THREAD_TYPE_NONE%>">
  337.   <lt:Label key="wu"/></option>
  338.   <%
  339.    while (ir.hasNext()) {
  340. ttd = (ThreadTypeDb)ir.next();
  341.   %>
  342.   <option value="<%=ttd.getId()%>"><%=ttd.getName()%></option>
  343.   <%}%>
  344.   </select>
  345.   <script>
  346.   frmAnnounce.threadType.value = "<%=threadType%>";
  347.   </script>   
  348.   <%}
  349.   %>   
  350.   </td>
  351.       </tr>
  352.       <tr>
  353.         <td><lt:Label res="res.label.forum.addtopic" key="emote_icon"/></td>
  354.         <td>
  355. <iframe src="iframe_emote.jsp" height="25"  width="500px" marginwidth="0" marginheight="0" frameborder="0" scrolling="yes"></iframe>
  356.           <input type="hidden" name="expression" value="25"></td>
  357.       </tr>
  358.       <tr> 
  359.         <td valign="top" width="20%">
  360. <%
  361. String display="none",ischecked="false";
  362. if (isvote.equals("1")) {
  363. display = "";
  364. ischecked = "checked";
  365. }
  366. %>
  367. <input type="checkbox" name="isvote" value="1" onClick="showvote()" <%=ischecked%>><lt:Label res="res.label.forum.addtopic" key="vote_option"/> </td>
  368.         <td width="80%"><lt:Label res="res.label.forum.addtopic" key="vote_expire"/>
  369.           <input name="expire_date" onClick="showcalendar(event, this)" onFocus="showcalendar(event, this);if(this.value=='0000-00-00') this.value=''; document.onclick=hidCalendar">
  370.             <lt:Label res="res.label.forum.addtopic" key="vote_max_choice"/>
  371.             <input name="max_choice" size=1 value="1">
  372.             <lt:Label res="res.label.forum.addtopic" key="vote_item"/>
  373.             <br>
  374.   <textarea style="display:<%=display%>" cols="55" name="vote" rows="8" wrap="VIRTUAL"></textarea>
  375.         <lt:Label res="res.label.forum.addtopic" key="vote_option_one_line"/></td></tr>
  376.       <tr> 
  377.         <td rowspan="5" valign="bottom"><table width="100%" border="0" cellspacing="0" cellpadding="5">
  378.           <tr>
  379.             <td><a href="javascript:payme()"><lt:Label res="res.label.forum.addtopic" key="fee_to_me"/></a></td>
  380.           </tr>
  381.         </table>
  382.           <%if (cfg1.getBooleanProperty("forum.canUserSetReplyExperiencePointSee") || privilege.isManager(request, boardcode)) {%>
  383.           <table width="100%" border="0" cellspacing="0" cellpadding="5">
  384.             <tr>
  385.               <td><a href="javascript:replyCanSee()">
  386.                 <lt:Label res="res.label.forum.edittopic" key="see_by_reply"/>
  387.               </a></td>
  388.             </tr>
  389.             <tr>
  390.               <td><a href="javascript:canSee('credit')">
  391.                 <lt:Label res="res.label.forum.edittopic" key="see_by_credit"/>
  392.               </a></td>
  393.             </tr>
  394.             <tr>
  395.               <td><a href="javascript:canSee('experience')">
  396.                 <lt:Label res="res.label.forum.edittopic" key="see_by_experience"/>
  397.               </a></td>
  398.             </tr>
  399.             <tr>
  400.               <td><a href="javascript:usePoint()">
  401.                 <lt:Label res="res.label.forum.edittopic" key="see_by_fee"/>
  402.               </a></td>
  403.             </tr>
  404.           </table>
  405.           <%}%>
  406.           <input type="checkbox" name="show_ubbcode" value="0">        
  407.           <lt:Label res="res.label.forum.showtopic" key="forbid_ubb"/><br> 
  408.           <input type="checkbox" name="show_smile" value="0">
  409.           <lt:Label res="res.label.forum.showtopic" key="forbid_emote"/><br> <input type="checkbox" name="email_notify" value="1">
  410.           <lt:Label res="res.label.forum.addtopic" key="email_notify"/> </td><td>
  411. <%
  412. if (privilege.canUserUpload(userName, boardcode)) {
  413. %>
  414.   <iframe src="uploadimg.jsp" width=100% height="28" frameborder="0" scrolling="no"></iframe>
  415. <%}%>
  416.   </td>
  417.       </tr>
  418.       <tr> 
  419.         <td>
  420.           <%@ include file="inc/getubb.jsp"%>        </td>
  421.       </tr>
  422.       <tr> 
  423.         <td><textarea cols="75" name="Content" rows="12" wrap="VIRTUAL" title="<lt:Label res="res.label.forum.addtopic" key="ctrl_enter"/>" onkeydown=ctlent() style="width:74%"></textarea>
  424. <table width="100%" border=0 cellspacing=0 cellpadding=0 id="uploadTable">
  425.             <tr>
  426.               <td class=tablebody1 valign=top height=10>&nbsp;</td>
  427.             </tr>
  428.             <tr>
  429.               <td class=tablebody1 valign=top>
  430. <%
  431. if (privilege.canUserUpload(userName, boardcode)) {
  432. %>
  433.     <lt:Label res="res.label.forum.addtopic" key="file"/>&nbsp;<input type="file" name="filename" size=10>
  434.                 <lt:Label res="res.label.forum.addtopic" key="file_limit_count"/><%=maxAttachmentCount%>&nbsp;<lt:Label res="res.label.forum.addtopic" key="file_limit_all_size"/><%=maxAttachmentSize%>K
  435.                 <input type=button onClick="AddAttach()" value="<lt:Label res="res.label.forum.addtopic" key="add_attach"/>">
  436. <select>
  437. <option><lt:Label res="res.label.forum.addtopic" key="upload_file_ext"/></option>
  438. <%
  439. String[] ext = StrUtil.split(cfg1.getProperty("forum.ext"), ",");
  440. if (ext!=null) {
  441. int extlen = ext.length;
  442. for (int p=0; p<extlen; p++) {
  443. out.print("<option>" + ext[p] + "</option>");
  444. }
  445. }
  446. %>
  447. </select>
  448. <%}%>
  449. </td>
  450.             </tr>
  451.           </table>
  452.   <div id=updiv name=updiv></div>
  453.         </td>
  454.       </tr>
  455.       <tr>
  456.         <td><iframe src="iframe_emotequick.jsp" height="35" name="emot" width="74%" marginwidth="0" marginheight="0" frameborder="0" scrolling="yes"></iframe></td>
  457.       </tr>
  458.       <tr>
  459.         <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  460.           <input type=submit value="<lt:Label res="res.label.forum.addtopic" key="commit"/>">
  461. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  462. <input type=reset value="<lt:Label res="res.label.forum.addtopic" key="rewrite"/>">
  463. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  464. <input type="button" value="<lt:Label res="res.label.forum.addtopic" key="add_normal"/>" onClick="ChangeMode()"/>
  465. <%if (privilege.canWebEditRedMoon(request, boardcode)) {%>
  466. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  467. <input type="button" onClick="window.location.href='addtopic_we.jsp?pluginCode=<%=StrUtil.UrlEncode(pluginCode)%>&plugin2Code=<%=StrUtil.UrlEncode(plugin2Code)%>&threadType=<%=threadType%>&boardcode=<%=StrUtil.UrlEncode(boardcode)%>&blogUserDir=<%=blogUserDir%>&addFlag=<%=addFlag%>&privurl=<%=privurl%>'" value="<lt:Label res="res.label.forum.addtopic" key="add_we"/>">
  468. <%}%><div id="divTmpAttachId"></div>
  469. </td>
  470.       </tr>
  471.     </TBODY></form>
  472. </table>
  473. <script>
  474.  function ChangeMode() {
  475.    window.location.href("addtopic_new.jsp?pluginCode=<%=StrUtil.UrlEncode(pluginCode)%>&plugin2Code=<%=StrUtil.UrlEncode(plugin2Code)%>&threadType=<%=threadType%>&boardcode=<%=StrUtil.UrlEncode(boardcode)%>&isvote=<%=isvote%>&addFlag=<%=addFlag%>&privurl=<%=privurl%>");
  476.  }
  477. </script>
  478. <%if (!boardcode.equals(Leaf.CODE_BLOG)) {%>
  479. <%@ include file="inc/footer.jsp"%>
  480. <%}%>
  481. </body>
  482. </html>