##// END OF EJS Templates
Signal Chain GUI...
Signal Chain GUI -Se agregaron nuevos filtros a los graficos de Spectr ay Cross Spectra (y se corrigieron los Bugs) -Se corrigio la seleccion de perfiles en los datos de la USRP -Se validaron la mayoria de las funcionalidades del GUI v2.1

File last commit:

r208:f0e2ebb4337f
r600:19c1076f2d8a
Show More
xmlprint.py
13 lines | 368 B | text/x-python | PythonLexer
'''
Created on Septembre, 2012
@author: roj-idl71
'''
from xml.etree import ElementTree
from xml.dom import minidom
def prettify(elem):
"""Return a pretty-printed XML string for the Element.
"""
rough_string = ElementTree.tostring(elem, 'utf-8')
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")