| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-03-14 | [enh] plugin tests | Adam Tauber | |
| 2015-03-14 | [enh] plugin attribute type check | Adam Tauber | |
| 2015-03-14 | [mod] disable gigablast by default | Adam Tauber | |
| 2015-03-14 | [enh] gettext in self ip plugin | Adam Tauber | |
| 2015-03-11 | [fix] webapp tests | Adam Tauber | |
| 2015-03-11 | [enh] plugin preferences - server-side ++ oscar theme | Adam Tauber | |
| 2015-03-11 | [enh] selfip plugin description | Adam Tauber | |
| 2015-03-11 | [enh] plugin id | Adam Tauber | |
| 2015-03-10 | [mod] checkbox macro | Adam Tauber | |
| 2015-03-10 | [mod] merge GET, POST vars | Adam Tauber | |
| 2015-03-10 | [enh] per user plugin switch | Adam Tauber | |
| 2015-03-10 | [enh] plugin support basics ++ self ip plugin | Adam Tauber | |
| 2015-03-09 | [fix] whitespace remove and proper no-result warning display | Adam Tauber | |
| 2015-03-08 | [mod] search return value | Adam Tauber | |
| 2015-03-03 | [fix] deezer test with https | Adam Tauber | |
| 2015-03-03 | [mod] https in deezer engine - closes #262 | Adam Tauber | |
| 2015-03-03 | Merge pull request #252 from dalf/master | Adam Tauber | |
| [fix] btdigg: disable ssl check | |||
| 2015-02-27 | Merge pull request #257 from pointhi/version_fix | Adam Tauber | |
| [fix] #253 | |||
| 2015-02-25 | [fix] #253 | Thomas Pointhuber | |
| 2015-02-22 | Merge pull request #251 from Cqoicebordel/moar-engines | Adam Tauber | |
| Moar engines | |||
| 2015-02-22 | [enh] support of multiple outgoing IPs | Adam Tauber | |
| 2015-02-20 | [fix] btdigg: disable ssl check, | dalf | |
| avoid this error : SSLError: hostname 'btdigg.org' doesn't match either of 'ssl2000.cloudflare.com', 'cloudflare.com', '*.cloudflare.com' | |||
| 2015-02-20 | Correct a few UT | Cqoicebordel | |
| 2015-02-20 | Remove dead engines from config. | Cqoicebordel | |
| I didn't remove the engines files because it always could be helpful if they come back. | |||
| 2015-02-20 | Add Spotify engine | Cqoicebordel | |
| 2015-02-20 | Merge pull request #249 from dalf/master | Adam Tauber | |
| [fix] update yahoo engine according to the web site changes | |||
| 2015-02-20 | [fix] update yahoo engine according to the web site changes | dalf | |
| 2015-02-16 | [fix] russian translation syntax | Adam Tauber | |
| 2015-02-16 | [enh] russian translation update | Adam Tauber | |
| 2015-02-16 | Merge pull request #234 from dimqua/master | Adam Tauber | |
| small update of russian translation | |||
| 2015-02-16 | Merge pull request #241 from Cqoicebordel/Remove-whitespace | Adam Tauber | |
| Remove whitespace and allow autocompleter to work in sub folders | |||
| 2015-02-16 | Merge pull request #239 from Cqoicebordel/master | Adam Tauber | |
| Translations update | |||
| 2015-02-16 | Allow autocompleter to work in a sub folder of the domain name. | Cqoicebordel | |
| 2015-02-14 | Remove whitespace caused by Jinja commands | Cqoicebordel | |
| Adding this conf change will remove every newline created by a Jinja command (`{% %}`). It can save a bit of bandwidth. | |||
| 2015-02-13 | Translations update | Cqoicebordel | |
| 2015-02-13 | [enh] log redirects | Adam Tauber | |
| 2015-02-13 | Merge pull request #237 from dalf/master | Adam Tauber | |
| [fix] close #197 for all engines | |||
| 2015-02-13 | [fix] close #197 for all engines | dalf | |
| 2015-02-13 | Merge pull request #235 from Cqoicebordel/rtl-fixes | Adam Tauber | |
| Some RTL fixes | |||
| 2015-02-13 | Some RTL fixes | Cqoicebordel | |
| - Pull the suggestions to the right in oscar - Add `‎` to a few places to print good url - Always LTR code display - Order pref label and info in pref for mobile view And add `sort` for ui languages and languages to find them more easily. | |||
| 2015-02-12 | [enh] update russian translation | dimqua | |
| 2015-02-12 | Merge pull request #233 from dalf/master | Adam Tauber | |
| [fix] kickass engine | |||
| 2015-02-12 | [fix] kickass tests | dalf | |
| 2015-02-12 | Merge branch 'master' of https://github.com/dalf/searx | dalf | |
| 2015-02-12 | [fix] kickass engine : change the hostname to kickass.to (since kickass.so ↵ | dalf | |
| doesn't respond). Close #197 perhaps not in clean way. Explanation : In fact 301 responses are followed, except the hook is called for each HTTP response, the first time for the HTTP 301 response then for HTTP 200 response. Since the kickass engine excepts a real result, the engine crashes, AND the requests lib stops here. Add a simple test at the beginning of the result function allows pass the first response and handle correctly the second response (the real one) May be a proper way is to add this test in search.py ? Code inside requests : https://github.com/kennethreitz/requests/blob/53d02381e22436b6d0757eb305eb1a960f82d361/requests/sessions.py#L579 and line 591 | |||
| 2015-02-12 | [fix] kickass engine : change the hostname to kickass.to (since kickass.so ↵ | dalf | |
| doesn't respond). Close #197 perhaps not in clean way. Explaination : In fact 301 responses are followed, except the hook is called for each HTTP response, the first time for the HTTP 301 response then for HTTP 200 response. Since the kickass engine excepts a real result, the engine crashes, AND the requests lib stops here. Add a simple test at the begining of the result function allows pass the first response and handle correctly the second response (the real one) May be a proper way is to add this test in search.py ? Code inside requests : https://github.com/kennethreitz/requests/blob/53d02381e22436b6d0757eb305eb1a960f82d361/requests/sessions.py#L579 and line 591 | |||
| 2015-02-12 | Merge pull request #210 from Cqoicebordel/unit-tests | Adam Tauber | |
| unit tests | |||
| 2015-02-12 | Merge pull request #227 from Cqoicebordel/rtl-fix | Adam Tauber | |
| RTL-fixes | |||
| 2015-02-12 | LTR the about page correctly | Cqoicebordel | |
| 2015-02-11 | Engine table in preference page in Courgette text-aligned to the right in RTL | Cqoicebordel | |