diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-21 17:47:39 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-21 17:47:39 -0700 |
commit | 683b55a61af3c7bfa11b74a5cc4efd3556e59613 (patch) | |
tree | 33b9b40e83c8932a33de8803ec56a7272458d2e3 /src/DotNetOpenAuth.Test/App.config | |
parent | c5c8515e67903baf00ba63417ac6124f665ea38b (diff) | |
parent | 510723cc2773ad3f1e306001310d7a8b28e89d1a (diff) | |
download | DotNetOpenAuth-683b55a61af3c7bfa11b74a5cc4efd3556e59613.zip DotNetOpenAuth-683b55a61af3c7bfa11b74a5cc4efd3556e59613.tar.gz DotNetOpenAuth-683b55a61af3c7bfa11b74a5cc4efd3556e59613.tar.bz2 |
Merge branch 'v3.0' into v3.1
Diffstat (limited to 'src/DotNetOpenAuth.Test/App.config')
-rw-r--r-- | src/DotNetOpenAuth.Test/App.config | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/App.config b/src/DotNetOpenAuth.Test/App.config index 2182312..359e25f 100644 --- a/src/DotNetOpenAuth.Test/App.config +++ b/src/DotNetOpenAuth.Test/App.config @@ -1,8 +1,18 @@ <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> + <section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> <section name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth"/> </configSections> + + <!-- The uri section is necessary to turn on .NET 3.5 support for IDN (international domain names), + which is necessary for OpenID urls with unicode characters in the domain/host name. + It is also required to put the Uri class into RFC 3986 escaping mode, which OpenID and OAuth require. --> + <uri> + <idn enabled="All"/> + <iriParsing enabled="true"/> + </uri> + <dotNetOpenAuth> <!-- The values here are carefully chosen to be somewhat weird so that tests can be reasonably confident that if the values are the weird ones here that they did |