2015-04-12 22:08:04 +00:00
|
|
|
'''
|
|
|
|
searx is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
searx is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|
|
|
|
|
|
|
(C) 2015 by Adam Tauber, <asciimoo@gmail.com>
|
|
|
|
'''
|
2016-07-04 20:46:43 +00:00
|
|
|
from flask_babel import gettext
|
2021-12-27 08:26:22 +00:00
|
|
|
|
2015-04-26 16:57:03 +00:00
|
|
|
name = gettext('Search on category select')
|
2021-12-27 08:26:22 +00:00
|
|
|
description = gettext(
|
|
|
|
'Perform search immediately if a category selected. ' 'Disable to select multiple categories. (JavaScript required)'
|
|
|
|
)
|
2015-04-26 16:57:03 +00:00
|
|
|
default_on = True
|
2017-02-12 14:06:01 +00:00
|
|
|
preference_section = 'ui'
|
2015-04-12 17:27:48 +00:00
|
|
|
|
2016-02-10 17:06:11 +00:00
|
|
|
js_dependencies = ('plugins/js/search_on_category_select.js',)
|