* brisk / fieldify - commons.js
*
* Copyright (C) 2006-2016 Matteo Nastasi
- * mailto: nastasi@alternativeoutput.it
+ * mailto: nastasi@alternativeoutput.it
* matteo.nastasi@milug.org
* web: http://www.alternativeoutput.it
*
var mlang_commons = { 'imgload_a' : { 'it' : 'Immagini caricate ',
'en' : 'Loaded images ' },
- 'imgload_b' : { 'it' : '%.',
+ 'imgload_b' : { 'it' : '%.',
'en' : '%.' },
'gamleav' : { 'it' : 'Sei sicuro di volere lasciare questa mano?' ,
'en' : 'Are you sure to leave this game?' },
return hex;
}
-function getStyle(x,IEstyleProp, MozStyleProp)
+function getStyle(x,IEstyleProp, MozStyleProp)
{
if (x.currentStyle) {
var y = x.currentStyle[IEstyleProp];
/*Copy the default setInterval behavior*/
var nativeSetInterval = window.setInterval;
- window.setInterval = function(fn,ms) {
+ window.setInterval = function(fn,ms) {
var param = [];
if(arguments.length <= 2) {
return nativeSetInterval(fn,ms);
else {
for(var i=2;i<arguments.length;i+=1) {
param[i-2] = arguments[i];
- }
+ }
}
-
+
if(typeof(fn)=='function') {
-
+
return (function (fn,ms,param) {
- var fo = function () {
+ var fo = function () {
fn.apply(window,param);
- };
- return nativeSetInterval(fo,ms);
+ };
+ return nativeSetInterval(fo,ms);
})(fn,ms,param);
}
else if(typeof(fn)=='string')
/*Copy the default setTimeout behavior*/
var nativeSetTimeout = window.setTimeout;
- window.setTimeout = function(fn,ms) {
+ window.setTimeout = function(fn,ms) {
var param = [];
if(arguments.length <= 2) {
return nativeSetTimeout(fn,ms);
else {
for(var i=2;i<arguments.length;i+=1) {
param[i-2] = arguments[i];
- }
+ }
}
-
+
if(typeof(fn)=='function') {
-
+
return (function (fn,ms,param) {
- var fo = function () {
+ var fo = function () {
fn.apply(window,param);
- };
- return nativeSetTimeout(fo,ms);
+ };
+ return nativeSetTimeout(fo,ms);
})(fn,ms,param);
}
else if(typeof(fn)=='string')
function preload_images(arr,idx)
{
var im = new Image;
-
+
// $("imgct").innerHTML = "Stiamo caricando "+arr[idx]+"%.<br>";
im.onload = update_images;
im.onerror = error_images;
{
var xhr_wr = createXMLHttpRequest();
var is_conn = (sess == "not_connected" ? false : true);
-
+
// alert("xhr_wr: "+xhr_wr+" is_conn: "+is_conn);
xhr_wr.open('GET', 'index_wr.php?&'+(is_conn ? 'sess='+sess : '')+'&stp='+gst.st+'&mesg='+mesg, (is_conn ? true : false));
xhr_wr.setRequestHeader("If-Modified-Since", new Date().toUTCString());
}
xhr_wr.onreadystatechange = function() { return; };
xhr_wr.send(post_collect);
-
+
if (xhr_wr.responseText != null) {
// console.log("server_request:resp: "+xhr_wr.responseText);
return (xhr_wr.responseText);
- }
+ }
else
return (null);
}
function act_tav()
{
- act_chatt('/tav '+$('txt_in').value);
+ act_chatt('/tav '+$('txt_in').value);
$('txt_in').value = '';
}
function postact_logout()
{
// alert("postact_logout");
- try {
+ try {
xstm.abort();
} catch (e) {}
}
slowimg.prototype = {
- img: null,
+ img: null,
st: null,
x0: 0,
y0: 0,
tout: 0,
action: null,
srcend: null,
-
+
setstart: function(x0,y0)
{
this.x0 = x0;
this.y0 = y0;
},
-
+
setaction: function(act)
{
this.action = act;
},
-
- settime: function(time)
+
+ settime: function(time)
{
this.time = (time < this.deltat ? this.deltat : time);
this.step_n = parseInt(this.time / this.deltat);
this.step_free = parseInt(this.step_n * this.free);
}
},
-
+
start: function(st)
{
// $("logz").innerHTML += " xxxxxxxxxxxxxxxxxxxxxSTART<br>";
this.st = st;
this.st.st_loc_new++;
-
+
this.img.style.visibility = "visible";
setTimeout(function(obj){ obj.animate(); }, this.deltat, this);
},
-
+
animate: function()
{
// $("log").innerHTML = "Val " + this.step_cur + " N: " + this.step_n + "<br>";
{
var clo, box;
var t = this;
-
+
this.st = st;
this.ancestor = document.body;
-
+
this.st.st_loc_new++;
clo = document.createElement("input");
box.style.visibility = "visible";
this.notitag = box;
-
+
this.ancestor.appendChild(box);
-
+
this.toutid = setTimeout(function(obj){ obj.unblock(); }, tout, this);
if (block_time != 0) {
notitag: null,
toutid: null,
clo: null,
- clodiv: null,
+ clodiv: null,
butt: null,
tblkid: null,
this.st.st_loc++;
}
},
-
+
hide: function()
{
clearTimeout(this.toutid);
{
notify_ex.call(this, st, text, tout, butt, w, h, false, 0);
}
-
+
function globst() {
this.st = -1;
this.st_loc = -1;
function remark_step()
{
var ct = $("remark").l_remct;
-
+
if (ct != 0) {
ct++;
if (ct > 2)
}
else
$("remark").className = "remark0";
-
+
return;
}
function italizer(ga)
{
var pre, pos;
- if (ga[0] & 2)
+ if (ga[0] & 2)
return "<i>"+ga[1]+"</i>";
else
return ga[1];
content = user_decorator(el, true);
content += state_add(el[0],(typeof(el[2]) != 'undefined' ? el[2] : null));
-
+
return (content);
}
}
// $("txt").innerHTML;
-
+
if (must_scroll) {
$("txt").scrollTop = 10000000;
}
}
function onunload_cb () {
-
+
if (typeof(xstm) != "undefined")
xstm.the_end = true;
act_shutdown();
-
+
return(false);
}
function room_checkspace(emme,tables,inpe)
{
nome = "<b>";
- for (i = 0 ; i < emme ; i++)
+ for (i = 0 ; i < emme ; i++)
nome += "m";
nome += "</b>";
alta = "";
- for (i = 0 ; i < 5 ; i++)
+ for (i = 0 ; i < 5 ; i++)
alta += nome+"<br>";
for (i = 0 ; i < tables ; i++) {
var length = div.childNodes.length, results = new Array(length);
while (length--)
results[length] = div.childNodes[length];
-
+
for (i=0 ; i<results.length ; i++)
memo = memo + results[i].nodeValue;
}