diff options
author | Julian Fairfax <juliannfairfax@protonmail.com> | 2022-05-14 14:12:55 +0200 |
---|---|---|
committer | Julian Fairfax <juliannfairfax@protonmail.com> | 2022-05-15 20:34:04 +0200 |
commit | 7d443dfea389d8bfaaa90142d3c1a6c1a068d5a9 (patch) | |
tree | d23b87b287fcb141947339b1f889fd60d8d33631 /searx | |
parent | de0c4d7cd8bf598d8ec69834f806a3dc80326ad6 (diff) | |
download | searxng-7d443dfea389d8bfaaa90142d3c1a6c1a068d5a9.tar.gz searxng-7d443dfea389d8bfaaa90142d3c1a6c1a068d5a9.zip |
Preferences URL in preferences
Revert translation changes
Auto-save preferences from URL
Preferences URL in preferences
Fix that
Preferences URL in preferences
Diffstat (limited to 'searx')
-rw-r--r-- | searx/templates/simple/preferences.html | 5 | ||||
-rwxr-xr-x | searx/webapp.py | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 2278237b5..4dde6fec2 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -406,6 +406,11 @@ <pre>{{ url_for('index', _external=True) }}?preferences={{ preferences_url_params|e }}{% raw %}&q=%s{% endraw %}</pre> </div> <p class="small_font">{{ _('Note: specifying custom settings in the search URL can reduce privacy by leaking data to the clicked result sites.') }}</p> + <h4>{{ _('URL to restore your preferences in another browser') }} :</h4> + <div class="selectable_url"> + <pre>{{ url_for('preferences', _external=True) }}?preferences={{ preferences_url_params|e }}&save=1</pre> + </div> + <p class="small_font">{{ _('Specifying custom settings in the preferences URL can be used to sync preferences across devices.') }}</p> {{ tab_footer() }} {{ tabs_close() }} diff --git a/searx/webapp.py b/searx/webapp.py index 7eca07753..86de88407 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -971,6 +971,11 @@ def preferences(): # pylint: disable=too-many-locals, too-many-return-statements, too-many-branches # pylint: disable=too-many-statements + # save preferences using the link the /preferences?preferences=...&save=1 + if request.args.get('save') == '1': + resp = make_response(redirect(url_for('index', _external=True))) + return request.preferences.save(resp) + # save preferences if request.method == 'POST': resp = make_response(redirect(url_for('index', _external=True))) |