Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit 04d3480

Browse files
committed
Changed some more references from DNOI to DNOA.
1 parent 1b9a7be commit 04d3480

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

samples/OpenIdProviderWebForms/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</settings>
4444
</system.net>
4545

46-
<!-- this is an optional configuration section where aspects of dotnetopenid can be customized -->
46+
<!-- this is an optional configuration section where aspects of DotNetOpenAuth can be customized -->
4747
<dotNetOpenAuth>
4848
<openid>
4949
<provider>
@@ -118,7 +118,7 @@
118118
</authorization>
119119
</system.web>
120120
</location>
121-
<!-- log4net is a 3rd party (free) logger library that dotnetopenid will use if present but does not require. -->
121+
<!-- log4net is a 3rd party (free) logger library that DotNetOpenAuth will use if present but does not require. -->
122122
<log4net>
123123
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
124124
<file value="Provider.log"/>

samples/OpenIdRelyingPartyWebForms/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<trust level="Medium" originUrl=".*"/>
6161
</system.web>
6262

63-
<!-- log4net is a 3rd party (free) logger library that dotnetopenid will use if present but does not require. -->
63+
<!-- log4net is a 3rd party (free) logger library that DotNetOpenAuth will use if present but does not require. -->
6464
<log4net>
6565
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
6666
<file value="RelyingParty.log" />

samples/README.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,22 @@ <h3>The Provider Demo </h3>
9494
<h3>Interesting classes and methods</h3>
9595
<h4>Relying party</h4>
9696
<ul>
97-
<li>DotNetOpenId.RelyingParty.<b>OpenIdRelyingParty</b> - programmatic access to everything
97+
<li>DotNetOpenAuth.OpenId.RelyingParty.<b>OpenIdRelyingParty</b> - programmatic access to everything
9898
a relying party web site needs.</li>
99-
<li>DotNetOpenId.RelyingParty.<b>OpenIdTextBox</b> - An ASP.NET control that is a bare-bones
99+
<li>DotNetOpenAuth.OpenId.RelyingParty.<b>OpenIdTextBox</b> - An ASP.NET control that is a bare-bones
100100
text input box with a LogOn method that automatically does all the OpenId stuff
101101
for you.</li>
102-
<li>DotNetOpenId.RelyingParty.<b>OpenIdLogin</b> - Like the OpenIdTextBox, but has a
102+
<li>DotNetOpenAuth.OpenId.RelyingParty.<b>OpenIdLogin</b> - Like the OpenIdTextBox, but has a
103103
Login button and some other end user-friendly UI built-in.&nbsp; Drop this onto
104104
your web form and you&#39;re all done!</li>
105105
</ul>
106106
<h4>Provider</h4>
107107
<ul>
108-
<li>DotNetOpenId.Provider.<b>OpenIdProvider</b> - programmatic access to everything
108+
<li>DotNetOpenAuth.OpenId.Provider.<b>OpenIdProvider</b> - programmatic access to everything
109109
a provider web site needs.</li>
110-
<li>DotNetOpenId.Provider.<b>ProviderEndpoint</b> - An ASP.NET control that you can
110+
<li>DotNetOpenAuth.OpenId.Provider.<b>ProviderEndpoint</b> - An ASP.NET control that you can
111111
drop in and have an instant provider endpoint on your page.</li>
112-
<li>DotNetOpenId.Provider.<b>IdentityEndpoint</b> - An ASP.NET control that you can
112+
<li>DotNetOpenAuth.OpenId.Provider.<b>IdentityEndpoint</b> - An ASP.NET control that you can
113113
drop onto the page for your own or your customers&#39; individual identity pages
114114
for discovery by Relying Parties.</li>
115115
</ul>

src/DotNetOpenAuth/Loggers/ILog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// This interface is designed to look like log4net's ILog interface.
2222
// We have this as a facade in front of it to avoid crashing if the
2323
// hosting web site chooses not to deploy log4net.dll along with
24-
// dotnetopenid.dll.
24+
// DotNetOpenAuth.dll.
2525

2626
namespace DotNetOpenAuth.Loggers
2727
{

src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private static TimeSpan MaximumMessageAge {
178178
#endregion
179179

180180
/// <summary>
181-
/// A special DotNetOpenId-only nonce used by the RP when talking to 1.0 OPs in order
181+
/// A special DotNetOpenAuth-only nonce used by the RP when talking to 1.0 OPs in order
182182
/// to protect against replay attacks.
183183
/// </summary>
184184
private class CustomNonce {

src/DotNetOpenAuth/OpenId/Extensions/ProviderAuthenticationPolicy/NistAssuranceLevel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace DotNetOpenAuth.OpenId.Extensions.ProviderAuthenticationPolicy {
1818
/// <remarks>
1919
/// <para>One using this enum should review the following publication for details
2020
/// before asserting or interpreting what these levels signify, notwithstanding
21-
/// the brief summaries attached to each level in DotNetOpenId documentation.
21+
/// the brief summaries attached to each level in DotNetOpenAuth documentation.
2222
/// http://csrc.nist.gov/publications/nistpubs/800-63/SP800-63V1_0_2.pdf</para>
2323
/// <para>
2424
/// See PAPE spec Appendix A.1.2 (NIST Assurance Levels) for high-level example classifications of authentication methods within the defined levels.

0 commit comments

Comments
 (0)