Skip to content

Commit

Permalink
Provide sensible default variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dshafer committed Apr 12, 2022
1 parent e6fcb9c commit d1c0796
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ log.html
output.xml
pip-selfcheck.json
report.html
variables.py
29 changes: 29 additions & 0 deletions variables.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Base Metadata Query server URL
BASE_URL = "http://mdq.incommon.org"

# Any known existing entityID
ENTITY_ID = "https://fm.incommon.org/sp"

# Percent-encoded form of ENTITY_ID above
ENTITY_ID_ENCODED = "https:%2F%2Ffm.incommon.org%2Fsp"

# Percent-encoded form of ENTITY_ID above using uppercase percent-encoding
ENTITY_ID_ENCODED_UPPERCASE = "https:%2F%2Ffm.incommon.org%2Fsp"

# Percent-encoded form of ENTITY_ID above using lowercase percent-encoding
ENTITY_ID_ENCODED_LOWERCASE = "https:%2f%2ffm.incommon.org%2fsp"

# SHA-1 transformed form of ENTITY_ID above
ENTITY_ID_SHA1 = "20f0fe93f679ac8a2ddcf0822ecdec007c56546f"

# InCommon URL-style entityID
INC_ENTITY_ID_URL = "https://fm.incommon.org/sp"

# Percent-encoded form of INC_ENTITY_ID_URL above
INC_ENTITY_ID_URL_ENCODED = "https:%2F%2Ffm.incommon.org%2Fsp"

# InCommon URN-style entityID
INC_ENTITY_ID_URN = "urn:mace:incommon:internet2.edu"

# InCommon collection of all IdPs
INC_ALL_IDPS = "idps/all"

0 comments on commit d1c0796

Please sign in to comment.