summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty
Commit message (Collapse)AuthorAgeFilesLines
* Removes project templates.Andrew Arnott2013-06-1690-11612/+0
| | | | These haven't run correctly for many months anyway, and they'd be horribly out-dated even if they did work.
* 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-042-4/+4
|
* Fixes up WCF OAuth 1 samples.Andrew Arnott2013-02-102-20/+8
|
* Removes unnecessary .config settings.Andrew Arnott2013-02-091-1/+0
|
* Fixes ASP.NET controls to be async.Andrew Arnott2013-02-091-1/+4
|
* projecttemplates now build.Andrew Arnott2013-01-276-10/+65
|
* Fixes up some missing references.Andrew Arnott2012-12-292-2/+11
| | | | Upgrades MVC dependency from 1.0 to 3.0, via NuGet.
* Retargets exclusively to .NET 4.5 now.Andrew Arnott2012-12-281-1/+1
|
* ASPXCodeBehind noise.Andrew Arnott2012-10-301-0/+11
|
* We have HTTP Basic client authentication working now in OAuth 2.Andrew Arnott2012-04-181-11/+0
|
* Migrate all samples to target .NET 4.0 and use IIS Express (where available).Andrew Arnott2012-04-022-72/+22
| | | | | | InfoCardRelyingParty sample left out because it seems to cause input validation trouble. Fixes #108
* Let Dev11 dirty project files.Andrew Arnott2012-03-311-12/+5
|
* Merge branch 'dev11' into v4.0Andrew Arnott2012-03-311-4/+9
|\ | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * Migrated to Dev11 project files. They should all open in Dev10 still ↵Andrew Arnott2012-03-311-4/+9
| | | | | | | | | | | | | | | | (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-301-9/+4
| | | | | | | | | | | | | | still (except the new .sqlproj)." This reverts commit dc59bdbc51fce4ad19cb41e5ca610915c2e99789, reversing changes made to e5b8e2e4bd925ef6967c264644e4d67749b5b3de.
| * Merge branch 'v4.0' into dev11Andrew Arnott2012-03-212-7/+2
| |\ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.sln
| * | Project compatibility upgrades for Dev11.Andrew Arnott2012-02-241-4/+9
| | |
* | | Fixed build breaks in the solution.Andrew Arnott2012-03-171-0/+4
| |/ |/|
* | Access token endpoint now can respond with appropriate errors.Andrew Arnott2012-03-141-7/+1
| |
* | Replaced API requirements for HttpRequestInfo with HttpRequestBase (new in ↵Andrew Arnott2012-03-052-1/+2
|/ | | | | | .NET 3.5 SP1). This makes us more friendly to MVC as well as mock-based unit testing.
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-0512-23/+23
| | | | Fixes #66
* 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-305-10/+7
|
* Fixed references to old DNOA.Messaging assembly in .config files.Andrew Arnott2012-01-291-3/+3
|
* Renamed assembly DotNetOpenAuth.Messaging(.UI) to DotNetOpenAuth.Core(.UI)Andrew Arnott2012-01-121-4/+4
|
* Moved behaviors into their own RP vs. OP namespaces.Andrew Arnott2011-10-211-1/+1
|
* Fixed .config files to refer to the DNOA config types explicitly. This fixed ↵Andrew Arnott2011-10-091-5/+5
| | | | the OpenIdOfflineProvider WPF sample.
* Fixes web.config references to OpenID behaviors that have changed name.Andrew Arnott2011-10-091-1/+1
| | | | Also adds a build task that fixes up references to the unified assembly.
* Fixed web.config files.Andrew Arnott2011-09-281-1/+6
|
* The whole solution now builds except for the test project.Andrew Arnott2011-08-021-0/+24
|
* Build breaks in project templates now fixed as well.Andrew Arnott2011-07-101-0/+20
|
* First pass at dividing DotNetOpenAuth features into separate assemblies.Andrew Arnott2011-07-011-4/+1
| | | | Nothing compiles at this point.
* Added OutgoingWebResponse.Respond method to replace its Send method, and ↵Andrew Arnott2011-06-231-1/+1
| | | | | | avoid the ThreadAbortException that is no longer the recommended approach. Fixes #40
* Merge branch 'v3.4' into oauth2Andrew Arnott2011-05-061-0/+6
|\ | | | | | | | | | | | | | | | | Conflicts: samples/OAuthServiceProvider/Code/Global.cs src/DotNetOpenAuth/Configuration/DotNetOpenAuth.xsd src/DotNetOpenAuth/DotNetOpenAuth.csproj src/DotNetOpenAuth/Messaging/Channel.cs src/version.txt
| * Added sample trustedProviders config tag to all sample RPs.Andrew Arnott2011-04-231-0/+6
| |
* | Collapsed the AuthorizationServerBase and AuthorizationServer classes.Andrew Arnott2010-07-261-1/+1
| |
* | Smoothing out some rough edges in OAuth code.Andrew Arnott2010-07-231-10/+7
| |
* | Merge branch 'v3.4' into oauth2Andrew Arnott2010-07-211-0/+2
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | 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
| * Added StyleCop to toolset and regular command line build.Andrew Arnott2010-07-191-0/+2
| | | | | | | | As part of this, all projects now import EnlistmentInfo.props and .targets.
* | Changed the public API for OAuth 2.0 scope from a space-delimited string to ↵Andrew Arnott2010-07-191-2/+3
| | | | | | | | a HashSet<string>
* | Lots of work toward OAuth 2.0 in project templates and OAuthConsumerWpf sample.Andrew Arnott2010-07-145-144/+62
| | | | | | | | 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-144-18/+23
| |
* | More work toward OAuth 2.0 working in the project templates.Andrew Arnott2010-07-141-2/+13
| |
* | Work toward the WebFormsRelyingParty project template to use OAuth 2.0 ↵Andrew Arnott2010-07-128-161/+69
|/ | | | | | instead of 1.0a. It compiles now. (and the MVC one doesn't).
* Stabilized reference paths and removed HintPaths.Andrew Arnott2010-05-281-3/+1
| | | | This is work for targeting .NET 4.0.
* Switched to the new (transparent background) OpenID logo across all samples.Andrew Arnott2010-03-224-2/+2
|
* Fixed broken image URL.Andrew Arnott2010-03-211-1/+1
|
* Added note about security permissions required to generate the project ↵Andrew Arnott2010-03-201-0/+5
| | | | template database.
* Fixed occasional scrollbars and wrapping problems with popup selector.Andrew Arnott2010-03-191-2/+2
|
* Fixed OpenID button to match the official logo.Andrew Arnott2010-03-144-2/+2
|
* The MVC OpenID selector now appears in a jQuery popup dialog.Andrew Arnott2010-03-071-2/+2
| | | | Woot.
* Upgraded solution to Visual Studio 2010.Andrew Arnott2010-01-313-14/+16
|\ | | | | | | Merge branch 'master-Dev10'
| * Made GettingStarted.htm have a space in it to flex our muscle.Andrew Arnott2010-01-153-2/+2
| | | | | | | | And added some missing Purge tasks.
| * Updated description to include OAuth.Andrew Arnott2010-01-151-1/+1
| |
| * Merge branch 'master' into master-Dev10Andrew Arnott2010-01-084-53/+8
| |\ | | | | | | | | | | | | | | | Conflicts: build.proj src/DotNetOpenAuth.sln
| * | Reverting default target framework from 4.0 back to 3.5.Andrew Arnott2010-01-082-58/+122
| | |
| * | Merge branch 'master' into master-Dev10Andrew Arnott2010-01-063-3/+0
| |\ \
| * | | Solution upgraded (MVC projects won't upgrade at this point).Andrew Arnott2010-01-052-133/+71
| | | |
* | | | Workaround Code Contracts assembly showing up in web app's Bin folder and ↵Andrew Arnott2010-01-191-0/+1
| |_|/ |/| | | | | | | | causing type resolution ambiguities.
* | | Merge branch 'master' into mvcProjTemplateAndrew Arnott2010-01-081-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: projecttemplates/RelyingPartyLogic/Utilities.cs src/DotNetOpenAuth.sln
| * \ \ Merge branch 'v3.3'Andrew Arnott2010-01-072-11/+9
| |\ \ \ | | |/ / | | | / | | |/ | |/|
| | * Removed the fragile magic code for db creation.Andrew Arnott2010-01-021-10/+8
| | |
| | * Removed the whitelisted localhost OP in the project template.Andrew Arnott2009-12-281-1/+1
| | |
* | | Removed the fragile magic code for db creation.Andrew Arnott2010-01-021-10/+8
| | |
* | | Removed requirement that InfoCards users log in with be self-issued.Andrew Arnott2009-12-292-2/+4
| | |
* | | Gave each project template a unique forms auth cookie name.Andrew Arnott2009-12-291-1/+1
| | |
* | | Moved login processing code from the web forms project template into the ↵Andrew Arnott2009-12-291-50/+3
|/ / | | | | | | library and utilize it now in both templates.
* | Merge branch 'v3.3'Andrew Arnott2009-12-277-27/+104
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | Conflicts: samples/InfoCardRelyingParty/Site.Master samples/OpenIdProviderWebForms/Site.Master samples/OpenIdRelyingPartyClassicAsp/MembersOnly.asp samples/OpenIdRelyingPartyClassicAsp/default.asp samples/OpenIdRelyingPartyClassicAsp/login.asp samples/OpenIdRelyingPartyWebForms/Site.Master src/DotNetOpenAuth.vsmdi src/DotNetOpenAuth/Configuration/DotNetOpenAuth.xsd src/DotNetOpenAuth/OpenId/Extensions/ExtensionsInteropHelper.cs
| * Merge branch 'reports' into v3.3Andrew Arnott2009-12-267-28/+92
| |\ | | | | | | | | | | | | | | | Conflicts: projecttemplates/WebFormsRelyingParty/Web.config src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAnonymousResponse.cs
| | * Fixed template so it doesn't download needless .js for logged in users.Andrew Arnott2009-12-241-10/+12
| | |
| | * Added a logging table to the project template database.Andrew Arnott2009-12-162-14/+59
| | |
| | * Changed some more references from DNOI to DNOA.Andrew Arnott2009-12-141-1/+1
| | |
| | * Added page title to home page.Andrew Arnott2009-12-131-1/+1
| | |
| | * Added privacy policy to sreg requests so Yahoo! doesn't show warning to users.Andrew Arnott2009-12-133-0/+16
| | |
| | * Fixed compile-time error after 95e5314971.Andrew Arnott2009-12-131-1/+1
| | |
| * | Enabled reporting for the project template and all samples.Andrew Arnott2009-12-251-0/+14
| | |
* | | Fixed compile-time error after 95e5314971.Andrew Arnott2009-12-131-1/+1
| | |
* | | Merge branch 'v3.3'Andrew Arnott2009-12-135-7/+8
|\ \ \ | | |/ | |/| | | | | | | | | | Conflicts: src/DotNetOpenAuth.vsmdi src/version.txt
| * | Added missing verisign image from project.Andrew Arnott2009-12-131-0/+1
| |/
| * Fixed name of logger in project template.Andrew Arnott2009-12-101-1/+1
| |
| * Fixed entity set names to take their plural form consistently.Andrew Arnott2009-12-093-6/+6
| |
* | Reverted unintentional change in 17705cbe that breaks project template ↵Andrew Arnott2009-12-121-4/+1
| | | | | | | | expansion.
* | Merge branch 'v3.3'Andrew Arnott2009-12-014-4/+6
|\ \ | |/
| * The name of the database in the project template is now based on the name of ↵Andrew Arnott2009-12-013-3/+3
| | | | | | | | the created project.
| * Fixed the project template so that it once again displays the ↵Andrew Arnott2009-12-011-1/+3
| | | | | | | | GettingStarted.htm page.
* | Merge branch 'master' into extensibleDiscoveryAndrew Arnott2009-11-271-0/+6
|\ \ | |/ | | | | | | Conflicts: src/DotNetOpenAuth/OpenId/ProviderEndpointDescription.cs
| * Added custom database store for nonces and associations and wired it up to ↵Andrew Arnott2009-11-181-0/+6
| | | | | | | | the OAuth SP and OpenID RP in the project template.
* | Removed unused using statements from project template.Andrew Arnott2009-11-243-3/+0
| |
* | Further refactoring of discovery results.Andrew Arnott2009-11-231-1/+4
|/
* StyleCop fix.Andrew Arnott2009-11-171-1/+1
|
* Fixed the no-redirect issue when users navigate to /login.aspx to log into ↵Andrew Arnott2009-11-164-6/+11
| | | | the RP template.
* Uncommented customErrors config setting.Andrew Arnott2009-11-161-6/+2
|
* StyleCop fixes.Andrew Arnott2009-11-161-3/+3
|
* Added a few new columns to the project template's database.Andrew Arnott2009-11-162-8/+11
|
* Fixed web.config file bug in project template for IIS hosting.Andrew Arnott2009-11-161-1/+2
|
* Removed binaries from project template project file.Andrew Arnott2009-11-151-7/+1
|
* .vstemplates are now partially generated to remove the need to keep them in ↵Andrew Arnott2009-11-152-156/+11
| | | | sync with their associated project files.