Revision 317
Added by Aaron Marcuse-Kubitza about 13 years ago
bin/map | ||
---|---|---|
94 | 94 |
if map_path == None: |
95 | 95 |
iter_ = xml_dom.NodeElemIter(doc0.documentElement) |
96 | 96 |
util.skip(iter_, xml_dom.is_text) # skip metadata |
97 |
map(process_row, iter_) |
|
98 |
return doc0 |
|
97 |
for child in iter_: |
|
98 |
root.appendChild(child) |
|
99 |
process_row() |
|
99 | 100 |
elif in_is_db: |
100 | 101 |
assert in_is_xpaths |
101 | 102 |
|
Also available in: Unified diff
bin/map: Fixed row processing when no map is used