5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #simple parser for HTML with Template Toolkit directives. Tokens are put into @tokens and are accesible via next_token and peep_token
22 use base
qw(HTML::Parser);
27 #seems to be handled post tokenizer
28 ##hash where key is tag we are interested in and the value is a hash of the attributes we want
29 #my %interesting_tags = (
30 # img => { alt => 1 },
33 #tokens found so far (used like a stack)
36 #shiftnext token or undef
41 #unshift token back on @tokens
44 unshift @tokens, shift;
47 #have a peep at next token
53 #please use this method INSTEAD of the HTML::Parser->parse_file method (and HTML::Parser->parse)
54 #signature build_tokens( self, filename)
56 my ($self, $filename) = @_;
57 $self->{filename
} = $filename;
58 $self->handler(start
=> "start", "self, line, tagname, attr, text"); #signature is start( self, linenumber, tagname, hash of attributes, origional text )
59 $self->handler(text
=> "text", "self, line, text, is_cdata"); #signature is text( self, linenumber, origional text, is_cdata )
60 $self->handler(end
=> "end", "self, line, tag, attr, text"); #signature is end( self, linenumber, tagename, origional text )
61 $self->handler(declaration
=> "declaration", "self, line, text, is_cdata"); # declaration
62 $self->handler(comment
=> "comment", "self, line, text, is_cdata"); # comments
63 # $self->handler(default => "default", "self, line, text, is_cdata"); # anything else
64 $self->marked_sections(1); #treat anything inside CDATA tags as text, should really make it a C4::TmplTokenType::CDATA
65 $self->unbroken_text(1); #make contiguous whitespace into a single token (can span multiple lines)
66 $self->parse_file($filename);
70 #handle parsing of text
74 my $work = shift; # original text
77 # if there is a template_toolkit tag
78 if( $work =~ m/\[%.*?%\]/ ){
79 #everything before this tag is text (or possibly CDATA), add a text token to tokens if $`
81 my $t = C4::TmplToken->new( $`, ($is_cdata? C4
::TmplTokenType
::CDATA
: C4
::TmplTokenType
::TEXT
), $line, $self->{filename
} );
85 #the match itself is a DIRECTIVE $&
86 my $t = C4
::TmplToken
->new( $&, C4
::TmplTokenType
::DIRECTIVE
, $line, $self->{filename
} );
89 # put work still to do back into work
92 # If there is some left over work, treat it as text token
93 my $t = C4
::TmplToken
->new( $work, ($is_cdata? C4
::TmplTokenType
::CDATA
: C4
::TmplTokenType
::TEXT
), $line, $self->{filename
} );
104 my $work = shift; #original text
105 my $is_cdata = shift;
106 my $t = C4
::TmplToken
->new( $work, ($is_cdata? C4
::TmplTokenType
::CDATA
: C4
::TmplTokenType
::TEXT
), $line, $self->{filename
} );
113 my $work = shift; #original text
114 my $is_cdata = shift;
115 my $t = C4
::TmplToken
->new( $work, ($is_cdata? C4
::TmplTokenType
::CDATA
: C4
::TmplTokenType
::TEXT
), $line, $self->{filename
} );
122 my $work = shift; #original text
123 my $is_cdata = shift;
124 my $t = C4
::TmplToken
->new( $work, ($is_cdata? C4
::TmplTokenType
::CDATA
: C4
::TmplTokenType
::TEXT
), $line, $self->{filename
} );
129 #handle opening html tags
134 my $hash = shift; #hash of attr/value pairs
135 my $text = shift; #origional text
136 my $t = C4
::TmplToken
->new( $text, C4
::TmplTokenType
::TAG
, $line, $self->{filename
});
138 # tags seem to be uses in an 'interesting' way elsewhere..
139 for my $key( %$hash ) {
140 next unless defined $hash->{$key};
142 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 1 ];
145 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 0 ];
148 $t->set_attributes( \
%attr );
152 #handle closing html tags
159 # what format should this be in?
160 my $t = C4
::TmplToken
->new( $text, C4
::TmplTokenType
::TAG
, $line, $self->{filename
} );
162 # tags seem to be uses in an 'interesting' way elsewhere..
163 for my $key( %$hash ) {
164 next unless defined $hash->{$key};
165 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 0 ];
167 $t->set_attributes( \
%attr );