📄 mytopic.jsp
字号:
<%@ page contentType="text/html;charset=utf-8"%>
<%@ page import="java.util.Iterator"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="cn.js.fan.db.*"%>
<%@ page import="cn.js.fan.web.*"%>
<%@ page import="com.redmoon.forum.person.*"%>
<%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
<%
String skincode = UserSet.getSkin(request);
if (skincode.equals(""))
skincode = UserSet.defaultSkin;
SkinMgr skm = new SkinMgr();
Skin skin = skm.getSkin(skincode);
if (skin==null)
skin = skm.getSkin(UserSet.defaultSkin);
String skinPath = skin.getPath();
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE><%=Global.AppName%></TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<%@ include file="../inc/nocache.jsp"%>
<link href="<%=skinPath%>/skin.css" rel="stylesheet" type="text/css">
<STYLE>
TABLE {
BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 1px
}
TD {
BORDER-RIGHT: 0px; BORDER-TOP: 0px
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
}
.STYLE1 {color: #333333}
</STYLE>
<SCRIPT>
function loadonline(boardcode){
var targetImg =eval("document.all.followImg000");
var targetDiv =eval("document.all.followDIV000");
if (targetImg.src.indexOf("nofollow")!=-1){return false;}
if ("object"==typeof(targetImg)){
if (targetDiv.style.display!='block')
{
targetDiv.style.display="block";
targetImg.src="images/minus.gif";
advance.innerText="<lt:Label res="res.label.forum.listtopic" key="close_online"/>";
if (targetImg.loaded=="no")
document.frames["hiddenframe"].location.replace("online.jsp?boardcode="+boardcode);
}
else
{
targetDiv.style.display="none";
targetImg.src="images/plus.gif";
advance.innerText="<lt:Label res="res.label.forum.listtopic" key="show_online"/>"
}
}
}
////////////////////展开帖子
function loadThreadFollow(b_id,t_id,getstr){
var targetImg2 =eval("document.all.followImg" + t_id);
var targetTR2 =eval("document.all.follow" + t_id);
if (targetImg2.src.indexOf("nofollow")!=-1){return false;}
if ("object"==typeof(targetImg2)){
if (targetTR2.style.display!="")
{
targetTR2.style.display="";
targetImg2.src="images/minus.gif";
if (targetImg2.loaded=="no"){
document.frames["hiddenframe"].location.replace("listtree.jsp?id="+b_id+getstr);
}
}else{
targetTR2.style.display="none";
targetImg2.src="images/plus.gif";
}
}
}
</SCRIPT>
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY>
<%@ include file="inc/header.jsp"%>
<jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
<%
String querystring = StrUtil.getNullString(request.getQueryString());
// 安全验证
if (!privilege.isUserLogin(request)) {
response.sendRedirect("../door.jsp");
return;
}
String username = privilege.getUser(request);
%>
<CENTER>
<TABLE borderColor=#edeced height=25 cellSpacing=0 cellPadding=1 rules=rows
width="98%" align=center bgColor=#ffffff border=1 class="table_normal">
<TBODY>
<TR>
<TD>
<lt:Label res="res.label.forum.inc.position" key="cur_position"/>
<a href="<%=request.getContextPath()%>/forum/index.jsp"><lt:Label res="res.label.forum.inc.position" key="forum_home"/></a> <B>»</B>
<%
String action = StrUtil.getNullString(request.getParameter("action"));
if (action.equals("mytopic"))
out.print(SkinUtil.LoadString(request, "res.label.forum.mytopic", "mytopic"));
else
out.print(SkinUtil.LoadString(request, "res.label.forum.mytopic", "myattendtopic"));
%>
</TD>
<TD align=right> </TD>
</TR></TBODY></TABLE><BR>
<%
String sql = "";
String myboardname = "", myboardcode = "";
if ( action.equals("mytopic"))
{
sql = "select id from sq_thread where name=" + StrUtil.sqlstr(username) + " and isBlog=0 and check_status=" + MsgDb.CHECK_STATUS_PASS;
}
else if ( action.equals("myreply"))
{
sql = "select id from sq_thread where name=" + StrUtil.sqlstr(username) + " and isBlog=0 and check_status=" + MsgDb.CHECK_STATUS_PASS;
}
String orderby = " ORDER BY msg_level desc,lydate desc";
sql += orderby;
int pagesize = 10;
ResultRecord rr = null;
Paginator paginator = new Paginator(request);
int curpage = paginator.getCurPage();
PageConn pageconn = new PageConn(Global.defaultDB, curpage, pagesize);
ResultIterator ri = pageconn.getResultIterator(sql);
paginator.init(pageconn.getTotal(), pagesize);
//设置当前页数和总页数
int totalpages = paginator.getTotalPages();
if (totalpages==0)
{
curpage = 1;
totalpages = 1;
}
%>
<TABLE borderColor=#edeced cellSpacing=0 cellPadding=1 width="98%" align=center
border=1>
<TBODY>
<TR height=25>
<TD height="26" colSpan=3 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><lt:Label res="res.label.forum.listtopic" key="topis_list"/></TD>
<TD width=91 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><lt:Label res="res.label.forum.listtopic" key="author"/></TD>
<TD width=55 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><lt:Label res="res.label.forum.listtopic" key="reply"/></TD>
<TD width=55 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><lt:Label res="res.label.forum.listtopic" key="hit"/></TD>
<TD width=80 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><span class="list_title_date">
<lt:Label res="res.label.forum.listtopic" key="reply_date"/>
</span></TD>
<TD width=91 align=middle noWrap background="<%=skinPath%>/images/bg1.gif" class="text_title"><span class="list_title_date">
<lt:Label res="res.label.forum.mytopic" key="board"/>
</span></TD>
</TR></TBODY></TABLE>
<%
String title = "",name="",lydate="",expression="";
int id = -1;
int i = 0,recount=0,hit=0,type=0;
MsgDb md = new MsgDb();
Leaf myleaf = new Leaf();
UserMgr um = new UserMgr();
UserDb user = null;
while (ri.hasNext()) {
rr = (ResultRecord)ri.next();
i++;
id = rr.getInt("id");
md = md.getMsgDb(id);
title = md.getTitle();
name = md.getName();
user = um.getUser(name);
lydate = com.redmoon.forum.ForumSkin.formatDateTime(request, md.getAddDate());
recount = md.getRecount();
hit = md.getHit();
expression = "" + md.getExpression();
type = md.getType();
myboardcode = md.getboardcode();
myleaf = myleaf.getLeaf(myboardcode);
myboardname = myleaf.getName();
%>
<table bordercolor=#edeced cellspacing=0 cellpadding=1 width="98%" align=center border=1>
<tbody>
<tr>
<td noWrap align=middle width=30 bgcolor=#f8f8f8>
<%if (recount>20){ %>
<img alt="<lt:Label res="res.label.forum.listtopic" key="open_topic_hot"/>" src="images/f_hot.gif">
<%}
else if (recount>0) {%>
<img alt="<lt:Label res="res.label.forum.listtopic" key="open_topic_reply"/>" src="images/f_new.gif">
<%}
else {%>
<img alt="<lt:Label res="res.label.forum.listtopic" key="open_topic_no_reply"/>" src="images/f_norm.gif">
<%}%>
</td>
<td align=middle width=17 bgcolor=#ffffff>
<% String urlboardname = StrUtil.UrlEncode(myboardname,"utf-8"); %>
<a href="showtopic_tree.jsp?boardcode=<%=myboardcode%>&hit=<%=(hit+1)%>&boardname=<%=urlboardname%>&showid=<%=id%>&rootid=<%=md.getRootid()%>" target=_blank>
<% if (type==1) { %>
<IMG height=15 alt="" src="images/f_poll.gif" width=17 border=0>
<%}else { %>
<img src="images/brow/<%=expression%>.gif" border=0>
<%}%>
</a></td>
<td onMouseOver="this.style.backgroundColor='#ffffff'"
onMouseOut="this.style.backgroundColor=''" align=left bgcolor=#f8f8f8>
<%
if (recount==0) {
%>
<img id=followImg<%=id%> title="<lt:Label res="res.label.forum.listtopic" key="no_reply"/>" src="images/minus.gif" loaded="no">
<% }else { %>
<img id=followImg<%=id%> title=<lt:Label res="res.label.forum.listtopic" key="extend_reply"/> style="CURSOR: hand"
onClick=loadThreadFollow(<%=id%>,<%=id%>,"&boardcode=<%=myboardcode%>&hit=<%=hit+1%>&boardname=<%=urlboardname%>") src="images/plus.gif" loaded="no">
<% } %>
<a href="showtopic_tree.jsp?boardcode=<%=myboardcode%>&hit=<%=(hit+1)%>&showid=<%=id%>&rootid=<%=md.getRootid()%>"><%=title%></a>
<%
//计算共有多少页回贴
int allpages = (int)Math.ceil((double)recount/pagesize);
if (allpages>1)
{
out.print("[");
for (int m=1; m<=allpages; m++)
{ %>
<a href="showtopic.jsp?boardcode=<%=myboardcode%>&hit=<%=(hit+1)%>&rootid=<%=id%>&CPages=<%=m%>"><%=m%></a>
<% }
out.print("]");
}%>
</td>
<td align=middle width=91 bgcolor=#ffffff>
<% if (privilege.getUser(request).equals(name)) { %>
<IMG height=14 src="images/my.gif"
width=14>
<% } %>
<a href="../userinfo.jsp?username=<%=name%>"><%=user.getNick()%></a>
</td>
<td align=middle width=55 bgcolor=#f8f8f8><font color=red>[<%=recount%>]</font></td>
<td align=middle width=55 bgcolor=#ffffff><%=hit%></td>
<td align=left width=80 bgcolor=#f8f8f8>
<table cellspacing=0 cellpadding=2 width="100%" align=center border=0>
<tbody>
<tr>
<td width="10%"> </td>
<td><%=lydate%></td>
</tr>
</tbody>
</table>
</td>
<td align=middle width=91 bgcolor=#ffffff> <a
href="listtopic.jsp?boardcode=<%=myboardcode%>&boardname=<%=StrUtil.UrlEncode(myboardname,"utf-8")%>"><%=myboardname%></a> </td>
</tr>
<tr id=follow<%=id%> style="DISPLAY: none">
<td noWrap align=middle width=30 bgcolor=#f8f8f8> </td>
<td align=middle width=17 bgcolor=#ffffff> </td>
<td onMouseOver="this.style.backgroundColor='#ffffff'"
onMouseOut="this.style.backgroundColor=''" align=left bgcolor=#f8f8f8 colspan="6">
<div id=followDIV<%=id%>
style="WIDTH: 100%;BACKGROUND-COLOR: lightyellow"
onClick=loadThreadFollow(<%=id%>,<%=id%>,"&hit=<%=hit+1%>&boardname=<%=urlboardname%>")><span style="WIDTH: 100%">
<lt:Label res="res.label.forum.listtopic" key="wait"/>
</span></div>
</td>
</tr>
<tr>
<td
style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px"
colspan=5>
</td>
</tr>
</tbody>
</table>
<%}%>
<table width="100%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
<tr>
<td width="2%" height="23"> </td>
<td height="23" valign="baseline">
<div align="right">
<%
String querystr = "action="+action;
out.print(paginator.getCurPageBlock(request, "mytopic.jsp?"+querystr));
%>
</div> </td>
</tr>
</table>
<TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
<TBODY>
<TR>
<TD><TABLE width="100%" border=0 align="center"
cellPadding=0 cellSpacing=4 borderColor=#111111 style="BORDER-COLLAPSE: collapse">
<TBODY>
<TR>
<TD noWrap width=200><IMG height=12 alt=""
src="<%=skinPath%>/images/f_new.gif" width=18 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_reply"/></TD>
<TD noWrap width=100><IMG height=12 alt=""
src="<%=skinPath%>/images/f_hot.gif" width=18 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_hot"/>
</TD>
<TD noWrap width=100><IMG height=15 alt=""
src="<%=skinPath%>/images/f_locked.gif" width=17 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_lock"/></TD>
<TD noWrap width=150><IMG src="images/topicgood.gif">
<lt:Label res="res.label.forum.listtopic" key="topic_elite"/></TD>
<TD noWrap width=150><IMG height=15 alt="" src="images/top_forum.gif" width=15 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_all_top"/></TD>
</TR>
<TR>
<TD noWrap width=200><IMG height=12 alt=""
src="<%=skinPath%>/images/f_norm.gif" width=18 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_no_reply"/></TD>
<TD noWrap width=100><IMG height=15 alt=""
src="<%=skinPath%>/images/f_poll.gif" width=17 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_vote"/></TD>
<TD noWrap width=100><IMG height=15 alt=""
src="<%=skinPath%>/images/f_top.gif" width=15 border=0>
<lt:Label res="res.label.forum.listtopic" key="topic_top"/></TD>
<TD noWrap width=150><IMG height=14 src="<%=skinPath%>/images/my.gif"
width=14>
<lt:Label res="res.label.forum.listtopic" key="topic_my"/></TD>
<TD noWrap width=150> </TD>
</TR>
</TBODY>
</TABLE></TD>
</TR></TBODY></TABLE>
</CENTER>
<%@ include file="inc/footer.jsp"%>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -