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.response { class CreateThreadHandler : AbstractNewMessageHandler { override protected string templateName { get { return "NewThread.xslt"; } } override protected IEnumerable getSpecificNewMessageData(WebContext context) { Board board = this.url.board; return new XElement[] { new XElement("currentLocation", board.exportToXmlSimpleWithParent(context)), board.exportToXml(context, Board.SubboardsOptions.None), board.exportLayersInfoForUser(context), }; } } }