summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed OAuth .config types.Andrew Arnott2011-10-101-1/+1
|
* Fixed .config files to refer to the DNOA config types explicitly. This fixed ↵Andrew Arnott2011-10-0916-80/+80
| | | | the OpenIdOfflineProvider WPF sample.
* Fixes web.config references to OpenID behaviors that have changed name.Andrew Arnott2011-10-0916-20/+25
| | | | Also adds a build task that fixes up references to the unified assembly.
* Fixed up XAML and ASPX references to the unified DotNetOpenAuth assembly.Andrew Arnott2011-10-096-0/+68
|
* Fixed handling of targeting .NET 4.5Andrew Arnott2011-10-091-2/+2
|
* Fixed build warnings.Andrew Arnott2011-10-094-19/+19
|
* Fixed build breaks when targeting CLR 4.Andrew Arnott2011-10-074-15/+51
|
* Fixed web.config files.Andrew Arnott2011-09-2814-14/+84
|
* Fixed sample OP.Andrew Arnott2011-09-281-1/+1
|
* Fixed OAuth failure due to removing ccrewrite.Andrew Arnott2011-09-282-2/+0
|
* Merge branch 'master' into splitDllsAndrew Arnott2011-09-2812-14/+46
|\
| * Fixed line endings messed up by github.Andrew Arnott2011-09-281-109/+109
| |
| * Reverted part of commit 2704b0fb445.Andrew Arnott2011-09-2812-14/+30
| | | | | | | | Reverses some of the Send->Respond changes made that are or may be invoked from ASP.NET web forms, since web forms will render HTML after the end of the protocol message.
| * Fixed StyleCop issues.Andrew Arnott2011-09-231-97/+97
| |
| * Merge pull request #50 from oyvindkinsey/masterAndrew Arnott2011-09-231-3/+21
| |\ | | | | | | Improvements to the OAuthPrincipal
| | * Added a method that creates a GenericPrincipal based on the current instance ↵Oyvind Sean Kinsey2011-09-221-0/+9
| | | | | | | | | | | | of OAuthPrincipal.
| | * Exposed the roles collection so that we can convert this to a different kind ↵Oyvind Sean Kinsey2011-09-221-3/+12
| |/ | | | | | | of principal if necessary.
* | Added dotnetopenauth.proj to build sln file.Andrew Arnott2011-09-201-0/+1
| |
* | Fixed non-serializable Identifier and Realm classes.Andrew Arnott2011-09-202-0/+24
| |
* | Fixed a bunch of ASPX references to the now absent dotnetopenauth.dll assembly.Andrew Arnott2011-09-2024-34/+26
| | | | | | | | <%@ Register Assembly="DotNetOpenAuth
* | Removed some lingering ccrewrite.exe dependent code.Andrew Arnott2011-09-207-12/+12
| |
* | Removed unwanted binaries from samples directories in drop layout.Andrew Arnott2011-09-202-5/+4
| |
* | Fixed use of ILMerge so that it doesn't make all DNOA types internal.Andrew Arnott2011-09-202-7/+7
| |
* | Fixed build breaks after code contract reference assembly generation removal.Andrew Arnott2011-09-194-4/+8
| |
* | Updated .gitignore.Andrew Arnott2011-09-181-1/+1
| |
* | StyleCop and other compiler warning fixes.Andrew Arnott2011-09-1816-34/+154
| |
* | All product assemblies build without ccrewrite.exe now.Andrew Arnott2011-09-18189-765/+781
| |
* | The external libraries no longer require ccrewrite.Andrew Arnott2011-09-172-0/+2
| |
* | DotNetOpenAuth.Messaging.UI no longer requires ccrewrite.exeAndrew Arnott2011-09-173-5/+3
| |
* | Added [Pure] attribute to validation methods.Andrew Arnott2011-09-172-14/+16
| |
* | DotNetOpenAuth.Messaging no longer relies on ccrewrite.exeAndrew Arnott2011-09-1752-352/+665
| |
* | Fixed help compilation somewhat. (The generated files only include Code ↵Andrew Arnott2011-09-153-6/+18
| | | | | | | | Contract help so far).
* | Fixed up project references in samples and project templates.Andrew Arnott2011-09-066-15/+28
| |
* | Fixed some build issues with drop.projAndrew Arnott2011-09-058-9/+8
| | | | | | | | Layouts can now be built.
* | Fixed a couple of build breaks exposed by drop.proj.Andrew Arnott2011-09-022-3/+8
| |
* | Added a .gitignore file to src directory.Andrew Arnott2011-09-021-0/+3
| |
* | Fixed up signing and merging of the contracts assemblies.Andrew Arnott2011-09-027-142/+327
| |
* | Added a DotNetOpenAuth.proj that builds a unified assembly.Andrew Arnott2011-09-022-1/+68
| |
* | Fixed failing OAuth Appendix test.Andrew Arnott2011-09-021-6/+4
| |
* | Fixed xml comment.Andrew Arnott2011-09-021-1/+1
| |
* | Only the OAuth appendix test is failing.Andrew Arnott2011-09-024-24/+11
| | | | | | | | Web sites still work.
* | Finally got another unit test passing after sorting out ↵Andrew Arnott2011-09-023-4/+34
| | | | | | | | ConfigurationSectionGroup issues.
* | Fixed missing check_auth message factory at OP.Andrew Arnott2011-08-281-0/+2
| | | | | | | | Fixes a few more unit tests.
* | Fix for failing unit tests.Andrew Arnott2011-08-281-1/+3
| |
* | Fixed basic association test.Andrew Arnott2011-08-2321-156/+288
| |
* | Fixed a bug in configuration section handling that caused even simple unit ↵Andrew Arnott2011-08-154-5/+12
| | | | | | | | tests to fail.
* | Fixed the webResourceUrlProvider configuration element.Andrew Arnott2011-08-097-47/+43
| |
* | Fixed up OpenIdInfoCardSelector button and the association response in the ↵Andrew Arnott2011-08-0917-166/+426
| | | | | | | | message factory.
* | C# warnings work.Andrew Arnott2011-08-0720-33/+29
| |
* | StyleCop work.Andrew Arnott2011-08-0752-198/+482
| |
* | A few stylecop fixes.Andrew Arnott2011-08-0314-46/+76
| |
* | The test project now builds, so the whole solution does.Andrew Arnott2011-08-0222-88/+229
| |
* | The whole solution now builds except for the test project.Andrew Arnott2011-08-027-71/+207
| |
* | Samples now build.Andrew Arnott2011-08-0220-8/+128
| |
* | Broke out the UI part of OAuth2 client into its own assembly.Andrew Arnott2011-08-017-11/+118
| |
* | Broke out OAuth 2 into 4 separate assemblies.Andrew Arnott2011-08-0118-16/+337
| |
* | Distributed some more OAuth code to specific libraries.Andrew Arnott2011-07-316-3/+3
| |
* | Moved more OAuth code from the common library to the individual Consumer or ↵Andrew Arnott2011-07-3121-167/+288
| | | | | | | | SP ones.
* | Split OAuth 1.0 assemblies.Andrew Arnott2011-07-3113-5/+290
| |
* | Split up InfoCard into two assemblies.Andrew Arnott2011-07-3131-48/+148
| |
* | Basic OpenID RP login sample working again.Andrew Arnott2011-07-316-18/+33
| |
* | Organized projects into solution folders.Andrew Arnott2011-07-271-4/+25
| |
* | Added Messaging.UI assembly.Andrew Arnott2011-07-2713-6/+135
| |
* | Extracted OpenID UI project.Andrew Arnott2011-07-2711-3/+129
| |
* | Broke out OP UI project.Andrew Arnott2011-07-278-3/+119
| |
* | Extracted OpenID RP UI project.Andrew Arnott2011-07-2736-31/+154
| |
* | OpenID RP and OP projects build now.Andrew Arnott2011-07-2541-78/+285
| |
* | More work toward divided OpenID projects.Andrew Arnott2011-07-2525-42/+81
| |
* | Splitting up the OpenID profile into OpenID RP and OP. The core OpenID DLL ↵Andrew Arnott2011-07-20180-1818/+2644
| | | | | | | | compiles, but the RP and OP ones do not.
* | Added missing imports.Andrew Arnott2011-07-123-0/+3
| |
* | Removed redundant tag prefix definitions.Andrew Arnott2011-07-121-4/+0
| |
* | Moved all the redundant project settings into a common .props file.Andrew Arnott2011-07-116-1470/+153
| |
* | Functionality and one sample is fixed up enough to permit an OpenID login to ↵Andrew Arnott2011-07-114-13/+28
| | | | | | | | complete successfully.
* | Fixed fully-qualified type name bug.Andrew Arnott2011-07-101-1/+1
| |
* | Trying to fix up configuration section code.Andrew Arnott2011-07-1026-81/+89
| |
* | Fixed build breaks in OpenIdOfflineProvider.Andrew Arnott2011-07-101-0/+10
| | | | | | | | No more build breaks, at least in the solution file.
* | Build breaks in project templates now fixed as well.Andrew Arnott2011-07-103-0/+60
| |
* | Fixed compile errors in samples.Andrew Arnott2011-07-1016-11/+151
| |
* | Fixed build breaks in test project.Andrew Arnott2011-07-105-9/+31
| |
* | StyleCop fixes.Andrew Arnott2011-07-103-4/+7
| |
* | OAuth2 project builds.Andrew Arnott2011-07-022-0/+12
| |
* | OAuth project now builds.Andrew Arnott2011-07-028-18/+56
| |
* | OpenID project now builds.Andrew Arnott2011-07-0221-91/+148
| | | | | | | | * Many of the resource items (resx, png) are improperly declared in the project file.
* | Added missing AssemblyInfo.cs files.Andrew Arnott2011-07-026-3/+173
| |
* | InfoCard project now builds.Andrew Arnott2011-07-025-2/+64
| |
* | Messaging project now compiles.Andrew Arnott2011-07-0211-101/+96
| |
* | First pass at dividing DotNetOpenAuth features into separate assemblies.Andrew Arnott2011-07-01515-490/+1696
|/ | | | Nothing compiles at this point.
* Added a web browser control to facilitate OAuth 2 client authorization.Andrew Arnott2011-06-287-55/+397
|
* API simplification.Andrew Arnott2011-06-281-7/+22
|
* A bit of public API cleanup and code consolidation in ClientBase.Andrew Arnott2011-06-274-31/+52
|
* Added OAuth 2 class diagram.Andrew Arnott2011-06-272-0/+34
|
* Fixed bad merge.Andrew Arnott2011-06-273-0/+0
|
* Merge branch 'v3.4'Andrew Arnott2011-06-268-2/+149
|\ | | | | | | | | Conflicts: samples/OAuthClient/OAuthClient.csproj
| * 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".
| * | 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
| | |