libremiami-search/searx
dalf 67e11c42b9 Clean up the architecture
Purposes :
- isolate the plugins calls
- distinction between parsing the web request and running the search (Search class). To be able to test code easily, to run searx code outside a web server, to filter the search query parameters with plugins more easily, etc...

Details :
- request.request_data contains request.form or request.args (initialize inside pre_request() function)
- Query class is renamed RawTextQuery
- SearchQuery class defines all search parameters
- get_search_query_from_webapp create a SearchQuery instance (basically the previous Search.__init__ code)
- Search class and SearchWithPlugins class takes a SearchQuery instance as class constructor parameter
- SearchWithPlugins class inherites from Search class, and run plugins
- A dedicated function search_with_plugins executes plugins to have a well define locals() (which is used by the plugins code).
- All plugins code is executed inside the try...except block (webapp.py, index function)
- advanced_search HTTP parameter value stays in webapp.py (it is only part of UI)
- multiple calls to result_container.get_ordered_results() doesn't compute the order multiple time (note : this method was call only once before)
- paging value is stored in the result_container class (compute in the extend method)
- test about engine.suspend_end_time is done during search method call (instead of __init__)
- check that the format parameter value is one of these : html, rss, json, rss (before the html value was assumed but some text formatting wasn't not done)
2016-11-02 14:22:16 +01:00
..
data [enh] currency_convert engine: user can write "1 dollars in euros" instead of "1 USD in EUR". 2015-05-12 20:52:08 +02:00
engines add time range search for flickr 2016-11-01 17:58:29 +01:00
plugins Clean up the architecture 2016-11-02 14:22:16 +01:00
static [fix] menu style in pointhi oscar theme 2016-11-02 12:26:54 +01:00
templates [fix] menu without js - closes #747 2016-11-01 23:12:46 +01:00
translations [enh] translation updates 2016-09-06 18:12:01 +02:00
__init__.py [mod] the environment variable SEARX_DEBUG can override the general.debug value in settings.yml 2016-10-22 21:36:13 +02:00
autocomplete.py [enh] multilingual autocomplete 2016-03-29 19:10:13 -06:00
languages.py sort languages properly 2016-04-09 18:02:12 +02:00
poolrequests.py Fix pep8 2016-05-02 19:25:09 +02:00
preferences.py [fix] links in new tabs without js ++ noopener bug fix - closes #674 2016-09-04 15:57:43 +02:00
query.py Clean up the architecture 2016-11-02 14:22:16 +01:00
results.py Clean up the architecture 2016-11-02 14:22:16 +01:00
search.py Clean up the architecture 2016-11-02 14:22:16 +01:00
settings.yml [fix] ixquick : fetch results from ixquick.eu instead of ixquick.com, close #727 2016-10-22 20:56:18 +02:00
settings_robot.yml [fix] robot test engine names 2016-09-28 22:49:29 +02:00
testing.py [fix] pep8 2016-02-27 19:07:53 +01:00
utils.py fix kickass torrents engine 2016-10-22 05:27:18 +02:00
version.py [enh] version 0.10.0 2016-09-06 18:31:25 +02:00
webapp.py Clean up the architecture 2016-11-02 14:22:16 +01:00