[build] /static

This commit is contained in:
Alexandre Flament 2021-10-01 18:07:27 +02:00
parent 74b0830362
commit a53a4d5012
21 changed files with 77 additions and 145 deletions

View File

@ -23,8 +23,6 @@ window.searxng = (function(d) {
translations: JSON.parse(script.getAttribute('data-translations')) translations: JSON.parse(script.getAttribute('data-translations'))
}; };
})(document); })(document);
window.searx = {};
;/** ;/**
* @license * @license
* (C) Copyright Contributors to the SearXNG project. * (C) Copyright Contributors to the SearXNG project.
@ -181,7 +179,7 @@ $(document).ready(function(){
/** /**
* Layout images according to their sizes * Layout images according to their sizes
*/ */
searxng.image_thumbnail_layout = new searx.ImageLayout('#main_results', '#main_results .result-images', 'img.img-thumbnail', 15, 200); searxng.image_thumbnail_layout = new searxng.ImageLayout('#main_results', '#main_results .result-images', 'img.img-thumbnail', 15, 200);
searxng.image_thumbnail_layout.watch(); searxng.image_thumbnail_layout.watch();
}); });
;/** ;/**
@ -479,6 +477,6 @@ $(document).ready(function(){
} }
}; };
w.searx.ImageLayout = ImageLayout; w.searxng.ImageLayout = ImageLayout;
}(window, document)); }(window, document));

Binary file not shown.

View File

@ -1,5 +1,5 @@
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
* *
* To convert "style.less" to "style.css" run: $make styles * To convert "style.less" to "style.css" run: $make styles
*/ */
@ -815,12 +815,12 @@ template {
content: "\f115"; content: "\f115";
} }
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
* *
* To change the colors of the site, simple edit this variables * To change the colors of the site, simple edit this variables
*/ */
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
*/ */
.code-highlight pre { .code-highlight pre {
overflow: auto; overflow: auto;
@ -1952,7 +1952,7 @@ td:hover .engine-tooltip,
} }
} }
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
*/ */
#search { #search {
padding: 0 2em 0 10rem; padding: 0 2em 0 10rem;

View File

@ -1,5 +1,5 @@
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
* *
* To convert "style.less" to "style.css" run: $make styles * To convert "style.less" to "style.css" run: $make styles
*/ */
@ -815,12 +815,12 @@ template {
content: "\f115"; content: "\f115";
} }
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
* *
* To change the colors of the site, simple edit this variables * To change the colors of the site, simple edit this variables
*/ */
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
*/ */
.code-highlight pre { .code-highlight pre {
overflow: auto; overflow: auto;
@ -1952,7 +1952,7 @@ td:hover .engine-tooltip,
} }
} }
/* /*
* searx, A privacy-respecting, hackable metasearch engine * SearXNG, A privacy-respecting, hackable metasearch engine
*/ */
#search { #search {
padding: 0 2em 0 10rem; padding: 0 2em 0 10rem;

Binary file not shown.

Binary file not shown.

View File

@ -1,20 +1,9 @@
/** /**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version. * SPDX-License-Identifier: AGPL-3.0-or-later
* */
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2019 by Alexandre Flament
*
*/
/* global DocumentTouch:readonly */ /* global DocumentTouch:readonly */
(function(w, d) { (function(w, d) {
'use strict'; 'use strict';
@ -26,7 +15,7 @@
})(); })();
// try to detect touch screen // try to detect touch screen
w.searx = { w.searxng = {
touch: (("ontouchstart" in w) || w.DocumentTouch && document instanceof DocumentTouch) || false, touch: (("ontouchstart" in w) || w.DocumentTouch && document instanceof DocumentTouch) || false,
method: script.getAttribute('data-method'), method: script.getAttribute('data-method'),
autocompleter: script.getAttribute('data-autocompleter') === 'true', autocompleter: script.getAttribute('data-autocompleter') === 'true',
@ -37,5 +26,5 @@
}; };
// update the css // update the css
d.getElementsByTagName("html")[0].className = (w.searx.touch)?"js touch":"js"; d.getElementsByTagName("html")[0].className = (w.searxng.touch)?"js touch":"js";
})(window, document); })(window, document);

Binary file not shown.

Binary file not shown.

View File

