web/ldt/utils/xml.py
author veltr
Wed, 04 Jul 2012 16:13:49 +0200
changeset 73 642ef9139fad
parent 0 ecdfc63274bf
permissions -rw-r--r--
Replaced "Production" by "Publication". Added beautiful arrows

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