Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
md-query-saml-uat/variables.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (20 sloc)
967 Bytes
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
# 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" |