' + str + '';
}
function hoverList(name, list) {
if (!list || list.length == 0)
return '';
var str = ''
str += '' + escapeHTML(name) + ' (' + list.length + ')
';
for (var i in list) {
str += escapeHTML(list[i]) + '
';
}
return str + '
';
}
function hoverString(name, str) {
if (!str)
return '';
if (typeof(str) != 'string')
str = str.toString();
return ''
+ '' + escapeHTML(name) + ':
'
+ escapeHTML(str) + '
'
+ '
';
}
function constantWidth(str, width) {
if (typeof(str) != 'string')
str = str.toString();
return '' + escapeHTML(str) + '';
}
// Code that fetches & displays the actual list
master.draw = function(json) {
if (json == null)
return;
// pre-filter by chosen protocol range
var tmp = master.proto_range ? JSON.parse(master.proto_range) : null;
if (tmp) {
json = {
list: json.list.filter(function(server) {
return !(tmp[0] > server.proto_max || tmp[1] < server.proto_min);
}),
total: {clients: 0},
total_max: {clients: "?", servers: "?"}
};
json.list.forEach(function(server) { json.total.clients += server.clients; });
json.total.servers = json.list.length;
}
var html = window.render.servers(json);
jQuery('#server_list').html(html);
jQuery('.proto_select', '#server_list').on('change', function(e) {
master.proto_range = e.target.value;
master.draw(master.cached_json); // re-render
});
};
master.get = function() {
jQuery.getJSON(master.list_url, function(json) {
master.cached_json = json;
master.draw(json);
});
};
master.loaded = function() {
if (!master.no_refresh)
setInterval(master.get, 60 * 1000);
master.get();
};
master.showAll = function() {
delete master.min_clients;
delete master.limit;
master.get();
};
// https://github.com/pyrsmk/toast
this.toast=function(){var e=document,t=e.getElementsByTagName("head")[0],n=this.setTimeout,r="createElement",i="appendChild",s="addEventListener",o="onreadystatechange",u="styleSheet",a=10,f=0,l=function(){--f},c,h=function(e,r,i,s){if(!t)n(function(){h(e)},a);else if(e.length){c=-1;while(i=e[++c]){if((s=typeof i)=="function"){r=function(){return i(),!0};break}if(s=="string")p(i);else if(i.pop){p(i[0]),r=i[1];break}}d(r,Array.prototype.slice.call(e,c+1))}},p=function(n,s){++f,/\.css$/.test(n)?(s=e[r]("link"),s.rel=u,s.href=n,t[i](s),v(s)):(s=e[r]("script"),s.src=n,t[i](s),s[o]===null?s[o]=m:s.onload=l)},d=function(e,t){if(!f)if(!e||e()){h(t);return}n(function(){d(e,t)},a)},v=function(e){if(e.sheet||e[u]){l();return}n(function(){v(e)},a)},m=function(){/ded|co/.test(this.readyState)&&l()};h(arguments)};
toast(master.root + 'style.css', master.root + 'servers.js', function() {
if (typeof(jQuery) != 'undefined')
return master.loaded();
else
toast('//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js', master.loaded);
});