web/ldt/utils/xml.py
author veltr
Fri, 25 May 2012 16:32:31 +0200
changeset 68 4def147b1604
parent 0 ecdfc63274bf
permissions -rw-r--r--
Added a visualization of the contents of clusters + mousewheel support

def getText(anode):
	nodelist = anode.childNodes
	rc = ""
	for node in nodelist:
		if node.nodeType == node.TEXT_NODE:
			rc = rc + node.data
	return rc