Removed old and completely unused GraphicHeadlineFormat config setting

Some updates to umbracoSettings.config
Thanks to Jan Skovgaard for the help!
This commit is contained in:
sebastiaan
2012-09-17 07:47:13 -02:00
parent ca55579982
commit 59fe173933
4 changed files with 12 additions and 32 deletions

View File

@@ -661,16 +661,7 @@ namespace Umbraco.Core.Configuration
return false;
}
}
/// <summary>
/// Gets the graphic headline format - png or gif
/// </summary>
/// <value>The graphic headline format.</value>
public static string GraphicHeadlineFormat
{
get { return GetKey("/settings/content/graphicHeadlineFormat"); }
}
/// <summary>
/// Gets a value indicating whether umbraco will ensure unique node naming.
/// This will ensure that nodes cannot have the same url, but will add extra characters to a url.

View File

@@ -29,9 +29,11 @@
should be set to false if the aspnet account hasn't got readrights of the driveroot up to the /media directory -->
<UploadAllowDirectories>True</UploadAllowDirectories>
<errors>
<!-- the id of the page that should be shown if the page is not found -->
<!-- <errorPage culture="default">1</errorPage>-->
<!-- <errorPage culture="en-US">200</errorPage>-->
<!-- the id of the page that should be shown if the page is not found -->
<!--<error404>
<errorPage culture="default">1</errorPage>
<errorPage culture="en-US">200</errorPage>
</error404>-->
<error404>1</error404>
</errors>
<notifications>
@@ -42,9 +44,6 @@
<!-- if true umbraco will ensure that no page under the same parent has an identical name -->
<ensureUniqueNaming>True</ensureUniqueNaming>
<!-- lowercase, either 'gif' or 'png' -->
<graphicHeadlineFormat>gif</graphicHeadlineFormat>
<!-- clean editor content with use of tidy -->
<TidyEditorContent>False</TidyEditorContent>

View File

@@ -26,12 +26,14 @@
</scripteditor>
<!-- should umbraco store the uploaded files like /media/xxx/filename.ext or like /media/xxx-filename.ext
should be set to false if the aspnet account hasn't got readrights of the driveroot up to the /media directory -->
should be set to false if the application pool's user account hasn't got readrights of the driveroot up to the /media directory -->
<UploadAllowDirectories>True</UploadAllowDirectories>
<errors>
<!-- the id of the page that should be shown if the page is not found -->
<!-- <errorPage culture="default">1</errorPage>-->
<!-- <errorPage culture="en-US">200</errorPage>-->
<!--<error404>
<errorPage culture="default">1</errorPage>
<errorPage culture="en-US">200</errorPage>
</error404>-->
<error404>
<errorPage culture="default">1134</errorPage>
<errorPage culture="en-US">1135</errorPage>
@@ -46,9 +48,6 @@
<!-- if true umbraco will ensure that no page under the same parent has an identical name -->
<ensureUniqueNaming>True</ensureUniqueNaming>
<!-- lowercase, either 'gif' or 'png' -->
<graphicHeadlineFormat>gif</graphicHeadlineFormat>
<!-- clean editor content with use of tidy -->
<TidyEditorContent>False</TidyEditorContent>

View File

@@ -322,16 +322,7 @@ namespace umbraco
{
get { return Umbraco.Core.Configuration.UmbracoSettings.ScriptDisableEditor; }
}
/// <summary>
/// Gets the graphic headline format - png or gif
/// </summary>
/// <value>The graphic headline format.</value>
public static string GraphicHeadlineFormat
{
get { return Umbraco.Core.Configuration.UmbracoSettings.GraphicHeadlineFormat; }
}
/// <summary>
/// Gets a value indicating whether umbraco will ensure unique node naming.
/// This will ensure that nodes cannot have the same url, but will add extra characters to a url.