> I think google just makes really heavy use of javascript (esp. XMLHTTP
> see: http://jibbering.com/2002/4/httprequest.html )
>
> which has the advantage of not being tied to a single implementation (if
> you do it right).
Hi I sill have a dovescript implementation somewhere
This is a small set of javascript object that use xmlhttp
to get clouds/nodes and nodelists maybe somebody whan't to hook it up
to xul. but I think the way to to it in xul is to use de rdf format
sample javascript:
function showlistnodemanagers(){
var doveclient = new DoveClient(getURL());
var dovecloud = doveclient.getCloud(getUser(),getPasswd());
var nodelist = dovecloud.getList("123","/[EMAIL PROTECTED]","");
var data = "";
data += "<table bgcolor='#6A79B4'><tr><th>nodemanagers</th></tr>";
for (var x = 0 ; x < nodelist.getLength() ; x++){
data += "<tr><td>" +
nodelist.getNode(x).getStringValue("name") +" </td></tr>"
}
data += "</table>";
writeObject(data,"content");
}
_______________________________________________
Developers mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/developers