Comments - misc

This commit is contained in:
Stephan
2013-06-11 15:07:53 +02:00
parent 9fa5821f07
commit 433e141761
4 changed files with 3 additions and 5 deletions

View File

@@ -116,7 +116,7 @@ namespace Umbraco.Core
//
public bool IsConfigured
{
// fixme - let's do this for the time being
// fixme - we should not do this - ok for now
get
{
return Configured;

View File

@@ -45,11 +45,10 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
// document - whenever a document is updated in, or removed from, the XML cache
// we must clear the cache - at the moment, we clear the entire cache
// TODO could we do partial updates instead of clearing the whole cache?
global::umbraco.content.AfterUpdateDocumentCache += (sender, e) => Clear();
global::umbraco.content.AfterClearDocumentCache += (sender, e) => Clear();
// FIXME
// fixme - refactor when content events are refactored
// the content class needs to be refactored - at the moment
// content.XmlContentInternal setter does not trigger any event
// content.UpdateDocumentCache(List<Document> Documents) does not trigger any event

View File

@@ -27,7 +27,7 @@ namespace Umbraco.Web.Routing
// legacy - umbOriginalUrl used by presentation/umbraco/urlRewriter/UrlRewriterFormWriter which handles <form action="..."
// legacy - umbOriginalUrl also in Umbraco's back-end!
_httpContext.Items["umbOriginalUrl"] = uri.AbsolutePath;
// legacy - umbPage used by default.aspx to get the "clean url"... whatever... fixme - we prob. don't want it anymore
// legacy - umbPage used by default.aspx to get the "clean url"... whatever...
_httpContext.Items["UmbPage"] = uri.AbsolutePath;
// legacy - virtualUrl used by presentation/template.cs to handle <form action="..."
// legacy - virtualUrl used by presentation/umbraco/urlRewriter/UrlRewriterFormWriter which handles <form action="..." too

View File

@@ -39,7 +39,6 @@ namespace Umbraco.Web
// adds the virtual directory if any
// see also VirtualPathUtility.ToAbsolute
// FIXME
public static string ToAbsolute(string url)
{
//return ResolveUrl(url);