Adding the umbraco:image control, and the ImageUrl feature with a some generic ProviderFeature classes, to make it easier to implement future provider based features.

This commit is contained in:
Morten Bock
2012-11-21 07:13:31 -01:00
parent aba68720bb
commit 9e1c5e71e4
13 changed files with 313 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.Web;
namespace Umbraco.Core.ObjectResolution
{
public class WebHttpContextFactory : IHttpContextFactory
{
public HttpContextBase Context
{
get { return new HttpContextWrapper(HttpContext.Current); }
}
}
}