/[suikacvs]/test/html-webhacc/WebHACC/Output.pm
Suika

Diff of /test/html-webhacc/WebHACC/Output.pm

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

revision 1.11 by wakaba, Sun Aug 10 11:49:43 2008 UTC revision 1.17 by wakaba, Fri Aug 15 08:36:41 2008 UTC
# Line 55  sub handle ($;$) { Line 55  sub handle ($;$) {
55    return $_[0]->{handle};    return $_[0]->{handle};
56  } # handle  } # handle
57    
58    sub has_error ($;$) {
59      if (@_ > 1) {
60        if (defined $_[1]) {
61          $_[0]->{has_error} = 1;
62        } else {
63          delete $_[0]->{has_error};
64        }
65      }
66      
67      return $_[0]->{has_error};
68    } # has_error
69    
70  sub set_utf8 ($) {  sub set_utf8 ($) {
71    binmode shift->{handle}, ':utf8';    binmode shift->{handle}, ':utf8';
72  } # set_utf8  } # set_utf8
# Line 104  sub end_tag ($$) { Line 116  sub end_tag ($$) {
116  sub start_section ($%) {  sub start_section ($%) {
117    my ($self, %opt) = @_;    my ($self, %opt) = @_;
118    
119      my $class = 'section';
120    if (defined $opt{role}) {    if (defined $opt{role}) {
121      if ($opt{role} eq 'parse-errors') {      if ($opt{role} eq 'parse-errors') {
122        $opt{id} ||= 'parse-errors';        $opt{id} ||= 'parse-errors';
123        $opt{title} ||= 'Parse Errors Section';        $opt{title} ||= 'Parse Errors Section';
124        $opt{short_title} ||= 'Parse Errors';        $opt{short_title} ||= 'Parse Errors';
125          $class .= ' errors';
126        delete $opt{role};        delete $opt{role};
127      } elsif ($opt{role} eq 'structure-errors') {      } elsif ($opt{role} eq 'structure-errors') {
128        $opt{id} ||= 'document-errors';        $opt{id} ||= 'document-errors';
129        $opt{title} ||= 'Structural Errors';        $opt{title} ||= 'Structural Errors';
130        $opt{short_title} ||= 'Struct. Errors';        $opt{short_title} ||= 'Struct. Errors';
131          $class .= ' errors';
132          delete $opt{role};
133        } elsif ($opt{role} eq 'transfer-errors') {
134          $opt{id} ||= 'transfer-errors';
135          $opt{title} ||= 'Transfer Errors';
136          $opt{short_title} ||= 'Trans. Errors';
137          $class .= ' errors';
138        delete $opt{role};        delete $opt{role};
139      } elsif ($opt{role} eq 'reformatted') {      } elsif ($opt{role} eq 'reformatted') {
140        $opt{id} ||= 'document-tree';        $opt{id} ||= 'document-tree';
141        $opt{title} ||= 'Reformatted Document Source';        $opt{title} ||= 'Reformatted Document Source';
142        $opt{short_title} ||= 'Reformatted';        $opt{short_title} ||= 'Reformatted';
143          $class .= ' dump';
144        delete $opt{role}        delete $opt{role}
145      } elsif ($opt{role} eq 'tree') {      } elsif ($opt{role} eq 'tree') {
146        $opt{id} ||= 'document-tree';        $opt{id} ||= 'document-tree';
147        $opt{title} ||= 'Document Tree';        $opt{title} ||= 'Document Tree';
148        $opt{short_title} ||= 'Tree';        $opt{short_title} ||= 'Tree';
149          $class .= ' dump';
150        delete $opt{role};        delete $opt{role};
151      } elsif ($opt{role} eq 'structure') {      } elsif ($opt{role} eq 'structure') {
152        $opt{id} ||= 'document-structure';        $opt{id} ||= 'document-structure';
153        $opt{title} ||= 'Document Structure';        $opt{title} ||= 'Document Structure';
154        $opt{short_title} ||= 'Structure';        $opt{short_title} ||= 'Structure';
155          $class .= ' dump';
156          delete $opt{role};
157        } elsif ($opt{role} eq 'subdoc') {
158          $class .= ' subdoc';
159          delete $opt{role};
160        } elsif ($opt{role} eq 'source') {
161          $opt{id} ||= 'source-string';
162          $opt{title} ||= 'Document Source';
163          $opt{short_title} ||= 'Source';
164          $class .= ' source';
165          delete $opt{role};
166        } elsif ($opt{role} eq 'result') {
167          $opt{id} ||= 'result-summary';
168          $opt{title} ||= 'Result';
169          $class .= ' result';
170        delete $opt{role};        delete $opt{role};
171      }      }
172    }    }
173    
174    $self->{section_rank}++;    $self->{section_rank}++;
175    $self->html ('<div class=section');    $self->html (qq[<div class="$class"]);
176    if (defined $opt{id}) {    if (defined $opt{id}) {
177      my $id = $self->input->id_prefix . $opt{id};      my $prefix = $self->input->id_prefix;
178        $opt{parent_id} ||= $prefix;
179        my $id = $prefix . $opt{id};
180      $self->html (' id="' . $htescape->($id) . '">');      $self->html (' id="' . $htescape->($id) . '">');
181      if ($self->{section_rank} == 2) {      if ($self->{section_rank} == 2 or length $opt{parent_id}) {
182        my $st = $opt{short_title} || $opt{title};        my $st = $opt{short_title} || $opt{title};
183        push @{$self->{nav}},        push @{$self->{nav}},
184            [$id => $st => $opt{text}];            [$id => $st => $opt{text}];
185                
186        $self->start_tag ('script');        $self->start_tag ('script');
187        $self->html (qq[ addSectionLink ('] . $self->input->id_prefix .        $self->html (qq[ addSectionLink ('$id', ']);
                      qq[$id', ']);  
188        $self->nl_text ($st, text => $opt{text});        $self->nl_text ($st, text => $opt{text});
189          if (defined $opt{parent_id}) {
190            $self->html (q[', '] . $opt{parent_id});
191          }
192        $self->html (q[') ]);        $self->html (q[') ]);
193        $self->end_tag ('script');        $self->end_tag ('script');
194      }      }
# Line 177  sub start_error_list ($%) { Line 219  sub start_error_list ($%) {
219      } elsif ($opt{role} eq 'structure-errors') {      } elsif ($opt{role} eq 'structure-errors') {
220        $opt{id} ||= 'document-errors-list';        $opt{id} ||= 'document-errors-list';
221        delete $opt{role};        delete $opt{role};
222        } elsif ($opt{role} eq 'transfer-errors') {
223          $opt{id} ||= 'transfer-errors-list';
224          delete $opt{role};
225      }      }
226    }    }
227    
228    $self->start_tag ('dl', %opt);    $self->start_tag ('dl', %opt);
229    
230      delete $self->{has_error}; # reset
231  } # start_error_list  } # start_error_list
232    
233  sub end_error_list ($%) {  sub end_error_list ($%) {
234    my ($self, %opt) = @_;    my ($self, %opt) = @_;
235    
236      my $no_error_message = 'No error found.';
237    
238    if (defined $opt{role}) {    if (defined $opt{role}) {
239      if ($opt{role} eq 'parse-errors') {      if ($opt{role} eq 'parse-errors') {
       delete $opt{role};  
240        $self->end_tag ('dl');        $self->end_tag ('dl');
241        ## NOTE: For parse error list, the |add_source_to_parse_error_list|        ## NOTE: For parse error list, the |add_source_to_parse_error_list|
242        ## method is invoked at the end of |generate_source_string_section|,        ## method is invoked at the end of |generate_source_string_section|,
243        ## since that generation method is invoked after the error list        ## since that generation method is invoked after the error list
244        ## is generated.        ## is generated.
245          $no_error_message = 'No parse error found.';
246      } elsif ($opt{role} eq 'structure-errors') {      } elsif ($opt{role} eq 'structure-errors') {
       delete $opt{role};  
247        $self->end_tag ('dl');        $self->end_tag ('dl');
248        $self->add_source_to_parse_error_list ('document-errors-list');        $self->add_source_to_parse_error_list ('document-errors-list');
249          $no_error_message = 'No structural error found.';
250        } elsif ($opt{role} eq 'transfer-errors') {
251          $self->end_tag ('dl');
252          $no_error_message = 'No transfer error found.';
253      } else {      } else {
254        $self->end_tag ('dl');        $self->end_tag ('dl');
255      }      }
256    } else {    } else {
257      $self->end_tag ('dl');      $self->end_tag ('dl');
258    }    }
259    
260      unless ($self->{has_error}) {
261        $self->start_tag ('p', class => 'no-errors');
262        $self->nl_text ($no_error_message);
263      }
264  } # end_error_list  } # end_error_list
265    
266  sub add_source_to_parse_error_list ($$) {  sub add_source_to_parse_error_list ($$) {
# Line 451  sub html_header ($) { Line 508  sub html_header ($) {
508  sub generate_input_section ($$) {  sub generate_input_section ($$) {
509    my ($out, $cgi) = @_;    my ($out, $cgi) = @_;
510    
511      require Encode;
512      my $decode = sub ($) {
513        if (defined $_[0]) {
514          return Encode::decode ('utf-8', $_[0]);
515        } else {
516          return undef;
517        }
518      }; # $decode
519    
520    my $options = sub ($) {    my $options = sub ($) {
521      my $context = shift;      my $context = shift;
522    
523      $out->html (q[<div class=details><p class=legend onclick="nextSibling.style.display = nextSibling.style.display == 'none' ? 'block' : 'none'">]);      $out->html (q[<div class="details default"><p class=legend onclick="nextSibling.style.display = nextSibling.style.display == 'block' ? 'none' : 'block'; parentNode.className = nextSibling.style.display == 'none' ? 'details' : 'details open'">]);
524      $out->nl_text (q[Options]);      $out->nl_text (q[Options]);
525      $out->start_tag ('div');      $out->start_tag ('div');
526    
# Line 524  sub generate_input_section ($$) { Line 590  sub generate_input_section ($$) {
590        $out->nl_text ('Setting innerHTML');        $out->nl_text ('Setting innerHTML');
591        $out->text (': ');        $out->text (': ');
592        $out->start_tag ('input', name => 'e',        $out->start_tag ('input', name => 'e',
593                         value => scalar $cgi->get_parameter ('e'));                         value => $decode->(scalar $cgi->get_parameter ('e')));
594        $out->end_tag ('label');        $out->end_tag ('label');
595      }      }
596    
# Line 532  sub generate_input_section ($$) { Line 598  sub generate_input_section ($$) {
598    }; # $options    }; # $options
599    
600    $out->start_section (id => 'input', title => 'Input');    $out->start_section (id => 'input', title => 'Input');
601      $out->html (q[<script> insertNavSections ('input') </script>]);
602    
603    $out->start_section (id => 'input-url', title => 'By URL');    $out->start_section (id => 'input-url', title => 'By URL',
604                           parent_id => 'input');
605    $out->start_tag ('form', action => './#result-summary',    $out->start_tag ('form', action => './#result-summary',
606                     'accept-charset' => 'utf-8',                     'accept-charset' => 'utf-8',
607                     method => 'get');                     method => 'get');
# Line 546  sub generate_input_section ($$) { Line 614  sub generate_input_section ($$) {
614    $out->start_tag ('input',    $out->start_tag ('input',
615                     name => 'uri',                     name => 'uri',
616                     type => 'url',                     type => 'url',
617                     value => $cgi->get_parameter ('uri'));                     value => $decode->(scalar $cgi->get_parameter ('uri')));
618    $out->end_tag ('label');    $out->end_tag ('label');
619    
   $options->('url');  
   
620    $out->start_tag ('p');    $out->start_tag ('p');
621    $out->start_tag ('button', type => 'submit');    $out->start_tag ('button', type => 'submit');
622    $out->nl_text ('Check');    $out->nl_text ('Check');
623      $out->end_tag ('button');
624    
625      $options->('url');
626    
627    $out->end_tag ('form');    $out->end_tag ('form');
628    $out->end_section;    $out->end_section;
629    
   $out->end_tag ('fieldset');  
   
630    ## TODO: File upload    ## TODO: File upload
631    
632    $out->start_section (id => 'input-text', title => 'By direct input');    $out->start_section (id => 'input-text', title => 'By direct input',
633                           parent_id => 'input');
634    $out->start_tag ('form', action => './#result-summary',    $out->start_tag ('form', action => './#result-summary',
635                     'accept-charset' => 'utf-8',                     'accept-charset' => 'utf-8',
636                     method => 'post');                     method => 'post');
# Line 575  sub generate_input_section ($$) { Line 643  sub generate_input_section ($$) {
643    $out->start_tag ('br');    $out->start_tag ('br');
644    $out->start_tag ('textarea',    $out->start_tag ('textarea',
645                     name => 's');                     name => 's');
646    my $s = $cgi->get_parameter ('s');    my $s = $decode->($cgi->get_parameter ('s'));
647    $out->html ($htescape_value->($s)) if defined $s;    $out->html ($htescape_value->($s)) if defined $s;
648    $out->end_tag ('textarea');    $out->end_tag ('textarea');
649    $out->end_tag ('label');    $out->end_tag ('label');
650    
   $options->('text');  
   
651    $out->start_tag ('p');    $out->start_tag ('p');
652    $out->start_tag ('button', type => 'submit',    $out->start_tag ('button', type => 'submit',
653                     onclick => 'form.method = form.s.value.length > 512 ? "post" : "get"');                     onclick => 'form.method = form.s.value.length > 512 ? "post" : "get"');
654    $out->nl_text ('Check');    $out->nl_text ('Check');
655    $out->end_tag ('button');    $out->end_tag ('button');
656    
657      $options->('text');
658    
659    $out->end_tag ('form');    $out->end_tag ('form');
660    $out->end_section;    $out->end_section;
661    
662      $out->script (q[
663        if (!document.webhaccNavigated &&
664            document.getElementsByTagName ('textarea')[0].value.length > 0) {
665          showTab ('input-text');
666          document.webhaccNavigated = false;
667        }
668      ]);
669    
670    $out->end_section;    $out->end_section;
671  } # generate_input_section  } # generate_input_section
672    

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.17

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24