/[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.9 by wakaba, Sun Jul 27 10:33:46 2008 UTC revision 1.12 by wakaba, Thu Aug 14 07:19:44 2008 UTC
# Line 16  my $htescape = sub ($) { Line 16  my $htescape = sub ($) {
16    return $s;    return $s;
17  };  };
18    
19    my $htescape_value = sub ($) {
20      my $s = $_[0];
21      $s =~ s/&/&/g;
22      $s =~ s/</&lt;/g;
23      $s =~ s/>/&gt;/g;
24      $s =~ s/"/&quot;/g;
25      return $s;
26    };
27    
28  sub new ($) {  sub new ($) {
29    require WebHACC::Input;    require WebHACC::Input;
30    return bless {nav => [], section_rank => 1,    return bless {nav => [], section_rank => 1,
# Line 75  sub url ($$%) { Line 84  sub url ($$%) {
84    
85  sub start_tag ($$%) {  sub start_tag ($$%) {
86    my ($self, $tag_name, %opt) = @_;    my ($self, $tag_name, %opt) = @_;
87    $self->html ('<' . $htescape->($tag_name)); # escape for safety    $self->html ('<' . $htescape_value->($tag_name)); # escape for safety
88    if (exists $opt{id}) {    if (exists $opt{id}) {
89      my $id = $self->input->id_prefix . $opt{id};      my $id = $self->input->id_prefix . $opt{id};
90      $self->html (' id="' . $htescape->($id) . '"');      $self->html (' id="' . $htescape_value->($id) . '"');
91      delete $opt{id};      delete $opt{id};
92    }    }
93    for (keys %opt) {    # for safety    for (keys %opt) {    # for safety
94      $self->html (' ' . $htescape->($_) . '="' . $htescape->($opt{$_}) . '"');      $self->html (' ' . $htescape_value->($_) . '="' .
95                     $htescape_value->($opt{$_}) . '"');
96    }    }
97    $self->html ('>');    $self->html ('>');
98  } # start_tag  } # start_tag
99    
100  sub end_tag ($$) {  sub end_tag ($$) {
101    shift->html ('</' . $htescape->(shift) . '>');    shift->html ('</' . $htescape_value->(shift) . '>');
102  } # end_tag  } # end_tag
103    
104  sub start_section ($%) {  sub start_section ($%) {
# Line 127  sub start_section ($%) { Line 137  sub start_section ($%) {
137    $self->html ('<div class=section');    $self->html ('<div class=section');
138    if (defined $opt{id}) {    if (defined $opt{id}) {
139      my $id = $self->input->id_prefix . $opt{id};      my $id = $self->input->id_prefix . $opt{id};
140      $self->html (' id="' . $htescape->($id) . '"');      $self->html (' id="' . $htescape->($id) . '">');
141      push @{$self->{nav}},      if ($self->{section_rank} == 2 or defined $opt{parent_id}) {
142          [$id => $opt{short_title} || $opt{title} => $opt{text}]        my $st = $opt{short_title} || $opt{title};
143          if $self->{section_rank} == 2;        push @{$self->{nav}},
144              [$id => $st => $opt{text}];
145          
146          $self->start_tag ('script');
147          $self->html (qq[ addSectionLink ('] . $self->input->id_prefix .
148                         qq[$id', ']);
149          $self->nl_text ($st, text => $opt{text});
150          if (defined $opt{parent_id}) {
151            $self->html (q[', '] . $opt{parent_id});
152          }
153          $self->html (q[') ]);
154          $self->end_tag ('script');
155        }
156      } else {
157        $self->html ('>');
158    }    }
159    my $section_rank = $self->{section_rank};    my $section_rank = $self->{section_rank};
160    $section_rank = 6 if $section_rank > 6;    $section_rank = 6 if $section_rank > 6;
161    $self->html ('><h' . $section_rank . '>');    $self->html ('<h' . $section_rank . '>');
162    $self->nl_text ($opt{title}, text => $opt{text});    $self->nl_text ($opt{title}, text => $opt{text});
163    $self->html ('</h' . $section_rank . '>');    $self->html ('</h' . $section_rank . '>');
164  } # start_section  } # start_section
# Line 296  my $get_node_path = sub ($) { Line 320  my $get_node_path = sub ($) {
320    return join '/', @r;    return join '/', @r;
321  }; # $get_node_path  }; # $get_node_path
322    
323    my $get_object_path = sub ($) {
324      my $node = shift;
325      my @r;
326      while (defined $node) {
327        my $ref = ref $node;
328        $ref =~ /([^:]+)$/;
329        my $rs = $1;
330        my $node_name = $node->node_name;
331        if (defined $node_name) {
332          $rs .= ' <code>' . $htescape->($node_name) . '</code>';
333        }
334        $node = undef;
335        unshift @r, $rs;
336      }
337      return join '/', @r;
338    }; # $get_object_path
339    
340  sub node_link ($$) {  sub node_link ($$) {
341    my ($self, $node) = @_;    my ($self, $node) = @_;
342    $self->xref ($get_node_path->($node), target => 'node-' . refaddr $node);    if ($node->isa ('Message::IF::Node')) {
343        $self->xref ($get_node_path->($node), target => 'node-' . refaddr $node);
344      } else {
345        $self->html ($get_object_path->($node));
346      }
347  } # node_link  } # node_link
348    
349  {  {
# Line 400  sub html_header ($) { Line 445  sub html_header ($) {
445  <link rel="stylesheet" href="../cc-style.css" type="text/css">  <link rel="stylesheet" href="../cc-style.css" type="text/css">
446  <script src="../cc-script.js"></script>  <script src="../cc-script.js"></script>
447  </head>  </head>
448  <body>  <body onclick=" return onbodyclick (event) " onload=" onbodyload () ">
449  <h1>]);  <h1>]);
450    $self->nl_text (q[WebHACC:Heading]);    $self->nl_text (q[WebHACC:Heading]);
451    $self->html ('</h1>');    $self->html (q[</h1><script> insertNavSections () </script>]);
452  } # html_header  } # html_header
453    
454  sub generate_input_section ($$) {  sub generate_input_section ($$) {
# Line 412  sub generate_input_section ($$) { Line 457  sub generate_input_section ($$) {
457    my $options = sub ($) {    my $options = sub ($) {
458      my $context = shift;      my $context = shift;
459    
460      $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'">]);
461      $out->nl_text (q[Options]);      $out->nl_text (q[Options]);
462      $out->start_tag ('div');      $out->start_tag ('div');
463    
# Line 490  sub generate_input_section ($$) { Line 535  sub generate_input_section ($$) {
535    }; # $options    }; # $options
536    
537    $out->start_section (id => 'input', title => 'Input');    $out->start_section (id => 'input', title => 'Input');
538      $out->html (q[<script> insertNavSections ('input') </script>]);
539    
540    $out->start_section (id => 'input-url', title => 'By URL');    $out->start_section (id => 'input-url', title => 'By URL',
541    $out->start_tag ('form', action => './', 'accept-charset' => 'utf-8',                         parent_id => 'input');
542      $out->start_tag ('form', action => './#result-summary',
543                       'accept-charset' => 'utf-8',
544                     method => 'get');                     method => 'get');
545    $out->start_tag ('input', type => 'hidden', name => '_charset_');    $out->start_tag ('input', type => 'hidden', name => '_charset_');
546    
# Line 506  sub generate_input_section ($$) { Line 554  sub generate_input_section ($$) {
554                     value => $cgi->get_parameter ('uri'));                     value => $cgi->get_parameter ('uri'));
555    $out->end_tag ('label');    $out->end_tag ('label');
556    
   $options->('url');  
   
557    $out->start_tag ('p');    $out->start_tag ('p');
558    $out->start_tag ('button', type => 'submit');    $out->start_tag ('button', type => 'submit');
559    $out->nl_text ('Check');    $out->nl_text ('Check');
560      $out->end_tag ('button');
561    
562      $options->('url');
563    
564    $out->end_tag ('form');    $out->end_tag ('form');
565    $out->end_section;    $out->end_section;
# Line 519  sub generate_input_section ($$) { Line 568  sub generate_input_section ($$) {
568    
569    ## TODO: File upload    ## TODO: File upload
570    
571    $out->start_section (id => 'input-text', title => 'By direct input');    $out->start_section (id => 'input-text', title => 'By direct input',
572    $out->start_tag ('form', action => './', 'accept-charset' => 'utf-8',                         parent_id => 'input');
573      $out->start_tag ('form', action => './#result-summary',
574                       'accept-charset' => 'utf-8',
575                     method => 'post');                     method => 'post');
576    $out->start_tag ('input', type => 'hidden', name => '_charset_');    $out->start_tag ('input', type => 'hidden', name => '_charset_');
577    
# Line 532  sub generate_input_section ($$) { Line 583  sub generate_input_section ($$) {
583    $out->start_tag ('textarea',    $out->start_tag ('textarea',
584                     name => 's');                     name => 's');
585    my $s = $cgi->get_parameter ('s');    my $s = $cgi->get_parameter ('s');
586    $out->text ($s) if defined $s;    $out->html ($htescape_value->($s)) if defined $s;
587    $out->end_tag ('textarea');    $out->end_tag ('textarea');
588    $out->end_tag ('label');    $out->end_tag ('label');
589    
   $options->('text');  
   
590    $out->start_tag ('p');    $out->start_tag ('p');
591    $out->start_tag ('button', type => 'submit',    $out->start_tag ('button', type => 'submit',
592                     onclick => 'form.method = form.s.value.length > 512 ? "post" : "get"');                     onclick => 'form.method = form.s.value.length > 512 ? "post" : "get"');
593    $out->nl_text ('Check');    $out->nl_text ('Check');
594    $out->end_tag ('button');    $out->end_tag ('button');
595    
596      $options->('text');
597    
598    $out->end_tag ('form');    $out->end_tag ('form');
599    $out->end_section;    $out->end_section;
600    
601      $out->script (q[
602        if (!document.webhaccNavigated &&
603            document.getElementsByTagName ('textarea')[0].value.length > 0) {
604          showTab ('input-text');
605          document.webhaccNavigated = false;
606        }
607      ]);
608    
609    $out->end_section;    $out->end_section;
610  } # generate_input_section  } # generate_input_section
611    

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.12

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24