473,804 Members | 2,146 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

flatten an array from xml

Hi Folk,

I use AJAX to load some XML. When I get back to XML, I want to get a
piece of html that is within <info>... lots of html .... </info>

I want to use:

xmlDoc.getEleme ntsByTagName('i nfo');

but that just returns
[Object HTMLCollection]

How can I retrieve the data within it.

Thank you

Nicolaas
Here is my code:
var i = new Array();
var j = 0;
var jmax = 4;
var http_request = false;
var idname = 'GSmap';

function changemap() {
var variables = getformparamete rs(document.get ElementById('ma pform'),
'');
UpdateHtml('_GS map2.php', 'GSmaptype=8' + variables);
initMapGSmap();
createGSlayer(' GSmaptype=1' + variables);
//reset
j = 0;
i = new Array();
return true;
}

function getformparamete rs(obj, getstr) {
//gets all variables from a form
j++;
for (i[j]=0; i[j] < obj.childNodes. length; i[j]++) {
var newobj = obj.childNodes[i[j]];
tgname = newobj.tagName
if(tgname) {
tgname.toLowerC ase;
if (tgname == "INPUT") {
var tvalue = newobj.value;
if(tvalue != 0 && tvalue != "") {
var ttype = newobj.type;
var tname = newobj.name;
if (ttype == "text") {
getstr += "&" + tname + "=" + tvalue ;
}
if (ttype == "checkbox") {
if (newobj.checked ) {
getstr += "&" + tname + "=" + tvalue;
}
else {
getstr += "&" + tname + "=0";
}
}
if (ttype == "radio") {
if (newobj.checked ) {
getstr += "&" + tname + "=" + tvalue;
}
}
}
}
if (tgname == "SELECT") {
var sel = newobj;
var tvalue = sel.options[sel.selectedInd ex].value;
if(tvalue != 0 && tvalue != "") {
getstr += "&" + sel.name + "=" + tvalue;
}
}
}
if(newobj.child Nodes.length 0 && j < jmax) {
getstr = getformparamete rs(newobj, getstr);
}
}

j--;
return getstr;
}

function UpdateHtml(url, parameters) {
http_request = false;
if (window.XMLHttp Request) { // Mozilla, Safari,...
http_request = new XMLHttpRequest( );
if (http_request.o verrideMimeType ) {
// set type accordingly to anticipated content type
http_request.ov errideMimeType( 'text/xml');
//http_request.ov errideMimeType( 'text/html');
}
}
else if (window.ActiveX Object) { // IE
try {
http_request = new ActiveXObject(" Msxml2.XMLHTTP" );
}
catch (e) {
try {
http_request = new ActiveXObject(" Microsoft.XMLHT TP");
}
catch (e) {
alert('could not load data');
}
}
}
if (!http_request) {
alert('Cannot create XMLHTTP instance');
return false;
}
http_request.on readystatechang e = alertContents;
var geturl = url + '?' + parameters;
document.getEle mentById(idname + 'title').innerH TML = "loading new map
.... " + geturl;
http_request.op en('GET', geturl, true);
http_request.as ync = false;
http_request.se nd(null);
}

function alertContents() {
if (http_request.r eadyState == 4) {
if (http_request.s tatus == 200) {
//alert(http_requ est.responseTex t);
var xmlDoc = http_request.re sponseXML;
var titlearray = xmlDoc.getEleme ntsByTagName('t itle');
var infoarray = xmlDoc.getEleme ntsByTagName('i nfo');
var zoomarray = xmlDoc.getEleme ntsByTagName('z oom');
var longitudearray = xmlDoc.getEleme ntsByTagName('l ongitude');
var lattitudearray = xmlDoc.getEleme ntsByTagName('l attitude');
var info = flattenhtmlobje ct(infoarray, "");
document.getEle mentById(idname + 'title').innerH TML =
titlearray[0].firstChild.nod eValue;
document.getEle mentById(idname + 'info').innerHT ML = info;
alert(zoomarray[0].firstChild.nod eValue);
alert(longitude array[0].firstChild.nod eValue);
alert(lattitude array[0].firstChild.nod eValue);
}
else {
alert('There was a problem with the request.');
}
}
else {
}
}

function flattenhtmlobje ct(obj, output) {
output = titlearray[0].firstChild.nod eValue;
return output;
}

Nov 2 '06 #1
2 1939
Hi,

windandwaves wrote:
Hi Folk,

I use AJAX to load some XML. When I get back to XML, I want to get a
piece of html that is within <info>... lots of html .... </info>

I want to use:

xmlDoc.getEleme ntsByTagName('i nfo');

but that just returns
[Object HTMLCollection]
getElementsByTa gName returns a collection of Nodes. Collections in
JavaScript can be handled like arrays, and indexed.

If you're sure that you have only one node named "info", you can use

var nInfo = xmlDoc.getEleme ntsByTagName( "info" )[0]

which is a Node expression.

After that, you can use

nInfo.firstChil d.nodeValue

for example, to access the content of the text node which is the child
of info.

HTH
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Nov 6 '06 #2

Laurent Bugnion wrote:
Hi,

windandwaves wrote:
Hi Folk,

