mirror of
https://github.com/searxng/searxng.git
synced 2025-07-24 21:59:22 +02:00
Merge pull request #166 from Cqoicebordel/non-exclusif-bang
Add non exclusif bang
This commit is contained in:
commit
b47b8cc2c6
2 changed files with 6 additions and 2 deletions
|
@ -38,6 +38,7 @@ class Query(object):
|
|||
self.query_parts = []
|
||||
self.engines = []
|
||||
self.languages = []
|
||||
self.specific = False
|
||||
|
||||
# parse query, if tags are set, which
|
||||
# change the serch engine or search-language
|
||||
|
@ -83,7 +84,7 @@ class Query(object):
|
|||
break
|
||||
|
||||
# this force a engine or category
|
||||
if query_part[0] == '!':
|
||||
if query_part[0] == '!' or query_part[0] == '?':
|
||||
prefix = query_part[1:].replace('_', ' ')
|
||||
|
||||
# check if prefix is equal with engine shortcut
|
||||
|
@ -110,6 +111,9 @@ class Query(object):
|
|||
for engine in categories[prefix]
|
||||
if engine not in self.blocked_engines)
|
||||
|
||||
if query_part[0] == '!':
|
||||
self.specific = True
|
||||
|
||||
# append query part to query_part list
|
||||
self.query_parts.append(query_part)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue