Comments - Web.Standalone

This commit is contained in:
Stephan
2013-06-11 15:04:47 +02:00
parent 447b3227a9
commit 9fa5821f07
2 changed files with 6 additions and 6 deletions

View File

@@ -15,8 +15,9 @@ namespace Umbraco.Web.Standalone
/// </summary>
internal class StandaloneBootManager : CoreBootManager
{
// fixme - could we inherit from WebBootManager?
// fixme - highly experimental, probably not complete!
// TODO
// this is highly experimental and probably not complete - not for production usage!
// also, could we inherit from WebBootManager?
private readonly IEnumerable<Type> _handlersToAdd;
private readonly IEnumerable<Type> _handlersToRemove;
@@ -35,7 +36,7 @@ namespace Umbraco.Web.Standalone
// the DataTypesResolver otherwise they won't be loaded into the AppDomain.
var interfacesAssemblyName = typeof(IDataType).Assembly.FullName;
// fixme - there's also that one... but we don't use it in standalone?
// TODO there's also that one... but we don't use it in standalone?
//using umbraco.editorControls;
//var editorControlsAssemblyName = typeof(uploadField).Assembly.FullName;
}
@@ -70,7 +71,7 @@ namespace Umbraco.Web.Standalone
typeof (ContentFinderByNotFoundHandlers)
);
// fixme - what else?
// TODO what else?
}
// can't create context before resolution is frozen!

View File

@@ -22,7 +22,6 @@ namespace Umbraco.Web.Standalone
public StandaloneHttpContext()
{
//create a custom response with a custom writer.
_response = new HttpResponseWrapper(new HttpResponse(_writer));
}
@@ -35,7 +34,7 @@ namespace Umbraco.Web.Standalone
}
// fixme - what shall we implement here?
// what else should we implement here?
public override IDictionary Items
{