@ -1,21 +1,10 @@
/** /**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version. * SPDX-License-Identifier: AGPL-3.0-or-later
* */
* searx is distributed in the hope that it will be useful, window.searxng = (function(w, d) {
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2017 by Alexandre Flament, <alex@al-f.net>
*
*/
window.searx = (function(w, d) {
'use strict'; 'use strict';
@ -45,9 +34,9 @@ window.searx = (function(w, d) {
} }
} }
var searx = window.searx || {}; var searxng = window.searxng || {};
searx.on = function(obj, eventType, callback, useCapture) { searxng.on = function(obj, eventType, callback, useCapture) {
useCapture = useCapture || false; useCapture = useCapture || false;
if (typeof obj !== 'string') { if (typeof obj !== 'string') {
// obj HTMLElement, HTMLDocument // obj HTMLElement, HTMLDocument
@ -62,7 +51,7 @@ window.searx = (function(w, d) {
} }
}; };
searx.ready = function(callback) { searxng.ready = function(callback) {
if (document.readyState != 'loading') { if (document.readyState != 'loading') {
callback.call(w); callback.call(w);
} else { } else {
@ -70,7 +59,7 @@ window.searx = (function(w, d) {
} }
}; };
searx.http = function(method, url) { searxng.http = function(method, url) {
var req = new XMLHttpRequest(), var req = new XMLHttpRequest(),
resolve = function() {}, resolve = function() {},
reject = function() {}, reject = function() {},
@ -109,8 +98,8 @@ window.searx = (function(w, d) {
return promise; return promise;
}; };
searx.loadStyle = function(src) { searxng.loadStyle = function(src) {
var path = searx.static_path + src, var path = searxng.static_path + src,
id = "style_" + src.replace('.', '_'), id = "style_" + src.replace('.', '_'),
s = d.getElementById(id); s = d.getElementById(id);
if (s === null) { if (s === null) {
@ -123,8 +112,8 @@ window.searx = (function(w, d) {
} }
}; };
searx.loadScript = function(src, callback) { searxng.loadScript = function(src, callback) {
var path = searx.static_path + src, var path = searxng.static_path + src,
id = "script_" + src.replace('.', '_'), id = "script_" + src.replace('.', '_'),
s = d.getElementById(id); s = d.getElementById(id);
if (s === null) { if (s === null) {
@ -147,29 +136,30 @@ window.searx = (function(w, d) {
} }
}; };
searx.insertBefore = function (newNode, referenceNode) { searxng.insertBefore = function (newNode, referenceNode) {
referenceNode.parentNode.insertBefore(newNode, referenceNode); referenceNode.parentNode.insertBefore(newNode, referenceNode);
}; };
searx.insertAfter = function(newNode, referenceNode) { searxng.insertAfter = function(newNode, referenceNode) {
referenceNode.parentNode.insertAfter(newNode, referenceNode.nextSibling); referenceNode.parentNode.insertAfter(newNode, referenceNode.nextSibling);
}; };
searx.on('.close', 'click', function() { searxng.on('.close', 'click', function() {
this.parentNode.classList.add('invisible'); this.parentNode.classList.add('invisible');
}); });
return searx; return searxng;
})(window, document); })(window, document);
;/*global searx*/ ;/* SPDX-License-Identifier: AGPL-3.0-or-later */
/*global searxng*/
searx.ready(function() { searxng.ready(function() {
searx.on('.result', 'click', function() { searxng.on('.result', 'click', function() {
highlightResult(this)(true); highlightResult(this)(true);
}); });
searx.on('.result a', 'focus', function(e) { searxng.on('.result a', 'focus', function(e) {
var el = e.target; var el = e.target;
while (el !== undefined) { while (el !== undefined) {
if (el.classList.contains('result')) { if (el.classList.contains('result')) {
@ -281,7 +271,7 @@ searx.ready(function() {
} }
}; };
searx.on(document, "keydown", function(e) { searxng.on(document, "keydown", function(e) {
// check for modifiers so we don't break browser's hotkeys // check for modifiers so we don't break browser's hotkeys
if (Object.prototype.hasOwnProperty.call(vimKeys, e.keyCode) && !e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey) { if (Object.prototype.hasOwnProperty.call(vimKeys, e.keyCode) && !e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey) {
var tagName = e.target.tagName.toLowerCase(); var tagName = e.target.tagName.toLowerCase();
@ -531,31 +521,15 @@ searx.ready(function() {
} }
} }
}); });
;/** ;/* SPDX-License-Identifier: AGPL-3.0-or-later */
* searx is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
* (C) 2017 by Alexandre Flament, <alex@al-f.net>
*/
/* global L */ /* global L */
(function (w, d, searx) { (function (w, d, searxng) {
'use strict'; 'use strict';
searx.ready(function () { searxng.ready(function () {
searx.on('.searx_init_map', 'click', function(event) { searxng.on('.searxng_init_map', 'click', function(event) {
// no more request // no more request
this.classList.remove("searx_init_map"); this.classList.remove("searxng_init_map");
// //
var leaflet_target = this.dataset.leafletTarget; var leaflet_target = this.dataset.leafletTarget;
@ -565,8 +539,8 @@ searx.ready(function() {
var map_boundingbox = JSON.parse(this.dataset.mapBoundingbox); var map_boundingbox = JSON.parse(this.dataset.mapBoundingbox);
var map_geojson = JSON.parse(this.dataset.mapGeojson); var map_geojson = JSON.parse(this.dataset.mapGeojson);
searx.loadStyle('css/leaflet.css'); searxng.loadStyle('css/leaflet.css');
searx.loadScript('js/leaflet.js', function() { searxng.loadScript('js/leaflet.js', function() {
var map_bounds = null; var map_bounds = null;
if(map_boundingbox) { if(map_boundingbox) {
var southWest = L.latLng(map_boundingbox[0], map_boundingbox[2]); var southWest = L.latLng(map_boundingbox[0], map_boundingbox[2]);
@ -620,20 +594,21 @@ searx.ready(function() {
event.preventDefault(); event.preventDefault();
}); });
}); });
})(window, document, window.searx); })(window, document, window.searxng);
;(function (w, d, searx) { ;/* SPDX-License-Identifier: AGPL-3.0-or-later */
(function (w, d, searxng) {
'use strict'; 'use strict';
searx.ready(function() { searxng.ready(function() {
let engine_descriptions = null; let engine_descriptions = null;
function load_engine_descriptions() { function load_engine_descriptions() {
if (engine_descriptions == null) { if (engine_descriptions == null) {
searx.http("GET", "engine_descriptions.json").then(function(content) { searxng.http("GET", "engine_descriptions.json").then(function(content) {
engine_descriptions = JSON.parse(content); engine_descriptions = JSON.parse(content);
for (const [engine_name, description] of Object.entries(engine_descriptions)) { for (const [engine_name, description] of Object.entries(engine_descriptions)) {
let elements = d.querySelectorAll('[data-engine-name="' + engine_name + '"] .engine-description'); let elements = d.querySelectorAll('[data-engine-name="' + engine_name + '"] .engine-description');
for(const element of elements) { for(const element of elements) {
let source = ' (<i>' + searx.translations['Source'] + ':&nbsp;' + description[1] + '</i>)'; let source = ' (<i>' + searxng.translations['Source'] + ':&nbsp;' + description[1] + '</i>)';
element.innerHTML = description[0] + source; element.innerHTML = description[0] + source;
} }
} }
@ -643,35 +618,20 @@ searx.ready(function() {
if (d.querySelector('body[class="preferences_endpoint"]')) { if (d.querySelector('body[class="preferences_endpoint"]')) {
for(const el of d.querySelectorAll('[data-engine-name]')) { for(const el of d.querySelectorAll('[data-engine-name]')) {
searx.on(el, 'mouseenter', load_engine_descriptions); searxng.on(el, 'mouseenter', load_engine_descriptions);
} }
} }
}); });
})(window, document, window.searx); })(window, document, window.searxng);
;/** ;/* SPDX-License-Identifier: AGPL-3.0-or-later */
* searx is free software: you can redistribute it and/or modify (function(w, d, searxng) {
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2017 by Alexandre Flament, <alex@al-f.net>
*/
(function(w, d, searx) {
'use strict'; 'use strict';
searx.ready(function() { searxng.ready(function() {
searx.image_thumbnail_layout = new searx.ImageLayout('#urls', '#urls .result-images', 'img.image_thumbnail', 10, 200); searxng.image_thumbnail_layout = new searxng.ImageLayout('#urls', '#urls .result-images', 'img.image_thumbnail', 10, 200);
searx.image_thumbnail_layout.watch(); searxng.image_thumbnail_layout.watch();
searx.on('.btn-collapse', 'click', function() { searxng.on('.btn-collapse', 'click', function() {
var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed'); var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');
var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed'); var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed');
var target = this.getAttribute('data-target'); var target = this.getAttribute('data-target');
@ -687,7 +647,7 @@ searx.ready(function() {
targetElement.classList.toggle('invisible'); targetElement.classList.toggle('invisible');
}); });
searx.on('.media-loader', 'click', function() { searxng.on('.media-loader', 'click', function() {
var target = this.getAttribute('data-target'); var target = this.getAttribute('data-target');
var iframe_load = d.querySelector(target + ' > iframe'); var iframe_load = d.querySelector(target + ' > iframe');
var srctest = iframe_load.getAttribute('src'); var srctest = iframe_load.getAttribute('src');
@ -710,25 +670,10 @@ searx.ready(function() {
}); });
})(window, document, window.searx); })(window, document, window.searxng);
;/** ;/* SPDX-License-Identifier: AGPL-3.0-or-later */
* searx is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2017 by Alexandre Flament, <alex@al-f.net>
*/
/* global AutoComplete */ /* global AutoComplete */
(function(w, d, searx) { (function(w, d, searxng) {
'use strict'; 'use strict';
var firstFocus = true, qinput_id = "q", qinput; var firstFocus = true, qinput_id = "q", qinput;
@ -767,7 +712,7 @@ searx.ready(function() {
qinput.addEventListener('keyup', updateClearButton, false); qinput.addEventListener('keyup', updateClearButton, false);
} }
searx.ready(function() { searxng.ready(function() {
qinput = d.getElementById(qinput_id); qinput = d.getElementById(qinput_id);
function placeCursorAtEndOnce() { function placeCursorAtEndOnce() {
@ -784,11 +729,11 @@ searx.ready(function() {
createClearButton(qinput); createClearButton(qinput);
// autocompleter // autocompleter
if (searx.autocompleter) { if (searxng.autocompleter) {
searx.autocomplete = AutoComplete.call(w, { searxng.autocomplete = AutoComplete.call(w, {
Url: "./autocompleter", Url: "./autocompleter",
EmptyMessage: searx.translations.no_item_found, EmptyMessage: searxng.translations.no_item_found,
HttpMethod: searx.method, HttpMethod: searxng.method,
HttpHeaders: { HttpHeaders: {
"Content-type": "application/x-www-form-urlencoded", "Content-type": "application/x-www-form-urlencoded",
"X-Requested-With": "XMLHttpRequest" "X-Requested-With": "XMLHttpRequest"
@ -809,10 +754,10 @@ searx.ready(function() {
} }
// vanilla js version of search_on_category_select.js // vanilla js version of search_on_category_select.js
if (qinput !== null && d.querySelector('.help') != null && searx.search_on_category_select) { if (qinput !== null && d.querySelector('.help') != null && searxng.search_on_category_select) {
d.querySelector('.help').className='invisible'; d.querySelector('.help').className='invisible';
searx.on('#categories input', 'change', function() { searxng.on('#categories input', 'change', function() {
var i, categories = d.querySelectorAll('#categories input[type="checkbox"]'); var i, categories = d.querySelectorAll('#categories input[type="checkbox"]');
for(i=0; i<categories.length; i++) { for(i=0; i<categories.length; i++) {
if (categories[i] !== this && categories[i].checked) { if (categories[i] !== this && categories[i].checked) {
@ -826,13 +771,13 @@ searx.ready(function() {
return false; return false;
}); });
searx.on(d.getElementById('time_range'), 'change', submitIfQuery); searxng.on(d.getElementById('time_range'), 'change', submitIfQuery);
searx.on(d.getElementById('language'), 'change', submitIfQuery); searxng.on(d.getElementById('language'), 'change', submitIfQuery);
} }
}); });
})(window, document, window.searx); })(window, document, window.searxng);
;/** ;/**
* *
* Google Image Layout v0.0.1 * Google Image Layout v0.0.1
@ -993,7 +938,7 @@ searx.ready(function() {
} }
}; };
w.searx.ImageLayout = ImageLayout; w.searxng.ImageLayout = ImageLayout;
}(window, document)); }(window, document));
;(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.AutoComplete = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ ;(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.AutoComplete = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){

Binary file not shown.

Binary file not shown.