mirror of https://github.com/searxng/searxng.git
themes: remove CR from newlines
Adding a CR in some files and in others not, is a good starting point for a DOS+Unix mess we all have already seen in many projects. Patch fixes all files matching (even those comming from grunt's build):: find ./searx -exec file {} \; | grep CR BTW: Same with mixing TAB and SPACE indent styles in one and the same file. So if sources are tuched here in this patch, its also fixed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
1bb46e5e37
commit
56b7e05721
|
@ -154,7 +154,7 @@ $(document).ready(function(){
|
||||||
$(this).toggleClass('btn-default');
|
$(this).toggleClass('btn-default');
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* change text during btn-toggle click if possible
|
* change text during btn-toggle click if possible
|
||||||
*/
|
*/
|
||||||
$('.media-loader').click(function() {
|
$('.media-loader').click(function() {
|
||||||
|
@ -305,19 +305,19 @@ $(document).ready(function(){
|
||||||
|
|
||||||
// TODO hack
|
// TODO hack
|
||||||
// change default imagePath
|
// change default imagePath
|
||||||
L.Icon.Default.imagePath = "./static/themes/oscar/img/map";
|
L.Icon.Default.imagePath = "./static/themes/oscar/img/map";
|
||||||
|
|
||||||
// init map
|
// init map
|
||||||
var map = L.map(leaflet_target);
|
var map = L.map(leaflet_target);
|
||||||
|
|
||||||
// create the tile layer with correct attribution
|
// create the tile layer with correct attribution
|
||||||
var osmMapnikUrl='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
|
var osmMapnikUrl='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
|
||||||
var osmMapnikAttrib='Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
var osmMapnikAttrib='Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
||||||
var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});
|
var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});
|
||||||
|
|
||||||
var osmWikimediaUrl='https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';
|
var osmWikimediaUrl='https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';
|
||||||
var osmWikimediaAttrib = 'Wikimedia maps beta | Maps data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
var osmWikimediaAttrib = 'Wikimedia maps beta | Maps data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
||||||
var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});
|
var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});
|
||||||
|
|
||||||
// init map view
|
// init map view
|
||||||
if(map_bounds) {
|
if(map_bounds) {
|
||||||
|
@ -334,9 +334,9 @@ $(document).ready(function(){
|
||||||
map.setView(new L.LatLng(map_lat, map_lon),8);
|
map.setView(new L.LatLng(map_lat, map_lon),8);
|
||||||
}
|
}
|
||||||
|
|
||||||
map.addLayer(osmMapnik);
|
map.addLayer(osmMapnik);
|
||||||
|
|
||||||
var baseLayers = {
|
var baseLayers = {
|
||||||
"OSM Mapnik": osmMapnik/*,
|
"OSM Mapnik": osmMapnik/*,
|
||||||
"OSM Wikimedia": osmWikimedia*/
|
"OSM Wikimedia": osmWikimedia*/
|
||||||
};
|
};
|
||||||
|
|
|
@ -64,7 +64,7 @@ $(document).ready(function(){
|
||||||
$(this).toggleClass('btn-default');
|
$(this).toggleClass('btn-default');
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* change text during btn-toggle click if possible
|
* change text during btn-toggle click if possible
|
||||||
*/
|
*/
|
||||||
$('.media-loader').click(function() {
|
$('.media-loader').click(function() {
|
||||||
|
|
|
@ -116,19 +116,19 @@ $(document).ready(function(){
|
||||||
|
|
||||||
// TODO hack
|
// TODO hack
|
||||||
// change default imagePath
|
// change default imagePath
|
||||||
L.Icon.Default.imagePath = "./static/themes/oscar/img/map";
|
L.Icon.Default.imagePath = "./static/themes/oscar/img/map";
|
||||||
|
|
||||||
// init map
|
// init map
|
||||||
var map = L.map(leaflet_target);
|
var map = L.map(leaflet_target);
|
||||||
|
|
||||||
// create the tile layer with correct attribution
|
// create the tile layer with correct attribution
|
||||||
var osmMapnikUrl='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
|
var osmMapnikUrl='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
|
||||||
var osmMapnikAttrib='Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
var osmMapnikAttrib='Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
||||||
var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});
|
var osmMapnik = new L.TileLayer(osmMapnikUrl, {minZoom: 1, maxZoom: 19, attribution: osmMapnikAttrib});
|
||||||
|
|
||||||
var osmWikimediaUrl='https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';
|
var osmWikimediaUrl='https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png';
|
||||||
var osmWikimediaAttrib = 'Wikimedia maps beta | Maps data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
var osmWikimediaAttrib = 'Wikimedia maps beta | Maps data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors';
|
||||||
var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});
|
var osmWikimedia = new L.TileLayer(osmWikimediaUrl, {minZoom: 1, maxZoom: 19, attribution: osmWikimediaAttrib});
|
||||||
|
|
||||||
// init map view
|
// init map view
|
||||||
if(map_bounds) {
|
if(map_bounds) {
|
||||||
|
@ -145,9 +145,9 @@ $(document).ready(function(){
|
||||||
map.setView(new L.LatLng(map_lat, map_lon),8);
|
map.setView(new L.LatLng(map_lat, map_lon),8);
|
||||||
}
|
}
|
||||||
|
|
||||||
map.addLayer(osmMapnik);
|
map.addLayer(osmMapnik);
|
||||||
|
|
||||||
var baseLayers = {
|
var baseLayers = {
|
||||||
"OSM Mapnik": osmMapnik/*,
|
"OSM Mapnik": osmMapnik/*,
|
||||||
"OSM Wikimedia": osmWikimedia*/
|
"OSM Wikimedia": osmWikimedia*/
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
<span class="label label-default pull-right">{{ result.engine }}</span>
|
<span class="label label-default pull-right">{{ result.engine }}</span>
|
||||||
<p class="text-muted pull-left">{{ result.pretty_url }}</p>
|
<p class="text-muted pull-left">{{ result.pretty_url }}</p>
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('Get image') }}</a>
|
<a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('Get image') }}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue