Check before commit!

This commit is contained in:
Michal Čihař
2006-11-17 08:49:30 +00:00
parent f0780e3129
commit fb9a3a598e
264 changed files with 12328 additions and 5376 deletions

117
pmd/scripts/ajax.js Normal file
View File

@@ -0,0 +1,117 @@
/* $Id$ */
var http_request = false;
var xmldoc;
var textdoc;
function makeRequest(url, parameters)
{
http_request = false;
if (window.XMLHttpRequest)
{ // Mozilla, Safari,...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) { http_request.overrideMimeType('text/xml'); }
}
else
if (window.ActiveXObject)
{ // IE
try { http_request = new ActiveXObject("Msxml2.XMLHTTP"); }
catch (e)
{
try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e) {}
}
}
if (!http_request)
{
alert('Giving up :( Cannot create an XMLHTTP instance');
return false;
}
http_request.onreadystatechange = alertContents;
http_request.open('POST', url, true);
http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http_request.setRequestHeader("Content-length", parameters.length);
http_request.setRequestHeader("Connection", "close");
http_request.send(parameters);
}
function alertContents()
{
if (http_request.readyState == 1 )
{
document.getElementById("layer_action").style.left = document.body.clientWidth + document.body.scrollLeft - 85;
document.getElementById("layer_action").style.top = document.body.scrollTop + 10;
document.getElementById("layer_action").style.visibility = 'visible'; document.getElementById("layer_action").innerHTML = 'Loading...';
}
if (http_request.readyState == 2 ) document.getElementById("layer_action").innerHTML = 'Loaded';
if (http_request.readyState == 3 ) document.getElementById("layer_action").innerHTML = 'Loading 99%';
if (http_request.readyState == 4)
{
if (http_request.status == 200)
{
xmldoc = http_request.responseXML;
textdoc = http_request.responseText;
PrintXML();
document.getElementById("layer_action").style.visibility = 'hidden';
}
else
{
alert('There was a problem with the request.');
}
}
}
function PrintXML()
{
var root = xmldoc.getElementsByTagName('root').item(0); //root
if(root==null) // if error
{
myWin=window.open('','Report','width=400, height=250, resizable=1, scrollbars=1, status=1');
var tmp = myWin.document;
tmp.write(textdoc);
tmp.close();
}
else
{
//alert(xmldoc.getElementsByTagName('root')[0]);
//alert(root.attributes[0].nodeValue);
if(root.attributes['act'].nodeValue == 'save_pos')
alert(root.attributes['return'].nodeValue);
if(root.attributes['act'].nodeValue == 'relation_upd')
{
alert(root.attributes['return'].nodeValue);
if(root.attributes['b'].nodeValue=='1')
{
contr.splice(root.attributes['K'].nodeValue, 1);
Re_load();
}
}
if(root.attributes['act'].nodeValue == 'relation_new')
{
alert(root.attributes['return'].nodeValue);
if(root.attributes['b'].nodeValue=='1')
{
var i = contr.length;
var t1 = root.attributes['DB1'].nodeValue + '.' + root.attributes['T1'].nodeValue;
var f1 = root.attributes['F1'].nodeValue;
var t2 = root.attributes['DB2'].nodeValue + '.' + root.attributes['T2'].nodeValue;
var f2 = root.attributes['F2'].nodeValue;
contr[i] = new Array();
contr[i][''] = new Array();
contr[i][''][t2] = new Array();
contr[i][''][t2][f2] = new Array();
contr[i][''][t2][f2][0] = t1;
contr[i][''][t2][f2][1] = f1;
Re_load();
}
}
}
}