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.
FLocal/IISMainHandler/WebContext.cs

53 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
namespace FLocal.IISHandler {
class WebContext : Common.UserContext {
public readonly HttpContext httpcontext;
public HttpRequest httprequest {
get {
return this.httpcontext.Request;
}
}
public HttpResponse httpresponse {
get {
return this.httpcontext.Response;
}
}
public override Common.dataobjects.IUserSettings userSettings {
get {
return new Common.dataobjects.AnonymousUserSettings();
}
}
public override Common.IOutputParams outputParams {
get {
return this.design;
}
}
public designs.IDesign design {
get {
return new designs.Classic();
}
}
public WebContext(HttpContext httpcontext) {
this.httpcontext = httpcontext;
}
public string Transform(string templateName, System.Xml.Linq.XDocument data) {
//TODO: this should work according to design!
return TemplateEngine.Compile(this.design.fsname + this.config.DirSeparator + templateName, data);
}
}
}