I use AJAX to load some XML. When I get back to XML, I want to get a
piece of html that is within <info>... lots of html .... </info>

I want to use:

xmlDoc.getEleme ntsByTagName('i nfo');

but that just returns
[Object HTMLCollection]

getElementsByTa gName returns a collection of Nodes. Collections in
JavaScript can be handled like arrays, and indexed.

If you're sure that you have only one node named "info", you can use

var nInfo = xmlDoc.getEleme ntsByTagName( "info" )[0]

which is a Node expression.

After that, you can use

nInfo.firstChil d.nodeValue

for example, to access the content of the text node which is the child
of info.

Thank you Laurent for your help... Cool. This s what I found worked,
with some help from another person:
function serializeNode(n ode) {
if(node != undefined) {
var xml = "";
if(_browser.isS afari) {
xml = xmlText(node);
}
else if(_browser.isI E) {
xml = node.xml;
}
else {
var serializer = new XMLSerializer() ;
xml = serializer.seri alizeToString(n ode);
}
return xml;
}
else {
return undefined;
}
}

var DOM_ELEMENT_NOD E = 1;
var DOM_TEXT_NODE = 3;

function xmlText(node) {
var ret = '';
if (node.nodeType == DOM_TEXT_NODE) {
ret += node.nodeValue;
}
else if (node.nodeType == DOM_ELEMENT_NOD E) {
ret += '<' + node.nodeName;
for (var i = 0; i < node.attributes .length; ++i) {
var a = node.attributes[i];
if (a && a.nodeName && a.nodeValue) {
ret += ' ' + a.nodeName;
ret += '="' + a.nodeValue + '"';
}
}
if (node.childNode s.length == 0) {
ret += '/>';
}
else {
ret += '>';
for (var i = 0; i < node.childNodes .length; ++i) {
ret += arguments.calle e(node.childNod es[i]);
}
ret += '</' + node.nodeName + '>';
}
}
return ret;
}

Nov 7 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
3742
by: Francis Avila | last post by:
Below is an implementation a 'flattening' recursive generator (take a nested iterator and remove all its nesting). Is this possibly general and useful enough to be included in itertools? (I know *I* wanted something like it...) Very basic examples: >>> rl = , '678', 9]] >>> list(flatten(rl)) >>> notstring = lambda obj: not isinstance(obj, type(''))
0
1888
by: Francis Avila | last post by:
A few days ago (see the 'itertools.flatten()?' thread from October 28) I became obsessed with refactoring a recursive generator that yielded the leaves of nested iterables. When the dust settled, I had many flatten functions at hand. So I had to time them. Results below. History of the functions (from flattrial.py): # There are three basic features:
10
4151
by: bearophile | last post by:
This is my first Python program (it's an improvement of a recursive version by Luther Blissett). Given a list like this: , ]]] It produces the "flatted" version: I think this operation is quite important, and it's similar to the built-in Mathematica Flatten function: l = {{"a", 2, {}, {3, 5, {4}}}}
3
1355
by: Bengt Richter | last post by:
What am I missing? (this is from 2.4b1, so probably it has been fixed?) def flatten(list): l = for elt in list: ^^^^--must be expecting list instance or other sequence t = type(elt) if t is tuple or t is list: ^^^^--looks like it expects to refer to the type, not the arg
18
2640
by: Ville Vainio | last post by:
For quick-and-dirty stuff, it's often convenient to flatten a sequence (which perl does, surprise surprise, by default): ]]] -> One such implementation is at http://aspn.activestate.com/ASPN/Mail/Message/python-tutor/2302348
181
8934
by: Tom Anderson | last post by:
Comrades, During our current discussion of the fate of functional constructs in python, someone brought up Guido's bull on the matter: http://www.artima.com/weblogs/viewpost.jsp?thread=98196 He says he's going to dispose of map, filter, reduce and lambda. He's going to give us product, any and all, though, which is nice of him.
2
2244
by: Gerrit Hulleman | last post by:
Is there a standard call to flatten a dynamic array and visa versa? It must be a readable string. For a plugin that can only communicate with points to unsigned char I need to transfer information and construct a dynamic array from it. Gerrit Hulleman
8
11831
by: per9000 | last post by:
Hi all, I have a two-dimensional array of data, f.x int's. We can imagine that the array is "really large". Now I want the data in it and store this in a one-dimensional array. The obvious way to do this is a nested for-loop - but we all know O(n^2) is bad. So I am looking for something like ArrayList.ToArray(), or Matlabs A(:). C#
25
4103
by: beginner | last post by:
Hi, I am wondering how do I 'flatten' a list or a tuple? For example, I'd like to transform or ] to . Another question is how do I pass a tuple or list of all the aurgements of a function to the function. For example, I have all the arguments of a function in a tuple a=(1,2,3). Then I want to pass each item in the tuple to a function f so that I make a function call f(1,2,3). In perl it is a given, but in python, I haven't figured out
1
2183
by: farooq.omar | last post by:
Is there a way to specify to Flatten() method as to how many points it should return. example I just want the Flatten() method to give back 100 points (basicallt gp.PointCount==100). Thanks
0
10603
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10353
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10356
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10099
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9176
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7643
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6869
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5536
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4314
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.