mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.5 KiB
70 lines
2.5 KiB
/* global d3:true, require:false, requirejs:false */ // eslint-disable-line no-unused-vars
|
|
|
|
requirejs.config({
|
|
baseUrl: "js/lib",
|
|
paths: {
|
|
app: "../app",
|
|
jquery: "jquery-3.7.0.min",
|
|
visibility: "visibility.min",
|
|
bootstrap: "bootstrap.bundle.min",
|
|
codejar: "codejar.min",
|
|
d3: "d3.min",
|
|
d3evolution: "d3evolution.min",
|
|
d3pie: "d3pie.min",
|
|
fontawesome: "fontawesome.min",
|
|
fontawesome_solid: "solid.min",
|
|
footable: "footable.min",
|
|
linenumbers: "codejar-linenumbers.min",
|
|
nprogress: "nprogress.min",
|
|
prism: "prism",
|
|
stickytabs: "jquery.stickytabs.min"
|
|
},
|
|
shim: {
|
|
app: {deps:["jquery"]},
|
|
codejar: {exports: "CodeJar", deps:["linenumbers"]},
|
|
bootstrap: {exports:"bootstrap"},
|
|
d3evolution: {exports:"D3Evolution", deps:["d3", "jquery"]},
|
|
d3pie: {exports:"D3Pie", deps:["d3.global", "jquery"]},
|
|
fontawesome: {exports: "FontAwesome", deps:["fontawesome_solid"]},
|
|
footable: {deps:["bootstrap", "jquery"]},
|
|
linenumbers: {exports: "withLineNumbers", deps:["prism"]},
|
|
prism: {exports: "Prism"},
|
|
stickytabs: {deps:["jquery"]}
|
|
},
|
|
waitSeconds: 30,
|
|
});
|
|
|
|
document.title = window.location.hostname +
|
|
(window.location.port ? ":" + window.location.port : "") +
|
|
(window.location.pathname !== "/" ? window.location.pathname : "") +
|
|
" - Rspamd Web Interface";
|
|
|
|
// Ugly hack to get d3pie work with requirejs
|
|
define("d3.global", ["d3"], function (d3global) { // eslint-disable-line strict
|
|
d3 = d3global;
|
|
});
|
|
|
|
// Notify user on module loading failure
|
|
requirejs.onError = function (e) {
|
|
"use strict";
|
|
document.getElementById("loading").classList.add("d-none");
|
|
document.getElementsByClassName("notification-area")[0].innerHTML =
|
|
"<div class=\"alert alert-error\">" +
|
|
"<strong>Module loading error: " + e.requireType + ", module: " + e.requireModules + "</strong>" +
|
|
"<button type=\"button\" class=\"btn btn-info btn-xs float-end\" " +
|
|
"onClick=\"window.location.reload(); this.parentNode.parentNode.removeChild(this.parentNode);\" " +
|
|
"title=\"Reload current page\">" +
|
|
"<i class=\"glyphicon glyphicon-repeat\"></i> Reload" +
|
|
"</button>" +
|
|
"</div>";
|
|
throw e;
|
|
};
|
|
|
|
// Load main UI
|
|
require(["app/rspamd", "fontawesome"],
|
|
function (rspamd) {
|
|
"use strict";
|
|
rspamd.setup();
|
|
rspamd.connect();
|
|
}
|
|
);
|