From 9fa5821f078bf0ff7646db6a96330c411398f61e Mon Sep 17 00:00:00 2001 From: Stephan Date: Tue, 11 Jun 2013 15:04:47 +0200 Subject: [PATCH] Comments - Web.Standalone --- src/Umbraco.Web/Standalone/StandaloneBootManager.cs | 9 +++++---- src/Umbraco.Web/Standalone/StandaloneHttpContext.cs | 3 +-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web/Standalone/StandaloneBootManager.cs b/src/Umbraco.Web/Standalone/StandaloneBootManager.cs index cf2e8f7c11..8e69797a4d 100644 --- a/src/Umbraco.Web/Standalone/StandaloneBootManager.cs +++ b/src/Umbraco.Web/Standalone/StandaloneBootManager.cs @@ -15,8 +15,9 @@ namespace Umbraco.Web.Standalone /// 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 _handlersToAdd; private readonly IEnumerable _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! diff --git a/src/Umbraco.Web/Standalone/StandaloneHttpContext.cs b/src/Umbraco.Web/Standalone/StandaloneHttpContext.cs index 55339e97b6..ac34e405e5 100644 --- a/src/Umbraco.Web/Standalone/StandaloneHttpContext.cs +++ b/src/Umbraco.Web/Standalone/StandaloneHttpContext.cs @@ -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 {