From 0900fc3bf857148a38b5a2b3658bf7ec9b86fd3a Mon Sep 17 00:00:00 2001 From: PerPloug Date: Wed, 30 Jun 2010 10:10:47 +0000 Subject: [PATCH] Missing Settings.Settings file [TFS Changeset #71737] --- .../presentation/Properties/Settings.settings | 3 + .../Properties/Settings1.Designer.cs | 54 ++++ umbraco/presentation/macro.cs | 1 - .../presentation/umbraco.presentation.csproj | 7 +- .../umbraco/scripting/ScriptEngine.cs | 2 + umbraco/presentation/web.config | 236 ++++++++++++++++++ 6 files changed, 301 insertions(+), 2 deletions(-) create mode 100644 umbraco/presentation/Properties/Settings1.Designer.cs create mode 100644 umbraco/presentation/web.config diff --git a/umbraco/presentation/Properties/Settings.settings b/umbraco/presentation/Properties/Settings.settings index 852258d821..f12be9ccf4 100644 --- a/umbraco/presentation/Properties/Settings.settings +++ b/umbraco/presentation/Properties/Settings.settings @@ -8,5 +8,8 @@ http://update.umbraco.org/checkforupgrade.asmx + + Somthing + \ No newline at end of file diff --git a/umbraco/presentation/Properties/Settings1.Designer.cs b/umbraco/presentation/Properties/Settings1.Designer.cs new file mode 100644 index 0000000000..5d57c31790 --- /dev/null +++ b/umbraco/presentation/Properties/Settings1.Designer.cs @@ -0,0 +1,54 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.1 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace umbraco.presentation.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + + [global::System.Configuration.ApplicationScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("http://regexlib.com/WebServices.asmx")] + public string umbraco_com_regexlib_Webservices { + get { + return ((string)(this["umbraco_com_regexlib_Webservices"])); + } + } + + [global::System.Configuration.ApplicationScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)] + [global::System.Configuration.DefaultSettingValueAttribute("http://update.umbraco.org/checkforupgrade.asmx")] + public string umbraco_org_umbraco_update_CheckForUpgrade { + get { + return ((string)(this["umbraco_org_umbraco_update_CheckForUpgrade"])); + } + } + + [global::System.Configuration.ApplicationScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Somthing")] + public string test { + get { + return ((string)(this["test"])); + } + } + } +} diff --git a/umbraco/presentation/macro.cs b/umbraco/presentation/macro.cs index 8a99ab4121..0ef0bf5f38 100644 --- a/umbraco/presentation/macro.cs +++ b/umbraco/presentation/macro.cs @@ -27,7 +27,6 @@ using umbraco.scripting; using umbraco.presentation.nodeFactory; using templateControls = umbraco.presentation.templateControls; using umbraco.IO; -using umbraco.presentation.nodeFactory; namespace umbraco { diff --git a/umbraco/presentation/umbraco.presentation.csproj b/umbraco/presentation/umbraco.presentation.csproj index 01cb4ba189..6e84244843 100644 --- a/umbraco/presentation/umbraco.presentation.csproj +++ b/umbraco/presentation/umbraco.presentation.csproj @@ -313,7 +313,11 @@ Code - + + True + True + Settings.settings + Code @@ -2820,6 +2824,7 @@ umbraco.xsd + diff --git a/umbraco/presentation/umbraco/scripting/ScriptEngine.cs b/umbraco/presentation/umbraco/scripting/ScriptEngine.cs index 2fe6dcf38f..25292b0d3f 100644 --- a/umbraco/presentation/umbraco/scripting/ScriptEngine.cs +++ b/umbraco/presentation/umbraco/scripting/ScriptEngine.cs @@ -3,8 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Web; + using Microsoft.Scripting.Hosting; using Microsoft.Scripting; + using System.IO; using System.Text; using System.Reflection; diff --git a/umbraco/presentation/web.config b/umbraco/presentation/web.config new file mode 100644 index 0000000000..05afec63b7 --- /dev/null +++ b/umbraco/presentation/web.config @@ -0,0 +1,236 @@ + + + +
+
+ + + + + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://regexlib.com/WebServices.asmx + + + http://update.umbraco.org/checkforupgrade.asmx + + + Somthing + + + + \ No newline at end of file