summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* StyleCop fixesAndrew Arnott2010-07-2615-79/+68
|
* Collapsed the AuthorizationServerBase and AuthorizationServer classes.Andrew Arnott2010-07-265-92/+59
|
* Allowed sample OAuth consumer WPF app to have relaxed SSL requirements.Andrew Arnott2010-07-253-2/+5
|
* Added scrollbars to fetch resource in sample.Andrew Arnott2010-07-241-1/+1
|
* Work around for odd Casini bug.Andrew Arnott2010-07-241-1/+1
|
* Smoothing out some rough edges in OAuth code.Andrew Arnott2010-07-238-32/+52
|
* Ripped out OAuth 1.0 support from the OAuthServiceProvider sample.Andrew Arnott2010-07-2226-451/+256
|
* Stripping OAuth 1.0 support from the OAuthServiceProvider sample.Andrew Arnott2010-07-2221-1010/+145
|
* Merge branch 'v3.4' into oauth2Andrew Arnott2010-07-216-4/+72
|\
| * Fixed VSIs to use the 2008 projects.Andrew Arnott2010-07-214-4/+20
| |
| * Downgrading VS2010 sample projects to VS2008 now happens by creating NEW ↵Andrew Arnott2010-07-214-4/+49
| | | | | | | | | | | | project and solution files rather than wiping out the VS2010 ones. So now VS2008 and VS2010 users have solutions and projects they can open immediately.
| * Fixed sample project downgrade to remove EnlistmentInfo imports that aren't ↵Andrew Arnott2010-07-214-1/+7
| | | | | | | | supported in MSBuild v3.5.
| * Fixed drop build so that it doesn't include ReSharper cache files.Andrew Arnott2010-07-211-0/+1
| |
* | Small StyleCop fix.Andrew Arnott2010-07-213-3/+3
| |
* | Merge branch 'v3.4' into oauth2Andrew Arnott2010-07-21267-848/+26459
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | Conflicts: projecttemplates/RelyingPartyDatabase/RelyingPartyDatabase.dbproj projecttemplates/RelyingPartyLogic/CreateDatabase.sql samples/OAuthConsumerWpf/OAuthConsumerWpf.csproj src/DotNetOpenAuth.Test/Messaging/MessagingUtilitiesTests.cs src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs src/DotNetOpenAuth/Messaging/MessagingStrings.resx src/DotNetOpenAuth/Messaging/MessagingUtilities.cs src/DotNetOpenAuth/OAuth/ChannelElements/OAuthChannel.cs src/version.txt
| * Deleted generated file.Andrew Arnott2010-07-202-717/+1
| |
| * Incremented version to v3.4.6.Andrew Arnott2010-07-201-1/+1
| |
| * Fixed another build break.v3.4.5.10201Andrew Arnott2010-07-201-0/+2
| |
| * Incremented version to v3.4.5.Andrew Arnott2010-07-201-1/+1
| |
| * It looks like the build is mysteriously going back to the originally ↵Andrew Arnott2010-07-201-2/+8
| | | | | | | | | | | | generated SQL. Weird.
| * Fixed build break in doc.proj. I don't know how this didn't get checked in ↵Andrew Arnott2010-07-201-2/+3
| | | | | | | | earlier.
| * StyleCop fixes that only appeared when building at the command line.Andrew Arnott2010-07-206-36/+36
| |
| * Updated generated SQL for project template database.Andrew Arnott2010-07-191-26/+2
| |
| * Adjusted SQL project build to reproduce the same SQL it always has.Andrew Arnott2010-07-191-1/+1
| | | | | | | | I don't know why this change is necessary now rather than before.
| * Worked around db deployment error.Andrew Arnott2010-07-191-1/+1
| |
| * Added StyleCop to toolset and regular command line build.Andrew Arnott2010-07-1938-59/+233
| | | | | | | | As part of this, all projects now import EnlistmentInfo.props and .targets.
| * Added NUnit runner to the repo.Andrew Arnott2010-07-19206-3/+25834
| |
| * Merge branch 'v3.3' into v3.4Andrew Arnott2010-07-1912-10/+203
| |\ | | | | | | | | | | | | Conflicts: samples/DotNetOpenAuth.ApplicationBlock/Util.cs
| | * Merge branch 'v3.2' into v3.3Andrew Arnott2010-07-1913-14/+228
| | |\
| | | * Merge branch 'v3.1' into v3.2Andrew Arnott2010-07-1916-20/+234
| | | |\ | | | | | | | | | | | | | | | | | | | | Conflicts: samples/DotNetOpenAuth.ApplicationBlock/Util.cs
| | | | * Merge branch 'v3.0' into v3.1Andrew Arnott2010-07-1916-20/+232
| | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: samples/DotNetOpenAuth.ApplicationBlock/Util.cs
| | | | | * Fixes OAuth 1.0(a) base signature string construction to omit the realm ↵Andrew Arnott2010-06-272-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parameter when included in the HTTP Authorization header. Fixes Trac #207
| | | | | * Fixed the namespace of several tests.Andrew Arnott2010-06-279-8/+9
| | | | | |
| | | | | * Added utility method to make it easy to modify channels' outgoing HTTP ↵Andrew Arnott2010-05-151-1/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | requests, particularly for adding default network credentials to them. A sample use of this would be: WebConsumer consumer; // initialized elsewhere consumer.Channel.UseDefaultNetworkCredentialsOnOutgoingHttpRequests(); Note that this method should only be called ONCE per instantiated channel.
| | | | | * Fixed typo in comments.Andrew Arnott2010-05-153-6/+6
| | | | | |
| | | | | * Fix for UIRequest.Icon deserialization exception due to nullable struct types.Andrew Arnott2010-05-082-5/+26
| | | | | | | | | | | | | | | | | | | | | | | | Fixes Trac #195
| | * | | | Removed Identifier.OriginalString from the public API to avoid generating ↵Andrew Arnott2010-06-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | confusion with users.
| * | | | | Provided property to avoid downgrading samples to VS2008 during drop build.Andrew Arnott2010-07-191-0/+1
| | | | | |
| * | | | | Fixed missing Settings.StyleCop files in samples projects.Andrew Arnott2010-07-191-1/+0
| | | | | |
| * | | | | StyleCop fixes.Andrew Arnott2010-07-191-8/+9
| | | | | |
| * | | | | Removed C# 4 usage from samples so they build under VS2008.Andrew Arnott2010-07-194-5/+5
| | | | | |
| * | | | | Fixed samples.sln to use the newly converted web samples.Andrew Arnott2010-07-191-55/+18
| | | | | |
| * | | | | Applied signature equality check timing fix to OAuth.Andrew Arnott2010-07-161-1/+1
| | | | | |
| * | | | | Added a bit more timing text to the test.Andrew Arnott2010-07-161-0/+1
| | | | | |
| * | | | | comment fixAndrew Arnott2010-07-151-1/+1
| | | | | |
| * | | | | Fixed message expiration check to also disallow post-dated timestamps.Andrew Arnott2010-07-154-3/+37
| | | | | | | | | | | | | | | | | | | | | | | | This is a security mitigation for those who are trying to brute force a message signature, and might otherwise give themselves a huge time window by setting a nonce date far into the future.
| * | | | | Fix for timing-dependent HMAC signature equality check.Andrew Arnott2010-07-143-3/+100
| | | | | |
| * | | | | Update to samples README file.Andrew Arnott2010-07-141-5/+5
| | | | | |
* | | | | | Changed the public API for OAuth 2.0 scope from a space-delimited string to ↵Andrew Arnott2010-07-1937-77/+196
| | | | | | | | | | | | | | | | | | | | | | | | a HashSet<string>
* | | | | | Minor sample adjustment.Andrew Arnott2010-07-182-3/+30
| | | | | |
* | | | | | Trimmed out some excess client sample code.Andrew Arnott2010-07-181-12/+4
| | | | | |
* | | | | | Renamed some WRAP terms to oauth2Andrew Arnott2010-07-182-34/+23
| | | | | |
* | | | | | Allowed user agents to have client secrets since they could theoretically ↵Andrew Arnott2010-07-184-23/+9
| | | | | | | | | | | | | | | | | | | | | | | | register their own at install time.
* | | | | | Renamed WebServerAuthorizationServer to just AuthorizationServer.Andrew Arnott2010-07-184-9/+9
| | | | | |
* | | | | | Adjusted SQL project build to reproduce the same SQL it always has.Andrew Arnott2010-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | I don't know why this change is necessary now rather than before.
* | | | | | More work to comply with OAuth 2.0 draft 10.Andrew Arnott2010-07-1715-39/+107
| | | | | |
* | | | | | Merge branch 'oauth2templates' into oauth2Andrew Arnott2010-07-1783-2087/+1781
|\ \ \ \ \ \
| * | | | | | Removed some message parts from an earlier draft of the spec.Andrew Arnott2010-07-172-23/+1
| | | | | | |
| * | | | | | Access token now checked for valid characters to appear in HTTP ↵Andrew Arnott2010-07-171-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Authorization header.
| * | | | | | Changed HTTP Authorization scheme to match OAuth 2.0 draft 10.Andrew Arnott2010-07-171-3/+3
| | | | | | |
| * | | | | | Fixed some more OAuth 2 sample stuff.Andrew Arnott2010-07-153-17/+13
| | | | | | |
| * | | | | | Fixed build breaks in MvcRelyingParty project template.Andrew Arnott2010-07-1413-154/+97
| | | | | | |
| * | | | | | Lots of work toward OAuth 2.0 in project templates and OAuthConsumerWpf sample.Andrew Arnott2010-07-1425-176/+276
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The WebFormsRelyingParty now works with the sample WPF OAuth client in a modified user-agent mode.
| * | | | | | Refactoring database to support OAuth 2.0Andrew Arnott2010-07-1434-1106/+1036
| | | | | | |
| * | | | | | Fixed tab order.Andrew Arnott2010-07-141-18/+18
| | | | | | |
| * | | | | | Worked around WinForms WebBrowser bug.Andrew Arnott2010-07-141-1/+2
| | | | | | |
| * | | | | | More work toward OAuth 2.0 working in the project templates.Andrew Arnott2010-07-1410-57/+73
| | | | | | |
| * | | | | | Worked around db deployment error.Andrew Arnott2010-07-131-1/+1
| | | | | | |
| * | | | | | Work toward the WebFormsRelyingParty project template to use OAuth 2.0 ↵Andrew Arnott2010-07-1223-585/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of 1.0a. It compiles now. (and the MVC one doesn't).
* | | | | | | Applied timing fix to OAuth 2.0 code that checks symmetric secret-based ↵Andrew Arnott2010-07-162-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | signatures.
* | | | | | | Updated OAuth 2 spec to draft 10.Andrew Arnott2010-07-151-381/+546
|/ / / / / /
* | | | | | Whitespace change in .csproj file.Andrew Arnott2010-07-121-23/+23
| | | | | |
* | | | | | Slight UI changes to WPF OAuth 2.0 consumer app.Andrew Arnott2010-07-112-1/+7
| | | | | |
* | | | | | Updated OAuth v2.0 draft to 09.Andrew Arnott2010-07-111-3066/+2554
| | | | | |
* | | | | | Fixed bug in fragment processing.Andrew Arnott2010-07-111-1/+1
| | | | | |
* | | | | | Trying out a refactoring to better suite user agent clients.Andrew Arnott2010-07-1113-83/+195
| | | | | |
* | | | | | Fix build break.Andrew Arnott2010-07-101-1/+1
| | | | | |
* | | | | | Fix build breaks.Andrew Arnott2010-07-091-2/+3
| | | | | |
* | | | | | Merge branch 'v3.4' into oauth2Andrew Arnott2010-07-09143-5121/+8473
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: samples/OAuthConsumer/Web.config src/DotNetOpenAuth/Configuration/DotNetOpenAuth.xsd src/DotNetOpenAuth/DotNetOpenAuth.csproj
| * | | | | StyleCop fixes.Andrew Arnott2010-07-091-3/+3
| | | | | |
| * | | | | Removed dependency on publicize.exe, which crashes now in some branches due ↵Andrew Arnott2010-07-0926-69/+197
| | | | | | | | | | | | | | | | | | | | | | | | to bugs, and publicize.exe doesn't appear to be supported by Microsoft any more, so we might as well get off it.
| * | | | | Fixed warnings that show up with new code contracts version.Andrew Arnott2010-07-033-6/+0
| | | | | |
| * | | | | Updated Code Contracts to 1.4.30629.0Andrew Arnott2010-07-0361-4682/+5295
| | | | | |
| * | | | | Added a way to build DotNetOpenAuth without any UI elements.Andrew Arnott2010-06-242-23/+87
| |\ \ \ \ \
| | * | | | | Added a legitimate project configuration and its own intermediate directory ↵Andrew Arnott2010-06-242-3/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | for a no-UI version of the DLL.
| | * | | | | Project can no build optionally without UI controls.Andrew Arnott2010-06-241-23/+29
| |/ / / / /
| * | | | | Fixes support for OpenID RP controls' ReturnToUrl property to receive values ↵unknown2010-06-221-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | starting with "~/" Fixes Trac #204
| * | | | | When the parent window throws an error in an invocation from the child ↵unknown2010-06-211-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | window, it no longer prevents the child window from closing itself.
| * | | | | Added Yammer OAuth consumer sample. unknown2010-06-217-0/+320
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | (yuck, Yammer is so non-standard.)
| | * | | | | Added Yammer sign-up URL.unknown2010-06-211-1/+1
| | | | | | |
| | * | | | | Slight update to Yammer in an attempt to make results more reliable.unknown2010-06-211-2/+2
| | | | | | |
| | * | | | | Added sample Yammer OAuth 1.0 consumer.Andrew Arnott2010-06-177-0/+320
| |/ / / / / | | | | | | | | | | | | | | | | | | Yammer has a troublesome non-standard implementation of OAuth SP.
| * | | | | Fixed some issues when multiple OpenIdLogin controls are present on the same ↵Andrew Arnott2010-06-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | page.
| * | | | | Fixed NullReferenceException that can occur.Andrew Arnott2010-06-171-0/+1
| | | | | |
| * | | | | Added regression test for bug fixed in 07ca685b32.Andrew Arnott2010-06-161-0/+4
| | | | | |
| * | | | | Corrected regression caused by 07ca685b321e.Andrew Arnott2010-06-161-4/+3
| | | | | |
| * | | | | Fixed exceptions from SimpleUri when handling user-supplied identifiers ↵Andrew Arnott2010-06-151-14/+34
| | | | | | | | | | | | | | | | | | | | | | | | given in non-normalized form.
| * | | | | Fix for OpenIdLogin.EnableViewState="false" for validation control unhandled ↵Andrew Arnott2010-06-151-4/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exception. Fixes Trac #201
| * | | | | A new ohloh.proj project builds the Ohloh instruct file and upload script ↵Andrew Arnott2010-06-1113-6/+213
| | | | | | | | | | | | | | | | | | | | | | | | now. Woot.
| * | | | | A little cleanup.Andrew Arnott2010-06-112-2/+2
| | | | | |