Retire old schema names

This commit is contained in:
Jonathan Harris 2017-07-03 15:39:50 +01:00
parent f9c7eb1d39
commit c0a0624c3f

View File

@ -49,28 +49,18 @@ class _Settings(object):
GATEWAY_IP_KEY_SALT = None
GATEWAY_JSON_SCHEMAS = {
"http://schemas.elite-markets.net/eddn/commodity/3" : "schemas/commodity-v3.0.json",
"http://schemas.elite-markets.net/eddn/commodity/3/test" : "schemas/commodity-v3.0.json",
"https://eddn.edcd.io/schemas/commodity/3" : "schemas/commodity-v3.0.json",
"https://eddn.edcd.io/schemas/commodity/3/test" : "schemas/commodity-v3.0.json",
"http://schemas.elite-markets.net/eddn/shipyard/2" : "schemas/shipyard-v2.0.json",
"http://schemas.elite-markets.net/eddn/shipyard/2/test" : "schemas/shipyard-v2.0.json",
"https://eddn.edcd.io/schemas/shipyard/2" : "schemas/shipyard-v2.0.json",
"https://eddn.edcd.io/schemas/shipyard/2/test" : "schemas/shipyard-v2.0.json",
"http://schemas.elite-markets.net/eddn/outfitting/2" : "schemas/outfitting-v2.0.json",
"http://schemas.elite-markets.net/eddn/outfitting/2/test" : "schemas/outfitting-v2.0.json",
"https://eddn.edcd.io/schemas/outfitting/2" : "schemas/outfitting-v2.0.json",
"https://eddn.edcd.io/schemas/outfitting/2/test" : "schemas/outfitting-v2.0.json",
"http://schemas.elite-markets.net/eddn/blackmarket/1" : "schemas/blackmarket-v1.0.json",
"http://schemas.elite-markets.net/eddn/blackmarket/1/test" : "schemas/blackmarket-v1.0.json",
"https://eddn.edcd.io/schemas/blackmarket/1" : "schemas/blackmarket-v1.0.json",
"https://eddn.edcd.io/schemas/blackmarket/1/test" : "schemas/blackmarket-v1.0.json",
"http://schemas.elite-markets.net/eddn/journal/1" : "schemas/journal-v1.0.json",
"http://schemas.elite-markets.net/eddn/journal/1/test" : "schemas/journal-v1.0.json",
"https://eddn.edcd.io/schemas/journal/1" : "schemas/journal-v1.0.json",
"https://eddn.edcd.io/schemas/journal/1/test" : "schemas/journal-v1.0.json",
}
@ -80,10 +70,20 @@ class _Settings(object):
"http://schemas.elite-markets.net/eddn/commodity/1/test",
"http://schemas.elite-markets.net/eddn/commodity/2",
"http://schemas.elite-markets.net/eddn/commodity/2/test",
"http://schemas.elite-markets.net/eddn/commodity/3",
"http://schemas.elite-markets.net/eddn/commodity/3/test",
"http://schemas.elite-markets.net/eddn/outfitting/1",
"http://schemas.elite-markets.net/eddn/outfitting/1/test",
"http://schemas.elite-markets.net/eddn/outfitting/2",
"http://schemas.elite-markets.net/eddn/outfitting/2/test",
"http://schemas.elite-markets.net/eddn/shipyard/1",
"http://schemas.elite-markets.net/eddn/shipyard/1/test",
"http://schemas.elite-markets.net/eddn/shipyard/2",
"http://schemas.elite-markets.net/eddn/shipyard/2/test",
"http://schemas.elite-markets.net/eddn/blackmarket/1",
"http://schemas.elite-markets.net/eddn/blackmarket/1/test",
"http://schemas.elite-markets.net/eddn/journal/1",
"http://schemas.elite-markets.net/eddn/journal/1/test",
]
###############################################################################