summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replaced explicit SHA* implementation references with generic ones that ↵origin/v3.4Andrew Arnott2012-01-282-8/+8
| | | | | | | | allows .config files to control which implementation to use. This allows FIPS-compliance requirements to be satisfied while using DotNetOpenAuth. Fixes #47
* Fixed NuGet package to support both .NET 3.5 and 4.0.Andrew Arnott2012-01-151-4/+6
|
* NuGet package now built with lib\full subdirectory so nuget knows that the ↵Andrew Arnott2012-01-151-1/+2
| | | | | | full .NET framework profile is required. Fixes #54
* Fixed build break due to bad path to ilmerge.exeunknown2011-11-273-5/+10
|
* Fix for 2-legged OAuth.Andrew Arnott2011-07-041-3/+4
|
* Better logging.Andrew Arnott2011-07-041-2/+3
|
* Works around a difference in behavior (bug?) between ASp.NET web forms Page ↵Andrew Arnott2011-06-271-2/+2
| | | | | | and MVC Razor Page classes that led to incorrect URL rendering. Fixes #41
* Added instruction to getting classic ASP OpenID working on 64-bit Windows ↵Andrew Arnott2011-06-261-0/+6
| | | | | | servers. Thanks to Greg Thomas and "John" for tips on getting this to work.
* Enabled fast up-to-date check in IDE.Andrew Arnott2011-06-261-0/+1
|
* Fixed StyleCop message.Andrew Arnott2011-06-091-2/+2
|
* Merge branch 'v3.4' into sample2leggedAndrew Arnott2011-06-0996-568/+2139
|\
| * Made multipart POST parts allow changing of their ContentDisposition. This ↵Andrew Arnott2011-06-051-2/+2
| | | | | | | | is because file parts to Google are expected to be "form-data" instead of "file".
| * Increased allowable time for perf tests to run.Andrew Arnott2011-05-031-3/+3
| |
| * Removed quiet CPU test step.Andrew Arnott2011-05-031-3/+3
| |
| * Made quiet CPU requirement during perf tests more lenient.Andrew Arnott2011-05-031-1/+1
| |
| * Fix (hopefully) the Win32Exception thrown on the build server during unit tests.Andrew Arnott2011-05-031-1/+2
| |
| * Stabilized performance tests against differences in hardware.Andrew Arnott2011-05-037-65/+715
| |\
| | * Moved the performance measuring method into TestBase.Andrew Arnott2011-05-033-35/+37
| | |
| | * Hid more implementation details of perf measurements.Andrew Arnott2011-05-034-130/+118
| | |
| | * StyleCop clean.Andrew Arnott2011-05-037-385/+196
| | |
| | * Perf tests now compare results against a baseline produced on the test machine.Andrew Arnott2011-05-028-65/+914
| |/ | | | | | | | | | | | | | | | | This uses portions of MeasureIt, which normalizes perf measurements in terms of the machine's speed. We also do other things to reduce noise: * set process and thread priority * wait for the CPU to quiet down before beginning. * set power management to High Performance * wake the CPU up if it's in a low power mode.
| * Updated NUnit.Framework.dll reference assembly.Andrew Arnott2011-05-021-0/+0
| |
| * Incremented version file.Andrew Arnott2011-05-011-1/+1
| |
| * Fixed visible build artifacts in OpenIdOfflineProvider shipping sample.v3.4.7.11121Andrew Arnott2011-05-011-3/+11
| |
| * Removed System.Web.Mvc.dll from the tools.proj output.Andrew Arnott2011-05-011-0/+1
| |
| * Removed the explicit namespaces from all the SuppressMessageAttribute ↵Andrew Arnott2011-04-3021-89/+98
| | | | | | | | references.
| * Suppressed a new FxCop message.Andrew Arnott2011-04-301-0/+1
| |
| * Excluded .vs10x files from nightly drop.Andrew Arnott2011-04-301-0/+1
| |
| * vsix and vsi builds now include VS version in filename.Andrew Arnott2011-04-302-5/+5
| | | | | | | | Closes #22
| * Updated NuGet web.config transform to include another security comment.Andrew Arnott2011-04-302-1/+8
| |
| * Makes the maximum URL length adjustable to accomodate browsers and firewalls.Andrew Arnott2011-04-303-9/+62
| | | | | | | | Closes #29
| * FxCop fixes and suppressions.Andrew Arnott2011-04-2944-341/+540
| | | | | | | | The "CodeAnalysis" configuration now runs clean.
| * Fixed StyleCop issues.Andrew Arnott2011-04-272-1/+2
| |
| * Merge branch 'TrustedProviders' into v3.4Andrew Arnott2011-04-2316-28/+268
| |\
| | * Added sample trustedProviders config tag to all sample RPs.Andrew Arnott2011-04-235-3/+30
| | |
| | * Removed the allowSubPath and allowAdditionalQueryParameters settings from ↵Andrew Arnott2011-04-236-76/+9
| | | | | | | | | | | | the trusted Providers configuration since we don't yet have an implementation to support it, nor users asking for it.
| | * Hooked up trusted provider check during OpenID identifier discovery and ↵Andrew Arnott2011-04-234-20/+46
| | | | | | | | | | | | positive assertion processing at the RP.
| | * Added TrustedProviders setting in OpenID security settings.Andrew Arnott2011-04-197-5/+259
| |/ | | | | | | It doesn't actually alter runtime behavior yet.
| * Added base signature string test for protected resource requests.Andrew Arnott2011-04-171-0/+26
| |
| * Added ILMerge to toolset to remove it as an external dependency on a build ↵Andrew Arnott2011-04-154-0/+105
| | | | | | | | machine.
| * StyleCop fixes.Andrew Arnott2011-04-152-2/+2
| |
| * Corrected copy-paste error.Andrew Arnott2011-04-151-1/+1
| |
| * Fixes OAuth 1.0 signatures on Service Providers for messages that omit the ↵Andrew Arnott2011-04-157-1/+90
| | | | | | | | | | | | optional oauth_version parameter. Closes #28
| * Added missing error handling transaction reversal code.Andrew Arnott2011-04-131-0/+9
| |
| * Saved 80% of request/response size by gzip compressing Google OAuth requests.Mike Lim2011-04-131-0/+5
| |
| * Fixed build breaks and StyleCop messages from prior commit.Andrew Arnott2011-04-066-21/+34
| |
| * DetectGoogleSession sample now correctly identifies the successful ↵Andrew Arnott2011-04-063-4/+24
| | | | | | | | Authenticated result.
| * Merge branch 'NegativeAssertionExtensions' into v3.4Andrew Arnott2011-04-0510-39/+172
| |\
| | * Added DetectGoogleSession sample.Andrew Arnott2011-04-056-0/+132
| | | | | | | | | | | | Closes #21
| | * Promoted OpenID extension handling to the base indirect response class so ↵Andrew Arnott2011-04-053-38/+39
| | | | | | | | | | | | | | | | | | that even negative responses can include untrusted extensions. Although support for an extension in a negative assertion is not in the spec, Google exercises this ability for their x-has-session addition to the UI extension response.
| | * UIRequest extension is no longer sealed.Andrew Arnott2011-04-051-1/+1
| |/ | | | | | | This makes it easier to add non-standard message parts such as Google's x-has-session parameter to the UI extension.
* | Added a bit more to the sample 2-legged oauth consumer.Andrew Arnott2011-04-061-1/+4
| |
* | Added 2-legged OAuth consumer sample.Andrew Arnott2011-04-055-0/+138
|/
* Added to .gitignore file.Andrew Arnott2011-04-051-0/+1
|
* Switch from Properties["OriginalHttpRequestUri"] to Via property.Andrew Arnott2011-04-042-2/+2
| | | | Closes #19
* Fixed for StyleCop that were exposed by StyleCop upgrade.Andrew Arnott2011-03-312-2/+2
|
* The OAuth MaximumRequestTokenTimeToLive setting is now configurable ↵Andrew Arnott2011-03-316-17/+54
| | | | | | programmatically (as well as the web.config way that was already available). Closes #18
* Fixed builds of DotNetOpenAuth that target CLR4.Andrew Arnott2011-02-162-3/+14
|
* Updated documentation for web.config Intellisense.Andrew Arnott2011-02-091-2/+1
|
* Removes the OpenIdOfflineProvider's shipping dependency on ↵Andrew Arnott2011-01-121-0/+15
| | | | | | Microsoft.Contracts.dll. Closes #7
* Applied Google anonymous consumer key and secret to OAuth consumer sample.Andrew Arnott2011-01-071-2/+2
|
* Attempt to make a jittery test more reliable.Andrew Arnott2010-12-291-1/+1
|
* Adds the missing attributes on OpenIdRelyingPartyControlBase that make its ↵Andrew Arnott2010-12-294-4/+8
| | | | | | Extensions property settable inside an ASPX page. Closes #6
* Added another coverage report.Andrew Arnott2010-12-271-0/+715
| | | | http://gasparnagy.blogspot.com/2010/09/detailed-report-for-partcover-in.html
* Applied fixes from StackOverflow.Andrew Arnott2010-12-272-8/+7
| | | | http://stackoverflow.com/questions/1895304/how-do-i-include-full-partcover-results-with-teamcity-5
* Whitespace change, in preparation for file repair.Andrew Arnott2010-12-272-95/+136
|
* Added PartCover v4.0.11129.Andrew Arnott2010-12-2717-0/+49158
|
* Added missing NUnit binary files.Andrew Arnott2010-12-27236-620/+24013
|
* Fix for broken MVC project template.Andrew Arnott2010-12-266-7/+7
| | | | Closes #5
* Drop and tools archives are now created *both* as .7z and .zip.Andrew Arnott2010-12-232-12/+10
|
* Incremented version number to v3.4.7.Andrew Arnott2010-12-231-1/+1
|
* Fixed build break in NuPkg.Andrew Arnott2010-12-231-4/+0
|
* Yadis discovery that yields a 404 will now try again with caching disabled ↵v3.4.6.10357Andrew Arnott2010-12-231-1/+18
| | | | | | if the 404 response came from the cache. Closes #4.
* Added some more web.config transform goodness to NuGet.Andrew Arnott2010-12-231-0/+14
|
* Added note of an optional dependency on log4net.Andrew Arnott2010-12-231-0/+4
|
* NuGet packages now built nightly. Woot!Andrew Arnott2010-12-2312-0/+259
|
* Upgraded build tasks to MSBuild 4.0 references.Andrew Arnott2010-12-225-14/+15
|
* Build system can now generate .zip OR .7z on demand given a build property.Andrew Arnott2010-12-225-4/+5
|
* Tools and drop .zips are now .7z as well due to their much smaller size.Andrew Arnott2010-12-222-7/+14
|
* The nightly build now creates deployable archives of docs and samples in the ↵Andrew Arnott2010-12-2114-10/+194
| | | | .7z format.
* Samples and HTML docs are now zipped up and included in drop directory for ↵Andrew Arnott2010-12-214-40/+39
| | | | subsequent publishing.
* Fixed an MSTest-based unit test to be based on NUnit instead.Andrew Arnott2010-12-202-4/+3
|
* Fixed sample bug reported by Nikko.Andrew Arnott2010-12-181-2/+1
|
* Fix for loading the YAHOO js library (wrong method was called)chris van de steeg2010-11-271-1/+1
|
* Improved error reporting around ArgumentException reported by:Andrew Arnott2010-11-263-1/+17
| | | | | James A. Davis Pariveda Solutions
* Fixed tools .zip build break.Andrew Arnott2010-11-251-0/+1
|
* Fixed OpenID Offline Provider build .targets so that it includes log4net.dll ↵Andrew Arnott2010-11-242-5/+11
| | | | which is required.
* Fixed AOL sreg interop bug and added regression test.Andrew Arnott2010-11-244-11/+23
| | | | Thanks Dan Friedmann for finding this issue.
* Fixed bug in sample where the DateTime.Kind on an OAuth token was being lost ↵Andrew Arnott2010-10-291-0/+29
| | | | by the database.
* Typo fix.Andrew Arnott2010-10-291-1/+1
|
* Added comment about where a token might be saved.Andrew Arnott2010-10-291-1/+5
|
* Fixed failing unit test.Andrew Arnott2010-10-201-1/+1
|
* Added a response stream to 301 redirect messages so that filters like ↵Andrew Arnott2010-10-202-2/+17
| | | | WebSense will let them through.
* Added no-cache headers to all outgoing response messages.Andrew Arnott2010-10-201-1/+9
|
* Fixed StyleCop error.Andrew Arnott2010-10-061-0/+1
|
* Added email to the requested attributes of the identity-less login sample, ↵Andrew Arnott2010-10-063-8/+24
| | | | and fixed the default button.
* Improved OpenID Provider MVC sample to support immediate mode and anonymous ↵Andrew Arnott2010-10-064-31/+200
| | | | OpenID requests.
* Added a provider model to substitute in a means for obtaining URLs that ↵Andrew Arnott2010-09-158-50/+134
| | | | | | download embedded resource streams. This unblocks dasBlog in their pursuit of a non-Page ASP.NET pipeline.
* Exposed OP Endpoint to OpenID RP COM Server.Andrew Arnott2010-09-061-0/+7
|
* Improved documentation of classic ASP scenario slightly.Andrew Arnott2010-09-042-7/+14
|