Set WHOOGLE_AUTOCOMPLETE
to autocomplete_enabled
to be used in index.html
and routes.html
This commit is contained in:
parent
ded787547a
commit
f2d6458d08
|
@ -37,6 +37,8 @@ newest_version = int(''.join(filter(str.isdigit, newest_version)))
|
||||||
newest_version = '' if current_version >= newest_version \
|
newest_version = '' if current_version >= newest_version \
|
||||||
else newest_version
|
else newest_version
|
||||||
|
|
||||||
|
ac_var='WHOOGLE_AUTOCOMPLETE'
|
||||||
|
autocomplete_enabled=os.getenv(ac_var,'1')
|
||||||
|
|
||||||
def auth_required(f):
|
def auth_required(f):
|
||||||
@wraps(f)
|
@wraps(f)
|
||||||
|
@ -201,6 +203,7 @@ def index():
|
||||||
languages=app.config['LANGUAGES'],
|
languages=app.config['LANGUAGES'],
|
||||||
countries=app.config['COUNTRIES'],
|
countries=app.config['COUNTRIES'],
|
||||||
themes=app.config['THEMES'],
|
themes=app.config['THEMES'],
|
||||||
|
autocomplete_enabled=autocomplete_enabled,
|
||||||
translation=app.config['TRANSLATIONS'][
|
translation=app.config['TRANSLATIONS'][
|
||||||
g.user_config.get_localization_lang()
|
g.user_config.get_localization_lang()
|
||||||
],
|
],
|
||||||
|
@ -246,7 +249,6 @@ def search_html():
|
||||||
|
|
||||||
@app.route(f'/{Endpoint.autocomplete}', methods=['GET', 'POST'])
|
@app.route(f'/{Endpoint.autocomplete}', methods=['GET', 'POST'])
|
||||||
def autocomplete():
|
def autocomplete():
|
||||||
ac_var = 'WHOOGLE_AUTOCOMPLETE'
|
|
||||||
if os.getenv(ac_var) and not read_config_bool(ac_var):
|
if os.getenv(ac_var) and not read_config_bool(ac_var):
|
||||||
return jsonify({})
|
return jsonify({})
|
||||||
|
|
||||||
|
@ -344,6 +346,7 @@ def search():
|
||||||
query=urlparse.unquote(query),
|
query=urlparse.unquote(query),
|
||||||
search_type=search_util.search_type,
|
search_type=search_util.search_type,
|
||||||
config=g.user_config,
|
config=g.user_config,
|
||||||
|
autocomplete_enabled=autocomplete_enabled,
|
||||||
lingva_url=app.config['TRANSLATE_URL'],
|
lingva_url=app.config['TRANSLATE_URL'],
|
||||||
translation=translation,
|
translation=translation,
|
||||||
translate_to=translate_to,
|
translate_to=translate_to,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user