bin/proxy.py clean up

This commit is contained in:
Igor Chubin 2018-10-23 20:04:42 +02:00
parent 5353cc3a17
commit 10f5aa579c
2 changed files with 26 additions and 11 deletions

View File

@ -39,6 +39,10 @@ GEOLOCATOR_SERVICE = 'http://localhost:8004'
LISTEN_HOST = ""
LISTEN_PORT = 8002
PROXY_HOST = "127.0.0.1"
PROXY_PORT = 5001
PROXY_CACHEDIR = "api-cache"
MY_EXTERNAL_IP = '5.9.243.187'
PLAIN_TEXT_AGENTS = [
@ -53,6 +57,7 @@ PLAIN_TEXT_PAGES = [':help', ':bash.function', ':translation']
IP2LOCATION_KEY = ''
def error(text):
"log error `text` and raise a RuntimeError exception"

View File

@ -1,4 +1,8 @@
# vim: set encoding=utf-8
# vim: fileencoding=utf-8
"""
Translation of almost everything.
"""
FULL_TRANSLATION = [
"de", "fr", "id", "it", "nb", "nl", "pl", "ru",
@ -16,6 +20,12 @@ PARTIAL_TRANSLATION = [
"he",
]
PROXY_LANGS = [
'az', 'bs', 'ca', 'cy', 'eo', 'he', 'hr',
'hy', 'id', 'is', 'it', 'ja',
'kk', 'lv', 'mk', 'nb', 'nn', 'sl', 'uz'
]
SUPPORTED_LANGS = FULL_TRANSLATION + PARTIAL_TRANSLATION