|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using FLocal.Common;
|
|
|
|
|
using FLocal.Common.dataobjects;
|
|
|
|
|
using FLocal.Core.DB;
|
|
|
|
|
|
|
|
|
|
namespace FLocal.IISHandler.handlers.response {
|
|
|
|
|
|
|
|
|
|
class BoardAsThreadHandler : AbstractGetHandler {
|
|
|
|
|
|
|
|
|
|
override protected string templateName {
|
|
|
|
|
get {
|
|
|
|
|
return "BoardAsThread.xslt";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override protected IEnumerable<XElement> getSpecificData(WebContext context) {
|
|
|
|
|
Board board = Board.LoadById(int.Parse(context.requestParts[1]));
|
|
|
|
|
PageOuter pageOuter = PageOuter.createFromGet(context.requestParts, context.userSettings.postsPerPage, 2);
|
|
|
|
|
IEnumerable<Thread> threads = board.getThreads(
|
|
|
|
|
pageOuter,
|
|
|
|
|
new SortSpec[] {
|
|
|
|
|
new SortSpec(
|
|
|
|
|
Thread.TableSpec.instance.getColumnSpec(Thread.TableSpec.FIELD_ID),
|
|
|
|
|
pageOuter.ascendingDirection
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return new XElement[] {
|
|
|
|
|
new XElement("currentLocation", board.exportToXmlSimpleWithParent(context)),
|
|
|
|
|
new XElement("boards", from subBoard in board.subBoards select subBoard.exportToXml(context, Board.SubboardsOptions.FirstLevel)),
|
|
|
|
|
new XElement("posts",
|
|
|
|
|
from thread in threads select thread.firstPost.exportToXml(
|
|
|
|
|
context,
|
|
|
|
|
new XElement("specific", thread.exportToXml(context))
|
|
|
|
|
),
|
|
|
|
|
pageOuter.exportToXml(1, 5, 1)
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|