An alternative to UBB.threads
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.
 
 
 
 

50 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Xml.Linq;
using Web.Core;
using FLocal.Common;
using FLocal.Common.dataobjects;
namespace FLocal.IISHandler.handlers {
class PostHandler : AbstractGetHandler<FLocal.Common.URL.forum.board.thread.post.Show> {
override protected string templateName {
get {
return "Post.xslt";
}
}
override protected IEnumerable<XElement> getSpecificData(WebContext context) {
Post post = this.url.post;
int lastReadId = 0;
if(context.session != null) {
lastReadId = post.thread.getLastReadId(context.session.account);
}
XElement[] result = new XElement[] {
new XElement("currentLocation", post.exportToXmlSimpleWithParent(context)),
post.thread.exportToXml(context),
new XElement("posts",
post.exportToXml(
context,
new XElement("isUnread", (post.id > lastReadId).ToPlainString())
)
)
};
post.thread.incrementViewsCounter();
if(context.session != null) {
post.thread.markAsRead(context.session.account, post, post);
}
return result;
}
}
}