/[webpac2]/Webpacus/lib/Webpacus/Controller/Editor.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Webpacus/lib/Webpacus/Controller/Editor.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 179 by dpavlin, Sun Nov 27 15:14:54 2005 UTC revision 180 by dpavlin, Sun Nov 27 17:26:43 2005 UTC
# Line 4  use strict; Line 4  use strict;
4  use warnings;  use warnings;
5  use base 'Catalyst::Controller';  use base 'Catalyst::Controller';
6    
7    use HTML::Tidy;
8  use Data::Dumper;  use Data::Dumper;
9    
10  =head1 NAME  =head1 NAME
# Line 168  sub record : Local { Line 169  sub record : Local {
169    
170          my $webpac = $c->comp('Model::WebPAC');          my $webpac = $c->comp('Model::WebPAC');
171    
172            my $html = $webpac->record( mfn => $mfn, template => $template_filename );
173    
174            if ($html) {
175                    $c->log->debug('check html with tidy');
176                    my $tidy = new HTML::Tidy;
177                    $tidy->ignore( text => [
178                            qr/DOCTYPE/, qr/unsupported/, qr/proprietary/i,
179                            qr/invalid character code/,
180                            qr/inserting missing 'title' element/,
181                            qr/lacks "summary" attribute/,
182                    ] );
183                    if ( $tidy->parse('html', $html) ) {
184                            if ( $tidy->messages ) {
185                                    $html .= '<div class="tidy">HTML Tidy output:';
186    
187                                    my @lines = split(/[\n\r]+/, $html);
188    
189                                    # Escape <, >, & and ", and to produce valid XML
190                                    my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
191                                    my $escape_re  = join '|' => keys %escape;
192    
193    
194                                    foreach my $m ( $tidy->messages ) {
195                                            my $c = $lines[ ( $m->line - 2 ) ];
196                                            my $txt = $m->as_string;
197                                            $c =~ s/($escape_re)/$escape{$1}/g;
198                                            $txt =~ s/($escape_re)/$escape{$1}/g;
199                                            my $class = '';
200                                            $class = ' class="tidy_'.lc($1).'"' if ($txt =~ /(Warning|Error):/s);
201                                            $html .= "<div${class}>$txt | <tt>$c</tt></div>";
202                                    }
203                                    $html .= '</div>';
204                            }
205                    } else {
206                            $html .= qq{<div class="tidy tidy_error">Can't parse this record with HTML Tidy!</div>};
207                    }
208            }
209                    
210                    
211          $c->response->content_type('text/html; charset=utf-8');          $c->response->content_type('text/html; charset=utf-8');
212          $c->res->output(          $c->res->output( $html );
                 $webpac->record( mfn => $mfn, template => $template_filename )  
         );  
213  }  }
214    
215    

Legend:
Removed from v.179  
changed lines
  Added in v.180

  ViewVC Help
Powered by ViewVC 1.1.26