Server IP : 104.21.38.3 / Your IP : 108.162.226.96 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/rspamd/www/js/ |
Upload File : |
/* global d3:writable, require, requirejs */ // eslint-disable-line no-unused-vars requirejs.config({ baseUrl: "js/lib", paths: { app: "../app", jquery: "jquery-3.7.1.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", deps: ["jquery"]}, // Popovers require jQuery d3: {exports: "d3"}, d3evolution: {exports: "D3Evolution", deps: ["d3.global", "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"], (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"], (rspamd) => { "use strict"; rspamd.connect(); });