Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<%@ Page Language="C#" %>
<html>
<head>
<title>/Default.aspx</title>
</head>
<body>
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %>/Hello<%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Collections.Specialized" %>
<%@ Import Namespace="System.Web.Configuration" %>
<script runat="server">
protected void Page_Load (object sender, EventArgs args)
{
NameValueCollection nvc = WebConfigurationManager.AppSettings;
foreach (string k in nvc)
settings.InnerHtml += String.Format ("{0,23}: '{1}'\n", k, nvc [k]);
}
</script>
<html>
<head>
<title>locations tests</title>
</head>
<body>
AppSettings:
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %><pre runat="server" id="settings"></pre><%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="/Web.config [1]" value="[toplevel]"/>
</appSettings>
<system.web>
<compilation debug="true" />
<customErrors mode="RemoteOnly" />
</system.web>
<location path="Stuff.aspx">
<appSettings>
<add key="/Web.config [2]" value="Stuff.aspx"/>
</appSettings>
</location>
<location path="sub">
<appSettings>
<add key="/Web.config [3]" value="sub"/>
</appSettings>
</location>
<location path="sub/Stuff.aspx">
<appSettings>
<add key="/Web.config [4]" value="sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/sub/Stuff.aspx">
<appSettings>
<add key="/Web.config [5]" value="sub/sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/sub">
<appSettings>
<add key="/Web.config [6]" value="sub/sub"/>
</appSettings>
</location>
</configuration>

View File

@@ -0,0 +1,10 @@
<%@ Page Language="C#" %>
<html>
<head>
<title>/sub/Default.aspx</title>
</head>
<body>
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %>/sub/Hello<%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Collections.Specialized" %>
<%@ Import Namespace="System.Web.Configuration" %>
<script runat="server">
protected void Page_Load (object sender, EventArgs args)
{
NameValueCollection nvc = WebConfigurationManager.AppSettings;
foreach (string k in nvc)
settings.InnerHtml += String.Format ("{0,23}: '{1}'\n", k, nvc [k]);
}
</script>
<html>
<head>
<title>locations tests</title>
</head>
<body>
AppSettings:
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %><pre runat="server" id="settings"></pre><%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="/sub/Web.config [1]" value="[toplevel]"/>
</appSettings>
<system.web>
<compilation debug="true" />
<customErrors mode="RemoteOnly" />
</system.web>
<location path="Stuff.aspx">
<appSettings>
<add key="/sub/Web.config [2]" value="Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/Stuff.aspx">
<appSettings>
<add key="/sub/Web.config [3]" value="sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub">
<appSettings>
<add key="/sub/Web.config [4]" value="sub"/>
</appSettings>
</location>
<location path="sub/sub/Stuff.aspx">
<appSettings>
<add key="/sub/Web.config [5]" value="sub/sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/sub">
<appSettings>
<add key="/sub/Web.config [6]" value="sub/sub"/>
</appSettings>
</location>
</configuration>

View File

@@ -0,0 +1,10 @@
<%@ Page Language="C#" %>
<html>
<head>
<title>/sub/sub/Default.aspx</title>
</head>
<body>
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %>/sub/sub/Hello<%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Collections.Specialized" %>
<%@ Import Namespace="System.Web.Configuration" %>
<script runat="server">
protected void Page_Load (object sender, EventArgs args)
{
NameValueCollection nvc = WebConfigurationManager.AppSettings;
foreach (string k in nvc)
settings.InnerHtml += String.Format ("{0,23}: '{1}'\n", k, nvc [k]);
}
</script>
<html>
<head>
<title>locations tests</title>
</head>
<body>
AppSettings:
<%= AppDomain.CurrentDomain.GetData ("BEGIN_CODE_MARKER") %><pre runat="server" id="settings"></pre><%= AppDomain.CurrentDomain.GetData ("END_CODE_MARKER") %>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="/sub/sub/Web.config [1]" value="[toplevel]"/>
</appSettings>
<system.web>
<compilation debug="true" />
<customErrors mode="RemoteOnly" />
</system.web>
<location path="Stuff.aspx">
<appSettings>
<add key="/sub/sub/Web.config [2]" value="Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/Stuff.aspx">
<appSettings>
<add key="/sub/sub/Web.config [3]" value="sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub">
<appSettings>
<add key="/sub/sub/Web.config [4]" value="sub"/>
</appSettings>
</location>
<location path="sub/sub/Stuff.aspx">
<appSettings>
<add key="/sub/sub/Web.config [5]" value="sub/sub/Stuff.aspx"/>
</appSettings>
</location>
<location path="sub/sub">
<appSettings>
<add key="/sub/sub/Web.config [6]" value="sub/sub"/>
</appSettings>
</location>
</configuration>