From c0a0624c3f5db937911913e8b73300c93a54d26e Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Mon, 3 Jul 2017 15:39:50 +0100 Subject: [PATCH] Retire old schema names --- src/eddn/conf/Settings.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/eddn/conf/Settings.py b/src/eddn/conf/Settings.py index 0ba1197..c4bc05a 100644 --- a/src/eddn/conf/Settings.py +++ b/src/eddn/conf/Settings.py @@ -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", ] ###############################################################################