X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FUtils.pm;h=e232045bcd770bfc37f1cd7dc78010e82059ab1f;hb=f792544b44ff2be33f76f4b13fa6b36a0f5c5a52;hp=e52747f635c16ff933015a44de9dbcf0996af9a0;hpb=b3376634242bd92575c5f5af28a41c526b6412df;p=irspy-moved-to-github.git diff --git a/lib/ZOOM/IRSpy/Utils.pm b/lib/ZOOM/IRSpy/Utils.pm index e52747f..e232045 100644 --- a/lib/ZOOM/IRSpy/Utils.pm +++ b/lib/ZOOM/IRSpy/Utils.pm @@ -1,4 +1,4 @@ -# $Id: Utils.pm,v 1.5 2006-11-01 11:46:10 mike Exp $ +# $Id: Utils.pm,v 1.7 2006-11-07 17:45:37 mike Exp $ package ZOOM::IRSpy::Utils; @@ -122,13 +122,35 @@ sub dom_add_element { warn "no parent node '$ppath': not adding '$element'='$value'"; return; } - warn scalar(@nodes), " nodes match parent '$ppath'" if @nodes > 1; my $node = $nodes[0]; - if (1) { + my $new = new XML::LibXML::Text($value); + foreach my $predecessor (reverse @addAfter) { + my($child) = $xc->findnodes($predecessor, $node); + if (defined $child) { + $node->insertAfter($new, $child); + print "Added after '$predecessor'\n"; + return; + } + } + + # Didn't find any of the nodes that are supposed to precede the + # new one, so we need to insert the new node as the first of the + # parent's children. However *sigh* there is no prependChild() + # analogous to appendChild(), so we have to go the long way round. + my @children = $node->childNodes(); + if (@children) { + $node->insertBefore($new, $children[0]); + print "Added new first child\n"; + } else { + $node->appendChild($new); + print "Added new only child\n"; + } + + if (0) { my $text = xml_encode(inheritance_tree($xc)); - $text =~ s/\n/$1/sg; + $text =~ s/\n/$&/sg; print "
$text
\n"; } }