From e3aba5d3bacf45188bcb5d2b65da66bb8cfe14dd Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 2 Aug 2007 11:27:32 +0000 Subject: [PATCH] _half_decent_appendWellBalancedChunk() is now always called with an XML node and never with an XPath Context object. The latter doesn't work now, although it did in the past: I can only assume that a subsequent package update of libxml2 has broken the old API. --- lib/ZOOM/IRSpy/Record.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/ZOOM/IRSpy/Record.pm b/lib/ZOOM/IRSpy/Record.pm index 4ba8bb6..6f80ac3 100644 --- a/lib/ZOOM/IRSpy/Record.pm +++ b/lib/ZOOM/IRSpy/Record.pm @@ -1,4 +1,4 @@ -# $Id: Record.pm,v 1.25 2007-05-04 12:09:24 mike Exp $ +# $Id: Record.pm,v 1.26 2007-08-02 11:27:32 mike Exp $ package ZOOM::IRSpy::Record; ### I don't think there's any reason for this to be separate from @@ -82,7 +82,8 @@ sub append_entry { # fully general version would work its way through each # component of the XPath, but for now we just treat it as a # single chunk to go inside the top-level node. - $this->_half_decent_appendWellBalancedChunk($xc, "<$xpath>"); + $this->_half_decent_appendWellBalancedChunk($xc->getContextNode(), + "<$xpath>"); @nodes = $xc->findnodes($xpath); die("still no matches for '$xpath' after creating: can't append") if @nodes == 0; @@ -146,6 +147,7 @@ sub _half_decent_appendWellBalancedChunk { if (1) { $frag =~ s,>, xmlns:irspy="$ZOOM::IRSpy::Utils::IRSPY_NS">,; + warn "calling appendWellBalancedChunk($node)"; $node->appendWellBalancedChunk($frag); return; } -- 1.7.10.4