Reinstated temporary new settings in the UmbracoModule and have changed UmbracoModule to reference

the new Umbraco.Core.Configuration settings instead of the legacy ones.
This commit is contained in:
shannon@ShandemVaio
2012-07-28 23:53:07 +06:00
parent 750f5b18d3
commit 1aa70c4bb8
2 changed files with 29 additions and 20 deletions

View File

@@ -128,11 +128,29 @@ namespace Umbraco.Core.Configuration
get { return bool.Parse(GetKey("/settings/content/UploadAllowDirectories")); }
}
/// <summary>
/// THIS IS TEMPORARY until we fix up settings all together, this setting is actually not 'settable' but is
/// here for future purposes since we check for thsi settings in the module.
/// </summary>
internal static bool EnableBaseRestHandler
{
get { return true; }
}
/// <summary>
/// THIS IS TEMPORARY until we fix up settings all together, this setting is actually not 'settable' but is
/// here for future purposes since we check for thsi settings in the module.
/// </summary>
internal static string BootSplashPage
{
get { return "~/default.aspx"; }
}
/// <summary>
/// Gets a value indicating whether logging is enabled in umbracoSettings.config (/settings/logging/enableLogging).
/// </summary>
/// <value><c>true</c> if logging is enabled; otherwise, <c>false</c>.</value>
public static bool EnableLogging
public static bool EnableLogging
{
get
{