-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pgAdmin and test app working; app secure folder admin/ -> wiki/
- Loading branch information
Showing
9 changed files
with
75 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <title>User Attributes</title> | ||
| </head> | ||
| <body> | ||
|
|
||
| <p><a href="/Shibboleth.sso/Logout">SP Logout</a></p> | ||
|
|
||
|
|
||
| <?php | ||
|
|
||
| $headers = []; | ||
| foreach ($_SERVER as $key => $value) { | ||
| if (preg_match('/^([a-z])|(Shib)|REMOTE_USER/', $key)) { | ||
| $headers[$key] = $value; | ||
| } | ||
| } | ||
|
|
||
| ksort($headers); | ||
|
|
||
| foreach ($headers as $header => $value) { | ||
| echo "$header: $value<br/>"; | ||
| } | ||
| ?> | ||
|
|
||
| <p>* This list is a filtered list of environment variables containing the <a href="/Shibboleth.sso/Session">Shibboleth SP attributes</a>.</p> | ||
|
|
||
| <p>Test access to the <a href="/app/admin/">student wiki</a> (requires eduPersonEntitlement value http://sp.example.org/wiki) | ||
| </body> | ||
| </html> |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters