forked from zaclys/searxng
		
	Merge pull request #241 from Cqoicebordel/Remove-whitespace
Remove whitespace and allow autocompleter to work in sub folders
This commit is contained in:
		
						commit
						73e9a35851
					
				
					 6 changed files with 8 additions and 6 deletions
				
			
		|  | @ -1,6 +1,6 @@ | ||||||
| if(searx.autocompleter) { | if(searx.autocompleter) { | ||||||
|     window.addEvent('domready', function() { |     window.addEvent('domready', function() { | ||||||
| 	    new Autocompleter.Request.JSON('q', '/autocompleter', { | 	    new Autocompleter.Request.JSON('q', './autocompleter', { | ||||||
| 		    postVar:'q', | 		    postVar:'q', | ||||||
| 		    postData:{ | 		    postData:{ | ||||||
| 			    'format': 'json' | 			    'format': 'json' | ||||||
|  |  | ||||||
|  | @ -1,6 +1,6 @@ | ||||||
| if(searx.autocompleter) { | if(searx.autocompleter) { | ||||||
|     window.addEvent('domready', function() { |     window.addEvent('domready', function() { | ||||||
| 	    new Autocompleter.Request.JSON('q', '/autocompleter', { | 	    new Autocompleter.Request.JSON('q', './autocompleter', { | ||||||
| 		    postVar:'q', | 		    postVar:'q', | ||||||
| 		    postData:{ | 		    postData:{ | ||||||
| 			    'format': 'json' | 			    'format': 'json' | ||||||
|  |  | ||||||
							
								
								
									
										2
									
								
								searx/static/themes/oscar/js/searx.min.js
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								searx/static/themes/oscar/js/searx.min.js
									
										
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							|  | @ -19,7 +19,7 @@ if(searx.autocompleter) { | ||||||
|     searx.searchResults = new Bloodhound({ |     searx.searchResults = new Bloodhound({ | ||||||
|         datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), |         datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), | ||||||
|         queryTokenizer: Bloodhound.tokenizers.whitespace, |         queryTokenizer: Bloodhound.tokenizers.whitespace, | ||||||
|         remote: '/autocompleter?q=%QUERY' |         remote: './autocompleter?q=%QUERY' | ||||||
|     }); |     }); | ||||||
|     searx.searchResults.initialize(); |     searx.searchResults.initialize(); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -81,6 +81,8 @@ app = Flask( | ||||||
|     template_folder=templates_path |     template_folder=templates_path | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
|  | app.jinja_env.trim_blocks = True | ||||||
|  | app.jinja_env.lstrip_blocks = True | ||||||
| app.secret_key = settings['server']['secret_key'] | app.secret_key = settings['server']['secret_key'] | ||||||
| 
 | 
 | ||||||
| babel = Babel(app) | babel = Babel(app) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Adam Tauber
						Adam Tauber