text += "\nCurrent Value: "+curr+" ("+e.target.parentNode.getAttribute("raw")+")\n ";
var newval = prompt(text,e.target.parentNode.getAttribute("raw"));
if (newval != null) {
+ if (newval < 0) { newval = 'm'+(-newval);}
getdataprint('../xml-db/put.pl?'+e.target.parentNode.getAttribute("cstr")+'-'+newval,'returntext',false,-1,refresh);
}
}
document.cookie = cname + "=" + cvalue + "; " + expires + ";path= " + path;
}
-
\ No newline at end of file
+
my $RealBin = ".";
$isbrowser = 1;
($entity,$netaddr,$name,$value) = split("-",$req);
+
$file = "$RealBin/cache/$entity.entity";
}
}
$value = $ARGV[3] || "";
}
+ $value =~ s/m/\-/; #encoded negative values
+
###############################