-
|
May be my code analyses is wrong or I don't understand why and when @dalf: may be you can point out where I fail .. (the implementations are from you) In the abstract class by example: searxng/searx/search/processors/abstract.py Lines 140 to 160 in 50ec821 Arguments like And in the online processor ... searxng/searx/search/processors/online.py Lines 52 to 61 in 50ec821 the default params and the User-Agent header are not set when the abstract class (called by This behavior was introduced in c4067a9 in the Before this commit the (online) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you are talking about this condition: if search_query.pageno > 1 and not self.engine.paging:
return None--> If user query is not asking for the page one = page two, three, ... (1) and the engine doesn't support paging (2) then the engine won't get the query (3).
Same for |
Beta Was this translation helpful? Give feedback.
If you are talking about this condition:
-->
If user query is not asking for the page one = page two, three, ... (1) and the engine doesn't support paging (2) then the engine won't get the query (3).
search_query.pageno > 1not self.engine.pagingreturn None: in the following code fragment,continuemeans the query is skipped for this engine:searxng/searx/search/__init__.py
Lines 95 to 98 in 50ec821