web/ldt/utils/xml.py
author samuel huron <admin@cybunk.com>
Mon, 14 Jun 2010 15:23:07 +0200
changeset 40 06e691528710
parent 0 ecdfc63274bf
permissions -rw-r--r--
update CSS for embed player update link to json with absolute URL (temporaly ) <- modify this

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