comparison Lib/IMPL/DOM/XMLReader.pm @ 113:7b14e0122b79

Updated PostToDOM transformation added selectSingleNode method to IMPL::DOM::Node Implemented FormWrapper in the Web::Application::ControllerUnit
author wizard
date Fri, 21 May 2010 02:38:11 +0400
parents 196bf443b5e1
children 1e7f03414b65
comparison
equal deleted inserted replaced
112:0ed8e2541b1c 113:7b14e0122b79
55 $this->{$_current} = $this->Navigator->NavigateCreate($element,%attrs); 55 $this->{$_current} = $this->Navigator->NavigateCreate($element,%attrs);
56 } 56 }
57 57
58 sub _OnEnd { 58 sub _OnEnd {
59 my ($this,$element) = @_; 59 my ($this,$element) = @_;
60 $this->{$_current}->nodeValue($this->Navigator->inflateValue( $this->{$_text}, $this->{$_current} ) ) if length $this->{$_text}; 60 $this->{$_current}->nodeValue($this->Navigator->inflateValue( $this->{$_text} ) ) if length $this->{$_text};
61 $this->{$_text} = pop @{$this->{$_textHistory}}; 61 $this->{$_text} = pop @{$this->{$_textHistory}};
62 $this->{$_current} = $this->Navigator->Back; 62 $this->{$_current} = $this->Navigator->Back;
63 } 63 }
64 64
65 sub _OnChar { 65 sub _OnChar {