summaryrefslogtreecommitdiffstats
path: root/projecttemplates
Commit message (Collapse)AuthorAgeFilesLines
* Removes project templates.Andrew Arnott2013-06-16259-48637/+0
| | | | These haven't run correctly for many months anyway, and they'd be horribly out-dated even if they did work.
* Consolidates two OpenID memory app storesAndrew Arnott2013-03-281-1/+1
| | | | | | | The StandardRelyingPartyApplicationStore and StandardProviderApplicationStore were equivalent, and thus redundant. There was also nothing OpenID specific about them. So this consolidates and renames these types to better reflect their general purpose.
* Changed all ASP.NET async void event handlers to use RegisterAsyncTask, ↵Andrew Arnott2013-03-041-40/+68
| | | | which avoids bugs in ASP.NET.
* A few more fixes.Andrew Arnott2013-03-041-0/+3
|
* Switched Channel to receiving messages via HttpRequestMessage as well.Andrew Arnott2013-03-046-17/+11
|
* Removes OAuthPrincipal in favor of ClaimsPrincipal.Andrew Arnott2013-03-031-1/+2
|
* More warning fixes.Andrew Arnott2013-02-101-0/+3
|
* C# compiler warning fixes.Andrew Arnott2013-02-101-1/+1
|
* Fixes up WCF OAuth 1 samples.Andrew Arnott2013-02-104-39/+16
|
* Removes unnecessary .config settings.Andrew Arnott2013-02-092-2/+0
|
* Fixes ASP.NET controls to be async.Andrew Arnott2013-02-092-2/+8
|
* Removed references to obsolete AsyncController.Andrew Arnott2013-01-272-2/+2
|
* projecttemplates now build.Andrew Arnott2013-01-2715-106/+237
|
* Fixed a bunch more samples.Andrew Arnott2013-01-232-2/+2
|
* Fixes up some missing references.Andrew Arnott2012-12-295-14/+28
| | | | Upgrades MVC dependency from 1.0 to 3.0, via NuGet.
* System.Net.Http references recreated using NuGet.Andrew Arnott2012-12-282-4/+11
|
* Retargets exclusively to .NET 4.5 now.Andrew Arnott2012-12-284-4/+4
|
* ASPXCodeBehind noise.Andrew Arnott2012-10-302-0/+13
|
* Authorization servers can override the granted scopes for all grant types.Andrew Arnott2012-10-301-24/+10
| | | | | | This change adds the ability for authorization servers to override the granted scopes of client credential and resource owner password grant types. Fixes #225
* Added NuGet package dependency and fixed build breaks in samples.Andrew Arnott2012-09-271-0/+4
|
* Project templates no longer contain both unified and individual assemblies.Andrew Arnott2012-06-101-3/+4
| | | | Fixes #106
* Added to .gitignoreAndrew Arnott2012-06-061-0/+2
|
* Special handling for client credential grant typeAndrew Arnott2012-05-291-2/+23
| | | | | | | | Access token requests that carry client credential grants are now specially handled and signal to the authorization server that an authorization record should be created. More work toward #138
* Resource owner password grant method renameAndrew Arnott2012-05-291-2/+4
| | | | | | | | | | | | Renamed IAuthorizationServerHost.IsResourceOwnerCredentialValid to TryAuthorizeResourceOwnerCredentialGrant so that authorization servers are prepared to approve refresh tokens that may be issued as a result of a resource owner password grant. This also removes some of the "validation" that wasn't really doing anything useful for resource owner password grant types. Toward an eventual fix for #138
* Authorization Server hosts now instantiate their own AccessTokens rather ↵Andrew Arnott2012-04-251-2/+5
| | | | | | | than just parameters. AccessTokens are now serialized via a virtual method on that instance. Fixes #38, I think.
* Fixes access denial errors from OAuth 2 resource servers so they include the ↵Andrew Arnott2012-04-222-7/+4
| | | | | | required parameters in their WWW-Authenticate headers. Fixes #124
* Replaces ResourceServer.VerifyAccess with a better pattern for error handling.Andrew Arnott2012-04-212-22/+24
| | | | Fixes #122
* We have HTTP Basic client authentication working now in OAuth 2.Andrew Arnott2012-04-182-13/+0
|
* Authorization server hosts may now provide canonical usernames for the ↵Andrew Arnott2012-04-161-1/+5
| | | | | | resource owner given correct resource owner credentials. Fixes #103
* Authorization servers now gain insight into the calling client when ↵Andrew Arnott2012-04-151-1/+5
| | | | | | validating resource owner credential grant type requests. Fixes #101
* Fixed nightly build to include the deployable archives for docs and samples.Andrew Arnott2012-04-151-1/+1
| | | | Also fixed up some build breaks that can occur when building certain project targets with explicit TFV properties, which seemed related to the problem.
* Fixed project templates to be willing to target more VS versions and target ↵Andrew Arnott2012-04-142-2/+12
| | | | frameworks.
* Adds missing .xml files to project templates.Andrew Arnott2012-04-131-1/+1
| | | | Toward fix for #106
* Renamed IAuthorizationServer to IAuthorizationServerHost.Andrew Arnott2012-04-081-2/+2
| | | | To avoid confusion with the concrete class AuthorizationServer.
* Revert "Updated default VSVersion for database project so it doesn't build ↵Andrew Arnott2012-04-061-2/+2
| | | | | | | | | break" It turns out that the .sqlproj file format is supported on Dev10 if the appropriate extension is installed. This reverts commit 545c574e3d474931b75c213042f29b26ec62993b.
* Merge branch 'v4.0'Andrew Arnott2012-04-051-2/+2
|\ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.OAuth2.Client/DotNetOpenAuth.OAuth2.Client.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/DotNetOpenAuth.OAuth2.ResourceServer.csproj src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs
| * Corrected nightly build break due to projecttemplates.proj referencing the ↵Andrew Arnott2012-04-011-2/+2
| | | | | | | | old .dbproj.
| * Updated default VSVersion for database project so it doesn't build breakAndrew Arnott2012-04-011-2/+2
| | | | | | | | on Dev10 command prompts.
* | Fix for build break due to trying to compile samples when targeting .NET 3.5.Andrew Arnott2012-04-031-2/+2
| |
* | Migrate all samples to target .NET 4.0 and use IIS Express (where available).Andrew Arnott2012-04-027-1082/+1006
| | | | | | | | | | | | InfoCardRelyingParty sample left out because it seems to cause input validation trouble. Fixes #108
* | AccessToken is now a public class.Andrew Arnott2012-04-011-7/+6
| | | | | | | | | | | | | | | | | | | | | | Resource Servers can now handle access tokens that are issued for a client's data (not a 3rd party resource owner's). Client Identifiers are no longer included in access tokens for unauthenticated clients. More work needed on IAccessTokenAnalyzer and the access token formatter. We need to generalize the serialization itself so folks can use JWT, etc. We also still need access token to have a host-defined map of claims. Fixes #104 Fixes #102
* | Fixed typo.Andrew Arnott2012-04-011-1/+1
| |
* | Allows the authorization server to store merely the hashes of client secrets.Andrew Arnott2012-04-011-8/+21
| | | | | | | | Fixes #92
* | Corrected old name of nonce store property.Andrew Arnott2012-04-011-1/+1
| |
* | Let Dev11 dirty project files.Andrew Arnott2012-03-312-14/+9
| |
* | Merge branch 'dev11' into v4.0Andrew Arnott2012-03-3113-90/+456
|\ \ | |/ | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * Migrated to Dev11 project files. They should all open in Dev10 still ↵Andrew Arnott2012-03-3113-90/+456
| | | | | | | | | | | | | | | | (except the new .sqlproj). This reverts commit a5e59982c1b66ebabd4c6436d4d3d177d2440649. Fixes #96
| * Revert "Migrated to Dev11 project files. They should all open in Dev10 ↵Andrew Arnott2012-03-3013-456/+90
| | | | | | | | | | | | | | still (except the new .sqlproj)." This reverts commit dc59bdbc51fce4ad19cb41e5ca610915c2e99789, reversing changes made to e5b8e2e4bd925ef6967c264644e4d67749b5b3de.
| * Restored script generation in project template to fix build break (Until we ↵Andrew Arnott2012-03-301-1/+1
| | | | | | | | can figure out a way to really use .dacpac and sqlpackage/msdeploy.)
| * Merged v4.0Andrew Arnott2012-03-301-3/+3
| |\
| * | Removed this obsession the db has with Path1, which is meaningless.Andrew Arnott2012-03-304-15/+1
| | |
| * | Fixed sqlproj sql deployment to RelyingPartyLogic assembly.Andrew Arnott2012-03-273-7/+20
| | |
| * | Updated more references to MVC 3.Andrew Arnott2012-03-265-305/+9
| | |
| * | Fixed Permissions.sql path.Andrew Arnott2012-03-211-1/+1
| | |
| * | Resolved the never-ending Dev10 upgrade of the solution.Andrew Arnott2012-03-211-2/+0
| | | | | | | | | | | | The entire solution was being upgraded because this one project had a couple properties in it.
| * | Merge branch 'v4.0' into dev11Andrew Arnott2012-03-219-29/+15
| |\ \ | | | | | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * | | Downgraded MVC projects from MVC 4 to MVC 3.Andrew Arnott2012-03-211-1/+1
| | | | | | | | | | | | | | | | MVC 4 is still in beta, and MVC 3 is sufficient for Dev11 compatibility.
| * | | Removed extra backup location tags from project files.Andrew Arnott2012-03-201-1/+0
| | | |
| * | | Completed Dev11 upgrade. The file churn on every file open is finally over.Andrew Arnott2012-03-201-2/+2
| | | | | | | | | | | | | | | | This required upgrading the MVC projects to MVC 4.
| * | | more noise.Andrew Arnott2012-02-241-2/+2
| | | |
| * | | more changes.Andrew Arnott2012-02-241-1/+1
| | | |
| * | | even more noise.Andrew Arnott2012-02-242-4/+7
| | | |
| * | | Additional changes.Andrew Arnott2012-02-244-6/+659
| | | |
| * | | Project compatibility upgrades for Dev11.Andrew Arnott2012-02-242-8/+18
| | | |
* | | | Merge branch 'master' into oauth2refactorAndrew Arnott2012-03-242-4/+4
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * | | Upgraded MVC samples from MVC v2 to v3.Andrew Arnott2012-03-222-4/+4
| | |/ | |/|
* | | Fixed build breaks in the solution.Andrew Arnott2012-03-173-0/+16
| | |
* | | Redistributed OAuth2 code into their more specific assemblies.Andrew Arnott2012-03-161-24/+9
|/ /
* | Access token endpoint now can respond with appropriate errors.Andrew Arnott2012-03-142-13/+2
| |
* | Fixed StyleCop settings files by removing the deprecated "Microsoft." prefixes.Andrew Arnott2012-03-111-3/+3
| |
* | Applied all the StyleCop fixes necessary by the StyleCop 4.7 upgrade.Andrew Arnott2012-03-102-2/+2
| |
* | HttpRequestInfo ctors are now internal, and publicly we have staticAndrew Arnott2012-03-051-2/+2
| | | | | | | | factory methods that return HttpRequestBase instances.
* | Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-057-13/+10
|/ | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* Adds support for the resource owner password credential grant.Andrew Arnott2012-02-241-0/+14
| | | | Fixes #72
* Fixed StyleCop messages.Andrew Arnott2012-02-201-9/+11
|
* Added another frame busting technique to make the authorization server more ↵Andrew Arnott2012-02-203-0/+41
| | | | secure.
* Fixed build breaks.Andrew Arnott2012-02-194-6/+46
|
* Renamed IConsumerDescription to IClientDescription.Andrew Arnott2012-02-122-5/+5
|
* Added DotNetOpenAuth.OAuth.Common to contain dependencies shared between ↵Andrew Arnott2012-02-081-0/+4
| | | | | | OAuth 1 and OAuth 2. Related to and closes #71
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-0530-59/+59
| | | | Fixes #66
* Fixes references in project templates to dotnetopenauth so that they target ↵Andrew Arnott2012-02-011-0/+17
| | | | | | the unified assembly. Fixes #63
* Fixed OpenIdInfoCardSelector control on project template.v4.0.0.12030-Beta1Andrew Arnott2012-01-303-8/+8
|
* Fixed rendering of OpenIdSelector ASP.NET control.Andrew Arnott2012-01-302-4/+9
|
* Fixed .aspx <%@ Register %> tags to account for the split DLL names.Andrew Arnott2012-01-306-11/+8
|
* Fixed references to old DNOA.Messaging assembly in .config files.Andrew Arnott2012-01-292-6/+6
|
* Renamed assembly DotNetOpenAuth.Messaging(.UI) to DotNetOpenAuth.Core(.UI)Andrew Arnott2012-01-123-8/+8
|
* Moved behaviors into their own RP vs. OP namespaces.Andrew Arnott2011-10-212-2/+2
|
* Fixed .config files to refer to the DNOA config types explicitly. This fixed ↵Andrew Arnott2011-10-092-10/+10
| | | | the OpenIdOfflineProvider WPF sample.
* Fixes web.config references to OpenID behaviors that have changed name.Andrew Arnott2011-10-092-2/+2
| | | | Also adds a build task that fixes up references to the unified assembly.
* Fixed web.config files.Andrew Arnott2011-09-282-2/+12
|
* Fixed up project references in samples and project templates.Andrew Arnott2011-09-061-11/+14
|
* Fixed some build issues with drop.projAndrew Arnott2011-09-051-1/+1
| | | | Layouts can now be built.
* Fixed xml comment.Andrew Arnott2011-09-021-1/+1
|
* The whole solution now builds except for the test project.Andrew Arnott2011-08-024-70/+142
|
* Trying to fix up configuration section code.Andrew Arnott2011-07-101-1/+1
|
* Build breaks in project templates now fixed as well.Andrew Arnott2011-07-103-0/+60
|
* First pass at dividing DotNetOpenAuth features into separate assemblies.Andrew Arnott2011-07-013-12/+2
| | | | Nothing compiles at this point.
* Fixed StyleCop messages.Andrew Arnott2011-06-232-2/+2
|
* Merging in support for and sample of implicit grants.Andrew Arnott2011-06-235-35/+80
|\
| * Split up the PrepareAccessToken method.Andrew Arnott2011-06-221-5/+27
| |