Ignore:
Timestamp:
Jan 21, 2008, 6:58:15 PM (16 years ago)
Author:
ole
Message:

Work on IP tracking:
Checksums, removed DOCTYPE for the time being, formatted, and more checks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/utilities/xml_tools.py

    r4944 r4963  
    2222
    2323
     24def pretty_print_tree(n, indent=0):
     25    print n
     26
    2427def parse(fid):
    2528    """Parse XML file descriptor and return DOM object.
     
    3033    #doc = minidom.parse(fid, make_parser())
    3134
     35    fid.seek(0)
    3236    doc = minidom.parse(fid)   
    3337    return doc
Note: See TracChangeset for help on using the changeset viewer.