##// END OF EJS Templates
carpeta figure:...
carpeta figure: imagenes de las opciones open,crear,guardar,play,stop mainwindow: se añadio eventos basicos y se ordeno en orden de eventos y luego metodos usados por dichos eventos ui_mainwindow: se modifico algunas opciones de la interfaz grafica nombre de proyecto, y se le añadio nombres a los frames de proyecto,voltage,spectra,correlation

File last commit:

r208:f0e2ebb4337f
r253:5dec07d455af
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=" ")