summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Added FetchResponse.GetAttributeValue(string) method.Andrew Arnott2009-05-202-0/+38
| | | | Resolves Trac issue #67.
* FxCop fixes for master branch.Andrew Arnott2009-05-204-6/+10
|
* Finished UI popup extension for OpenIdTextBox.Andrew Arnott2009-05-192-10/+33
| | | | Resolves Trac ticket #61.
* Added first part of UI extension support to OpenIdTextBox.Andrew Arnott2009-05-194-1/+162
| | | | It now pops up a semi-compliant window, but doesn't do anything with the positive assertion result.
* Removed OpenIdTextBox.ImmediateMode.Andrew Arnott2009-05-191-33/+1
| | | | Resolves Trac ticket #64.
* OpenIdAjaxTextBox popup window is now modal and centered.Andrew Arnott2009-05-191-1/+22
|
* We now only add UI extension to the OpenIdAjaxTextBox outgoing request when ↵Andrew Arnott2009-05-191-3/+6
| | | | | | the OP advertises support for it. Since we're only following the RP rules for the UI extension if the OP advertises support for it, it makes sense that we only declare ourselves as using it in the same circumstances.
* OpenIdAjaxTextBox now uses the UI extension required popup window size when ↵Andrew Arnott2009-05-192-1/+13
| | | | the OP advertises support for it.
* OpenIdAjaxTextBox now tells the OP that it is in a popup window.Andrew Arnott2009-05-191-0/+4
| | | | | | | More work to do yet: * size the window according to the UI spec IFF the OP declared support for the extension. * dim the rest of the page when the popup is up. * review the spec for any further work to do.
* Added UI extension request class to the extension factory.Andrew Arnott2009-05-192-2/+20
|
* Fixed build break when the FULL_CONTRACTS symbol is defined.Andrew Arnott2009-05-191-0/+1
|
* Fixed javascript error in the OpenIdAjaxTextBox control.Andrew Arnott2009-05-191-1/+1
|
* Added the UI extension draft spec.Andrew Arnott2009-05-191-0/+1
|
* Added default value doc to XRI proxy resolver property.Andrew Arnott2009-05-171-0/+1
|
* Fixed StyleCop messageAndrew Arnott2009-05-161-1/+1
|
* Adds option to change out the XRI proxy resolver to use or even disable XRI ↵Andrew Arnott2009-05-167-3/+117
| | | | | | resolution altogether. Resolves Trac ticket 62.
* Added security feature so RPs can opt out of accepting delegating identifiers.Andrew Arnott2009-05-1612-413/+615
|
* Added configuration setting that allows RPs to reject all unsolicited ↵Andrew Arnott2009-05-159-73/+202
| | | | assertions.
* Fixed compiler warning.Andrew Arnott2009-05-151-0/+1
|
* Added UI extension tests.Andrew Arnott2009-05-153-3/+41
|
* Added support for the OpenID User Interface extension.Andrew Arnott2009-05-154-0/+184
|
* OP now has a RequireSsl option, which requires RP discovery to happen over ↵Andrew Arnott2009-05-087-66/+150
| | | | | | HTTPS. Fixes Trac ticket 51.
* Removed RP RequireSsl property changed event since it was only added to ↵Andrew Arnott2009-05-082-51/+1
| | | | support a design that didn't hold.
* Providers now have better feedback about how RP discovery fails so they can ↵Andrew Arnott2009-05-0810-91/+161
| | | | | | make more informed policy decisions. Fixes Trac ticket 53.
* Added tests to verify anonymous checkid behavior.Andrew Arnott2009-05-0810-440/+611
|
* Added support for extension-only (non-identity) checkid_* requests.Andrew Arnott2009-05-0821-332/+765
|
* Incremented version number to v3.2.Andrew Arnott2009-04-271-1/+1
|
* Merge branch 'offlineapp'Andrew Arnott2009-04-261-1/+3
|\
| * Removed the InternalsVisibleTo attribute for DNOA toward the Offline Provider.Andrew Arnott2009-04-261-2/+0
| |
| * Lots more feature work on OpenID Offline Provider app:Andrew Arnott2009-04-261-0/+2
| | | | | | | | | | * OpenID app icon * UI work
| * Added user interactivity to begin to customize auth responses to the ↵Andrew Arnott2009-04-251-1/+3
| | | | | | | | OpenIdOfflineProvider tool.
* | HTTP requests made for identifier discovery are no longer cached in debug ↵Andrew Arnott2009-04-261-0/+4
| | | | | | | | builds.
* | Fixes a couple of StyleCop messages.Andrew Arnott2009-04-262-1/+9
| |
* | Merge branch 'pairwise'Andrew Arnott2009-04-262-9/+9
|\ \
| * | Reverted unintentional changes.Andrew Arnott2009-04-264-13/+6
| | |
| * | Removed unused resource strings.Andrew Arnott2009-04-262-24/+0
| | |
| * | Fixed capitalization of several OpenID references in the localized strings file.Andrew Arnott2009-04-262-8/+8
| | |
| * | Stylecop fixes.Andrew Arnott2009-04-262-94/+0
| | |
| * | Moved PPID OP Provider code out of the library and into the ApplicationBlock.Andrew Arnott2009-04-267-233/+0
| | |
| * | Fixed property name in AnonymousIdentifierProviderBase.Andrew Arnott2009-04-231-6/+7
| | |
| * | Shorted anonymous identifier hash length, reworked the OP MVC sample to ↵Andrew Arnott2009-04-231-7/+36
| | | | | | | | | | | | support both anonymous and identifying identifiers.
| * | Initial stab at PPID identifiers to protect privacy.Andrew Arnott2009-04-2210-2/+330
| | |
* | | Disabled code contract compilation to workaround ccrewrite hangs.Andrew Arnott2009-04-261-1/+1
| |/ |/|
* | Merge branch 'v3.0'Andrew Arnott2009-04-246-3/+28
|\ \ | |/ |/|
| * Updated Code Contracts to 1.1.20415.13.Andrew Arnott2009-04-241-1/+1
| | | | | | | | This CC version introduces a bug where having Microsoft.Contracts.dll in the assembly search path (lib) causes ccrewrite.exe to spin forever. So we're removing it from that directory, and building will require having Code Contracts installed on the computer.
| * Turned off runtime contract checking until ccrewrite.exe gets fixed so it ↵Andrew Arnott2009-04-242-1/+3
| | | | | | | | doesn't hang.
| * Fixed Identifier.TryParse to not throw when passed null or empty string values.Andrew Arnott2009-04-172-1/+21
| | | | | | | | Fixes Trac issue 15.
| * Fixed NullReferenceException in OpenIdAjaxTextBox when expected extensions ↵v3.0.0.9106Andrew Arnott2009-04-161-0/+3
| | | | | | | | are not found in the response.
| * CRLF fix.Andrew Arnott2009-04-162-9/+9
| |
* | Added better public-facing URL detection in web farms like Windows Azure.Andrew Arnott2009-04-211-1/+34
| |
* | Suppressed FxCop message.Andrew Arnott2009-04-201-0/+1
| |
* | Added OpenID+OAuth Combined Provider support.Andrew Arnott2009-04-208-7/+123
| |
* | Fixes some C# and StyleCop warnings.Andrew Arnott2009-04-204-2/+6
| |
* | Turned on runtime contract checking for debug builds and fixed the errors ↵Andrew Arnott2009-04-194-444/+469
| | | | | | | | that it caught.
* | Added OpenID+OAuth sample.Andrew Arnott2009-04-185-1/+103
| |
* | Added a few code contracts.Andrew Arnott2009-04-183-7/+16
| |
* | Added OpenID+OAuth extension messages.Andrew Arnott2009-04-177-0/+170
| | | | | | | | Still more work can be done to make it easier to use with the OpenIdRelyingParty and OpenIdProvider facades.
* | Fixed ProviderEndpoint control bug where it would try to process old ↵Andrew Arnott2009-04-161-1/+6
| | | | | | | | messages on PostBacks.
* | vsmdi adjustmentAndrew Arnott2009-04-151-75/+71
| |
* | Merge branch 'v3.0'Andrew Arnott2009-04-1533-54/+363
|\ \ | |/
| * Custom OpenID extensions may now exist outside the library.Andrew Arnott2009-04-1529-92/+379
| |
| * Fixed failing unit tests.Andrew Arnott2009-04-153-4/+12
| |
| * HTTP responses with invalid Content-Type headers now emit an error to the ↵Andrew Arnott2009-04-141-3/+11
| | | | | | | | | | | | log but continue instead of throwing an unhandled exception. Works around interop issue 243.
| * Drops now include the contract reference assembly.Andrew Arnott2009-04-131-0/+2
| | | | | | | | There are now three README files in the drops that describe different areas of interest.
| * Added logging of incoming HTTP request URL.Andrew Arnott2009-04-111-0/+1
| |
* | Renamed IsSignedByProvider and hid it from request extension messages since ↵Andrew Arnott2009-04-119-9/+61
| | | | | | | | | | | | it didn't apply. Fixed Google Code Issue 241.
* | Merge commit 'v3.0'Andrew Arnott2009-04-1033-151/+520
|\ \ | |/
| * Fixed OpenIdAjaxTextBox extension passing to Javascript.Andrew Arnott2009-04-104-12/+123
| | | | | | | | | | | | The underlying problem was that we were not actually using a non-verifying OpenID channel as we thought we were, and this is a requirement. Fixes Google Code issue 236.
| * Refactored the programmatic interface of InfoCard token parsing.Andrew Arnott2009-04-094-24/+98
| |
| * Split up ITokenManager into two derived interfaces to better fit Consumer ↵Andrew Arnott2009-04-0815-133/+227
| | | | | | | | and Service Provider scenarios.
| * Fixed ArgumentException caused by the empty string quietly being converted ↵Andrew Arnott2009-04-071-1/+1
| | | | | | | | | | | | to an Identifier. See ee3d0ed78dff797406718b0ac16cbd143996c57a
| * StyleCop fixes.Andrew Arnott2009-04-071-1/+1
| |
| * Fixed bug where AX extensions were not serializable, and added unit tests to ↵Andrew Arnott2009-04-075-0/+66
| | | | | | | | verify.
| * Fixed OAuth RsaSha1 signing binding element.Andrew Arnott2009-04-062-2/+2
| |
| * Added a couple of useful AX extension methods.Andrew Arnott2009-04-051-0/+20
| |
| * Fixed HttpWebRequest cloning in partial trust scenarios.Andrew Arnott2009-04-051-4/+8
| |
| * Added clarifying comments to IAuthenticationRequest.AddCallbackArguments ↵Andrew Arnott2009-04-051-2/+2
| | | | | | | | methods.
| * Fixed ArgNullEx in OpenIdAjaxTextBox when OP identifier is typed in.Andrew Arnott2009-04-051-1/+1
| |
* | Merge branch 'v3.0' into masterAndrew Arnott2009-04-0314-181/+22
|\ \ | |/
| * Turned off runtime contract checking to give it and DNOA time to stabilize.Andrew Arnott2009-04-021-1/+1
| |
| * Lots of FxCop fixes.Andrew Arnott2009-04-0114-256/+97
| |
* | Fixed xml doc comment.Andrew Arnott2009-03-311-1/+2
| |
* | Merge branch 'v3.0'Andrew Arnott2009-03-311-1/+4
|\ \ | |/ | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi
| * Added more logging.v3.0.0.9087RC1Andrew Arnott2009-03-281-1/+4
| |
| * Fixed vsmdi file.Andrew Arnott2009-03-281-68/+70
| |
* | Added capability for RPs to receive unsigned extension responses if they so ↵Andrew Arnott2009-03-3015-130/+554
| | | | | | | | choose.
* | Added initial Offline Provider app.Andrew Arnott2009-03-281-0/+9
| |
* | Merge branch 'v3.0'Andrew Arnott2009-03-287-13/+83
|\ \ | |/
| * Added convenience method for sending OutgoingWebResponse instances to an ↵Andrew Arnott2009-03-273-9/+72
| | | | | | | | HttpListenerResponse.
| * Fix for non-seekable network streams.Andrew Arnott2009-03-271-1/+4
| |
| * Fixes for less-common HTTP responses that lack some headers.Andrew Arnott2009-03-272-2/+6
| |
| * Increased a small HTTP timeout that was resulting in a lot of failures ↵Andrew Arnott2009-03-261-1/+1
| | | | | | | | during smoke testing.
* | Incremented version number to 3.1 in master branch.Andrew Arnott2009-03-281-1/+1
|/
* Merge branch 'samplerename'Andrew Arnott2009-03-262-129/+133
|\
| * Restored missing project and assembly references in the samples.Andrew Arnott2009-03-261-5/+7
| |
| * Renamed OAuth sample sites.Andrew Arnott2009-03-261-33/+29
| |
| * Organized samples in .sln file under categorized folders.Andrew Arnott2009-03-261-69/+75
| |
| * Renamed ConsumerWpf sample to OAuthConsumerWpf.Andrew Arnott2009-03-261-9/+9
| |
| * Renamed classic ASP OpenID sample.Andrew Arnott2009-03-261-28/+27
| |
| * Renamed OpenID RP sample projects.Andrew Arnott2009-03-262-35/+36
| |