Skip to content

Commit

Permalink
branding updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Apr 6, 2015
1 parent fe02f27 commit 2d865d4
Show file tree
Hide file tree
Showing 95 changed files with 3,466 additions and 484 deletions.
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,44 @@ IdentityServer3 Samples
#### ASP.NET 5 Hosting Sample
[link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/AspNet5Host)

#### MVC Authentication walk-through [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/MVC%20Authentication)
Step by step tutorial on how to use identity server to provide authentication services to an MVC application and a Web API. See [here](https://github.com/thinktecture/Thinktecture.IdentityServer.v3/wiki/Getting-started) for instructions.
#### MVC Authentication walk-through [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/MVC%20Authentication)
Step by step tutorial on how to use identity server to provide authentication services to an MVC application and a Web API. See [here](https://github.com/IdentityServer/IdentityServer3/wiki/Getting-started) for instructions.

#### Clients [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/Clients)
#### Clients [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Clients)
Sample clients and API for: client credentials, resource owner flow, code flow, form post, native and JavaScript implicit flow, WS-Federation and OpenID Connect Katana middleware.

#### Self-Host (minimal) [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/SelfHost%20(Minimal))
#### Self-Host (minimal) [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/SelfHost%20(Minimal))
Bare bones IdentityServer v3 host with all in-memory repositories.

#### Web-Host (minimal) [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/WebHost%20(minimal))
#### Web-Host (minimal) [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/WebHost%20(minimal))
Bare bones IdentityServer v3 hosted in IIS (Express)

#### Self-Host with WS-Federation [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/SelfHost%20(InMem%20with%20WS-Fed))
#### Self-Host with WS-Federation [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/SelfHost%20(InMem%20with%20WS-Fed))
Bare bones IdentityServer v3 host with all in-memory repositories and the WS-Federation plugin.

#### EntityFramework [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/EntityFramework)
Sample which illustrates how to use the Thinktecture.IdentityServer.v3.EntityFramework plugin which stores all of IdentityServer's configuration in an EF-capable database.
#### EntityFramework [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/EntityFramework)
Sample which illustrates how to use the IdentityServer3.EntityFramework plugin which stores all of IdentityServer's configuration in an EF-capable database.

#### MembershipReboot [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/MembershipReboot)
Sample which illustrates how to use the Thinktecture.IdentityServer.v3.MembershipReboot plugin for identity management using MembershipReboot.
#### MembershipReboot [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/MembershipReboot)
Sample which illustrates how to use the IdentityServer3.MembershipReboot plugin for identity management using MembershipReboot.

#### AspNetIdentity [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/AspNetIdentity)
Sample which illustrates how to use the Thinktecture.IdentityServer.v3.AspNetIdentity plugin for identity management using ASP.NET Identity.
#### AspNetIdentity [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/AspNetIdentity)
Sample which illustrates how to use the IdentityServer3.AspNetIdentity plugin for identity management using ASP.NET Identity.

#### CustomUserService [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/CustomUserService)
#### CustomUserService [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/CustomUserService)
Sample to illustrate how to customize the login workflow by implementing a custom user service.

#### EmbeddedAssetsViewService [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/EmbeddedAssetsViewService)
#### EmbeddedAssetsViewService [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/EmbeddedAssetsViewService)
Sample to illustrate how to add custom CSS and/or JavaScript to the default web pages IdentityServer displays to users.

#### CustomViewService [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/CustomViewService)
#### CustomViewService [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/CustomViewService)
Sample to illustrate how to completely replace the views shown to the user for login, logout, logged out, consent and errors.

#### DependencyInjection [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/DependencyInjection)
#### DependencyInjection [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/DependencyInjection)
Sample to illustrate how to register custom services with IdentityServer and how to accept as constructor parameters other IdentityServer dependencies and custom dependencies.

#### Custom Grant Types [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/Custom%20Grants)
#### Custom Grant Types [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Custom%20Grants)
Sample to illustrate how add support for non-standard grant types at the token endpoint.

#### Custom Grant Types (more customization) [link](https://github.com/thinktecture/Thinktecture.IdentityServer.v3.Samples/tree/master/source/Custom%20Grants%20(more%20customization))
#### Custom Grant Types (more customization) [link](https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Custom%20Grants%20(more%20customization))
Sample to illustrate how add support for non-standard grant types at the token endpoint. This sample also uses a custom user service and claims provider

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions source/AspNetIdentity/SelfHost/IdSvr/Clients.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/AspNetIdentity/SelfHost/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void Configuration(IAppBuilder app)

var options = new IdentityServerOptions
{
SiteName = "Thinktecture IdentityServer3 - UserService-AspNetIdentity",
SiteName = "IdentityServer3 - UserService-AspNetIdentity",
SigningCertificate = Certificate.Get(),
Factory = idSvrFactory,
CorsPolicy = CorsPolicy.AllowAll,
Expand Down
4 changes: 2 additions & 2 deletions source/AspNetIdentity_2fa/WebHost/IdSvr/Clients.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/AspNetIdentity_2fa/WebHost/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void Configuration(IAppBuilder app)

var options = new IdentityServerOptions
{
SiteName = "Thinktecture IdentityServer3 - AspNetIdentity 2FA",
SiteName = "IdentityServer3 - AspNetIdentity 2FA",
SigningCertificate = Certificate.Get(),
Factory = idSvrFactory,
};
Expand Down
4 changes: 2 additions & 2 deletions source/Clients/JavaScriptImplicitClient/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ <h1>JavaScript Implicit Client</h1>
<ul class="list-unstyled list-inline">
<li><a class="btn btn-primary" href="index.html">Home</a></li>
<li><button class="btn btn-default request" data-scope='openid' data-type='id_token'>Login Only</button></li>
<li><button class="btn btn-default request" data-scope='openid profile email roles' data-type='id_token'>Login With Profile</button></li>
<li><button class="btn btn-default request" data-scope='openid profile email roles read write' data-type='id_token token'>Login With Profile and Access Token</button></li>
<li><button class="btn btn-default request" data-scope='openid profile email' data-type='id_token'>Login With Profile</button></li>
<li><button class="btn btn-default request" data-scope='openid profile email read write' data-type='id_token token'>Login With Profile and Access Token</button></li>
<li><button class="btn btn-default request" data-scope='read write' data-type='token'>Access Token Only</button></li>
<li><button class="btn btn-primary call">Call Service</button></li>
<li><button class="btn btn-info logout">Logout</button></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Thinktecture.IdentityModel.Oidc")]
[assembly: AssemblyTitle("IdentityModel.Oidc")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Thinktecture.IdentityModel.Oidc")]
[assembly: AssemblyProduct("IdentityModel.Oidc")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Loading

0 comments on commit 2d865d4

Please sign in to comment.