summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v3.2'Andrew Arnott2009-08-3156-163/+1519
|\ | | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi src/DotNetOpenAuth/OpenId/Identifier.cs
| * Merge branch 'v3.1' into v3.2Andrew Arnott2009-08-3152-151/+1452
| |\ | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs src/DotNetOpenAuth.vsmdi src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs
| | * Merge branch 'v3.0' into v3.1Andrew Arnott2009-08-3145-119/+1333
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi src/DotNetOpenAuth/OpenId/OpenIdStrings.Designer.cs src/DotNetOpenAuth/OpenId/OpenIdStrings.resx
| | | * The two ASP.NET hosted tests now result in Inconclusive when they fail to ↵Andrew Arnott2009-08-312-16/+25
| | | | | | | | | | | | | | | | start due to an assembly load failure. I don't know why the assembly load failure occurs sometimes and not others.
| | | * Fixed test failures introduced in recent commit.Andrew Arnott2009-08-313-48/+47
| | | |
| | | * Fixed a couple of small error messages.Andrew Arnott2009-08-302-1/+5
| | | |
| | | * Added tests for unsolicited assertion sending and receiving, including ↵Andrew Arnott2009-08-309-2/+141
| | | | | | | | | | | | | | | | against the RP's whitelist.
| | | * OpenIdRelyingParty.EndpointFilter now consulted before successfully ↵Andrew Arnott2009-08-305-2/+140
| | | | | | | | | | | | | | | | | | | | | | | | receiving an unsolicited positive assertion. Fixes #118
| | | * Fixed warning that is logged when sreg extension requests come into an OP ↵Andrew Arnott2009-08-251-0/+2
| | | | | | | | | | | | | | | | with empty required or optional lists.
| | | * Adds a few ServiceProvider constructors to allow for a custom INonceStore ↵Andrew Arnott2009-08-192-4/+25
| | | | | | | | | | | | | | | | | | | | | | | | instance to be supplied. Resolves Trac ticket #112
| | | * Added to sample OAuthConsumerWcf to demonstrate calling our sample ↵Andrew Arnott2009-08-1916-65/+958
| | | | | | | | | | | | | | | | OAuthServiceProvider.
| | | * Fixed a couple of issues with the sample OAuth SP in handling desktop consumers.Andrew Arnott2009-08-192-2/+2
| | | |
| | | * Fixed StyleCop messages.Andrew Arnott2009-08-182-2/+2
| | | |
| | | * Fixed NullReferenceException that can be thrown by the MVC Provider sample ↵Andrew Arnott2009-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | if the Accept-Types header is missing in the request. Thanks, Steven L-P.
| | | * We now fail more gracefully when an Identifier claims to provide an XRDS but ↵Andrew Arnott2009-08-141-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | sends us invalid XML instead. Fixes Trac #109.
| | | * Fixed unhandled exception in OAuth that was thrown for URLs that have query ↵Andrew Arnott2009-08-111-1/+5
| | | | | | | | | | | | | | | | strings that are in the '?WSDL' (non name=value) style.
| | | * Fixed DotNetOAuth reference.Andrew Arnott2009-08-051-1/+1
| | | |
| | * | Fixes InfoCardSelector.PrivacyUrl property to resolve values that begin with ↵Andrew Arnott2009-08-263-4/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '~/'. Also now throws when PrivacyUrl is set but PrivacyVersion is not. Fixes Trac #92.
| | * | Fixed failing unit test due to recent new exception wrapping.Andrew Arnott2009-08-261-1/+1
| | | |
| | * | Fixed bug where invalid extension payloads would end up throwing an ↵Andrew Arnott2009-08-254-11/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unhandled ArgumentException. The new design is to log the error and drop the extension while letting the rest of the message through. Fixes Trac #115.
| | * | HTTP_X_FORWARDED_PROTO is now considered when deriving the public-facing URL.Andrew Arnott2009-08-141-0/+3
| | | |
| | * | Fixed public facing URL parsing bug when IPv6 addresses are explicitly used ↵unknown2009-08-062-7/+47
| | | | | | | | | | | | | | | | by the RP.
| * | | Removed runtime dependency on PresentationFramework.dll unless that feature ↵Andrew Arnott2009-08-311-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | is actually required. Fixes #119
| * | | Fixed bug in OAuth Service Provider WCF sample where the service was using ↵Andrew Arnott2009-08-213-5/+43
| | | | | | | | | | | | | | | | | | | | | | | | the identity of the logged in user rather than the identity authenticated by the service (OAuth) to look up the data. Resolves trac #114. Thanks Steven L-P for reporting this!
* | | | Satellite assemblies are now distributed with the library.Andrew Arnott2009-08-301-0/+1
| | | |
* | | | Added localized strings in Serbian.Andrew Arnott2009-08-2910-1/+1349
| | | | | | | | | | | | | | | | Special thanks to Branislav Uzelac who provided the translation.
* | | | Finished OpenID+OAuth sample-to-sample demo.Andrew Arnott2009-08-262-1/+11
| | | |
* | | | Fixed up OpenIdTextBox so it doesn't add an sreg request with an empty list ↵Andrew Arnott2009-08-251-2/+12
| | | | | | | | | | | | | | | | of fields.
* | | | Fixed bug where the sample OP would show the OpenID+OAuth extension panel ↵Andrew Arnott2009-08-251-1/+1
| | | | | | | | | | | | | | | | always, even without an OAuth extension present.
* | | | Fixed bug from rpControlBase branch where OpenIdTextBox would not submit ↵Andrew Arnott2009-08-251-0/+33
| | | | | | | | | | | | | | | | sreg request.
* | | | Fixed strong name skip verification which was missing for some built assemblies.Andrew Arnott2009-08-251-3/+1
| | | |
* | | | Fixed build break after merge.Andrew Arnott2009-08-251-1/+1
| | | |
* | | | Merge branch 'rpControlBase'Andrew Arnott2009-08-2530-2369/+1685
|\ \ \ \
| * | | | Fixed bug where the OpenIdAjaxTextBox wasn't firing login events reliably.Andrew Arnott2009-08-251-1/+1
| | | | |
| * | | | Fixed some compiler warnings.Andrew Arnott2009-08-252-8/+3
| | | | |
| * | | | Renamed LoginPersistence enum values.Andrew Arnott2009-08-072-9/+9
| | | | |
| * | | | Fixed NullReferenceException in OpenIdTextBox.Text property getter.Andrew Arnott2009-08-071-1/+1
| | | | |
| * | | | Fixed failing UriIdentifier.ctor unit test.Andrew Arnott2009-08-041-1/+1
| | | | |
| * | | | Fixed StyleCop message.Andrew Arnott2009-07-271-4/+4
| | | | |
| * | | | Added commented out lines to add debugging helps to the ajax login control.Andrew Arnott2009-07-251-0/+4
| | | | |
| * | | | Fixed the remaining apparent problems with the new OpenIdAjaxTextBox control.Andrew Arnott2009-07-242-254/+280
| | | | |
| * | | | OpenIdAjaxTextBox rewritten to derive from OpenIdRelyingPartyAjaxControlBase.Andrew Arnott2009-07-2312-1402/+924
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A great deal of refactoring went into this, but of C# and Javascript code. The upside to this is now we can write many more AJAX controls (auto-login, for example) with minimal code. Note that the OpenIdAjaxTextBox control is not yet back up to par with the prior one. Postbacks don't yet properly deserialize the 'authenticated' state of the page.
| * | | | Fixed UI extension discovery so it complies with the latest UI spec draft.Andrew Arnott2009-07-223-5/+37
| | | | |
| * | | | Added Identifier.OriginalString property and a few uses of it.Andrew Arnott2009-07-218-10/+16
| | | | |
| * | | | Fixed bug where the OpenIdTextBox would lose its Identifier value if it was ↵Andrew Arnott2009-07-201-4/+8
| | | | | | | | | | | | | | | | | | | | made invisible.
| * | | | Fixed bug where OpenIdTextBox doesn't emit its CssClass value.Andrew Arnott2009-07-201-0/+4
| | | | |
| * | | | Added RP IAuthenticationRequest.SetCallbackArgument method that does not ↵Andrew Arnott2009-07-202-0/+38
| | | | | | | | | | | | | | | | | | | | fail if the parameter was already added.
| * | | | Suppressed the warning in the samples that .NET generates due to use of ↵Andrew Arnott2009-07-204-0/+12
| | | | | | | | | | | | | | | | | | | | HMAC-SHA384 and 512.
| * | | | OpenIdAjaxTextBox now implements ITextControl, which it should have anyway.Andrew Arnott2009-07-191-1/+1
| | | | |
| * | | | Fixed bug where the new OpenIdTextBox fails if a postback is made with the ↵Andrew Arnott2009-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | textbox blank.
| * | | | Added class diagrams for OpenID RP classes.Andrew Arnott2009-07-153-0/+115
| | | | |
| * | | | Removed unnecessary method from sample InMemoryTokenManager.Andrew Arnott2009-07-131-8/+0
| | | | |
| * | | | Fixed build break caused by ServiceEndpoint.endpoint field's rename.Andrew Arnott2009-07-131-1/+1
| | | | |
| * | | | Updated sample to avoid build break due to the removed ↵Andrew Arnott2009-07-133-18/+1
| | | | | | | | | | | | | | | | | | | | OpenIdLogin.SetupRequired event.
| * | | | Fixed unhandled exception upon discovery failure in new OpenIdLogin control.Andrew Arnott2009-07-131-2/+8
| | | | |
| * | | | OpenIdTextBox and OpenIdLogin now derive from OpenIdRelyingPartyControlBase. ↵Andrew Arnott2009-07-133-853/+340
| | | | | | | | | | | | | | | | | | | | Yay!
| * | | | Fixed OpenIdRelyingPartyControlBase to Dispose of any OpenIdRelyingParty ↵Andrew Arnott2009-07-131-1/+36
| | | | | | | | | | | | | | | | | | | | instances it creates.
| * | | | Fixed StyleCop messages introduced in 3664eb6c1da4e5.Andrew Arnott2009-07-131-8/+8
| | | | |
| * | | | Enhanced OpenIdRelyingPartyControlBase to have an option to persist the user ↵Andrew Arnott2009-07-132-14/+117
| | | | | | | | | | | | | | | | | | | | Identifier rather than the auth ticket.
| * | | | Made PositiveAuthenticationResponse.endpoint field an internal property.Andrew Arnott2009-07-131-16/+16
| | | | |
* | | | | Fixed compiler warnings due to bad xml doc comment references.Andrew Arnott2009-08-191-2/+2
| | | | |
* | | | | Added IServiceProviderTokenManager.UpdateToken method.Andrew Arnott2009-08-196-4/+38
| | | | | | | | | | | | | | | | | | | | Fixes Trac #96.
* | | | | Added capability to send PUT and DELETE HTTP requests using OAuth.Andrew Arnott2009-08-188-16/+105
| | | | |
* | | | | Merge branch 'v3.2'Andrew Arnott2009-08-058-31/+38
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | Conflicts: tools/DotNetOpenAuth.Versioning.targets tools/Publish.targets
| * | | | Merge branch 'v3.1' into v3.2Andrew Arnott2009-08-0517-25/+311
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | Merge branch 'v3.0' into v3.1Andrew Arnott2009-08-0517-25/+311
| | |\ \ \ | | | | |/ | | | |/| | | | | | | | | | | Conflicts: build.proj
| | | * | Removed debug mesages.Andrew Arnott2009-08-051-3/+0
| | | | |
| | | * | Fixed more bugs in samples/docs deployment.Andrew Arnott2009-08-051-13/+16
| | | | |
| | | * | Added PublishDocumentation and PublishSamples targets that push docs and ↵Andrew Arnott2009-08-0511-15/+298
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sample web sites to IIS. Split up creating IIS web sites and publishing to them, so that TeamCity build agent does not require administrator permissions. Applied some fixes to build bugs that were in the master branch where this commit mainly came from.
| | | * | Workaround for "VerificationException: this operation could destabilize the ↵clrbugDestabilizeRuntimeAndrew Arnott2009-08-042-4/+4
| | | | | | | | | | | | | | | | | | | | runtime" that occurs on some servers sometimes.
| | | * | Switching samples to Medium trust, since setting originUrl allows outbound ↵Andrew Arnott2009-08-042-4/+6
| | | | | | | | | | | | | | | | | | | | HTTP to work.
| | | * | Fixed feedback email address in API documentation.Andrew Arnott2009-08-031-1/+1
| | | | |
| | | * | Removed test runs from nightly build target for now.Andrew Arnott2009-08-011-1/+1
| | | | |
| | | * | Moved the OpenIdRelyingParty instantiating in the RP MVC sample so it ↵Andrew Arnott2009-07-301-1/+2
| | | | | | | | | | | | | | | | | | | | doesn't happen over and over.
* | | | | Split up creating IIS web sites and publishing to them, so that TeamCity ↵Andrew Arnott2009-08-048-52/+149
| | | | | | | | | | | | | | | | | | | | build agent does not require administrator permissions.
* | | | | Added PublishDocumentation and PublishSamples targets that push docs and ↵Andrew Arnott2009-08-0312-2/+671
| | | | | | | | | | | | | | | | | | | | sample web sites to IIS.
* | | | | Fixed signing of OpenIdOfflineProvider tool and Contracts assemblies.Andrew Arnott2009-08-012-4/+8
| | | | |
* | | | | Updated copyright date.Andrew Arnott2009-08-011-1/+1
| | | | |
* | | | | Fixed SnToolTask to find Windows SDK 6.1 as well as 6.0A.Andrew Arnott2009-08-013-1/+10
| | | | |
* | | | | Fixes some misapplied code contracts that were used in methods that called ↵Andrew Arnott2009-07-282-8/+13
| | | | | | | | | | | | | | | | | | | | anonymous delegates.
* | | | | Merge branch 'v3.2'Andrew Arnott2009-07-2857-126/+611
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi src/version.txt
| * | | | StyleCop fixes.Andrew Arnott2009-07-284-12/+12
| | | | |
| * | | | Fixed UIRequest.Icon property to be nullable.Andrew Arnott2009-07-271-1/+1
| | | | |
| * | | | Merge branch 'v3.1' into v3.2Andrew Arnott2009-07-271-1/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi
| | * | | Merge branch 'v3.0' into v3.1Andrew Arnott2009-07-272-51/+52
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi
| | | * | Updated baseline signature now that a different date/time stamp is applied ↵Andrew Arnott2009-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | due to commit 5fcf4bd.
| | | * | Updated vsmdi file.Andrew Arnott2009-07-271-76/+77
| | | | |
| * | | | Merge branch 'v3.1' into v3.2Andrew Arnott2009-07-2721-81/+149
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth/Messaging/MessagingUtilities.cs src/DotNetOpenAuth/OpenId/OpenIdStrings.resx src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs src/version.txt
| | * | | Merge branch 'v3.0' into v3.1Andrew Arnott2009-07-2726-10/+100
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | Conflicts: src/version.txt
| | | * | Cleaned up all StyleCop and FxCop messages.Andrew Arnott2009-07-277-3/+15
| | | | |
| | | * | Suppressed the warning in the samples that .NET generates due to use of ↵Andrew Arnott2009-07-274-0/+12
| | | | | | | | | | | | | | | | | | | | HMAC-SHA384 and 512.
| | | * | Added commented out lines to add debugging helps to the ajax login control.Andrew Arnott2009-07-271-0/+4
| | | | |
| | | * | Added [Serializable] attributes to a few key classes.Andrew Arnott2009-07-244-0/+4
| | | | |
| | | * | Fixed the way we convert DateTimes to the zone we expect.Andrew Arnott2009-07-247-7/+32
| | | | |
| | | * | Fixed bug where RP was willing to perform discovery on an asserted HTTP ↵Andrew Arnott2009-07-014-2/+35
| | | | | | | | | | | | | | | | | | | | Identifier even with RequireSsl turned on.
| | | * | Incremented to version 3.0.4.Andrew Arnott2009-06-261-1/+1
| | | | |
| | * | | Incremented version to v3.1.2Andrew Arnott2009-06-261-1/+1
| | | | |
| * | | | Fixed FxCop messages.Andrew Arnott2009-07-272-3/+4
| | | | |
| * | | | Fixed a bunch of FxCop messages.Andrew Arnott2009-07-2713-8/+29
| | | | |
| * | | | Fixed build breaks in code contracts that only affected the CodeAnalysis ↵Andrew Arnott2009-07-273-4/+1
| | | | | | | | | | | | | | | | | | | | configuration.