/[webpac]/trunk2/all2all.pl
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 /trunk2/all2all.pl

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

revision 425 by dpavlin, Sat Sep 11 23:32:41 2004 UTC revision 430 by dpavlin, Sun Sep 12 19:15:54 2004 UTC
# Line 150  if (0 && $log->is_debug) { Line 150  if (0 && $log->is_debug) {
150    
151  } # XXX if(0)  } # XXX if(0)
152    
153  $log->info("lookup hash: ",Dumper($webpac->{'lookup'}));  $log->debug("lookup hash: ",Dumper($webpac->{'lookup'}));
154    
155  #  #
156  # tree dump implementation which shouldn't be here :-)  # tree dump implementation which shouldn't be here :-)
157  #  #
158    
159    
160  my $file = 'out/browse.html';  my $file = 'out/browse.html';
161    my $js_url = 'tree-ids.js';
162    
163    $log->info("creating '$file' for tree html");
164  open(HTML, "> $file") || $log->logdie("can't open '$file'");  open(HTML, "> $file") || $log->logdie("can't open '$file'");
165    
166  print HTML qq{  print HTML qq{
# Line 165  print HTML qq{ Line 169  print HTML qq{
169   <title>Browse</title>   <title>Browse</title>
170   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/>
171   <script type="text/javascript" src="bfilter/hide.js"></script>   <script type="text/javascript" src="bfilter/hide.js"></script>
172     <script type="text/javascript" src="$js_url"></script>
173  </head>  </head>
174    
175    <!--
176    <body onLoad="show_hide_display(show,hide);">
177    -->
178  <body>  <body>
179    
180    <div style="float: right; width: 10em; text-align: center; margin: 0.5m; background: #e0e0e0; border: 1px dashed #c0c0c0; z-index: 1;">
181    Folding:
182    <br/>
183    <a href="#" onClick="back_display();">&laquo;</a>&nbsp;<a href="#" onClick="apply_changed_display();">default</a>&nbsp;<a href="#" onClick="forward_display();">&raquo;</a>
184    <br/>
185    <a href="#" onClick="show_hide_display(show,hide);">reset</a>
186    <a href="#" onClick="show_display(show); show_display(hide);">all</a>
187    <a href="#" onClick="hide_display(hide); hide_display(show);">none</a>
188    <br/>
189    <a href="#" onClick="alert('show: '+show.length+', hide: '+hide.length+', changed:'+changed_display_ids.length+', positin: '+changed_display_pos);">debug</a>
190    </div>
191    
192  <ul>  <ul>
193  };  };
194    
# Line 182  my @tree = ({ Line 204  my @tree = ({
204          lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },          lookup_v900     => sub { shift @{$l->{"root:".$_[0]}} },
205          lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },          lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },
206          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },
207          have_children   => sub { $l->{"a:".$_[0]."::" } },          have_children   => sub { defined($l->{"a:".$_[0]."::"}) },
208          child_code      => sub { return $_[0] },          child_code      => sub { return $_[0] },
209          style           => 'display: none',          style           => 'display: none',
210          },{          },{
# Line 192  my @tree = ({ Line 214  my @tree = ({
214          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },          lookup_v900     => sub { shift @{$l->{"code:".$_[0]}} },
215          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
216          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
217          have_children   => sub { $l->{"a:".$_[1].":" } },          have_children   => sub { defined($l->{"a:".$_[1].":"}) },
218          child_code      => sub { return $_[1] },          child_code      => sub { return $_[1] },
219          style           => 'display: none',          style           => 'display: none',
220          },{          },{
# Line 202  my @tree = ({ Line 224  my @tree = ({
224          lookup_v900     => sub { shift },          lookup_v900     => sub { shift },
225          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },          lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
226          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
227          have_children   => sub { $l->{"a:".$_[2].":".$_[1]} },          have_children   => sub { defined($l->{"a:".$_[2].":".$_[1]}) },
228          child_code      => sub { return "a:".$_[2].":".$_[1] },          child_code      => sub { return "a:".$_[2].":".$_[1] },
229          style           => 'display: none',          style           => 'display: none',
230          },{          },{
231          # 3 uži pojam          # 3 uži pojam
232          code_arr        => sub { @{$l->{$_[0]}} },          code_arr        => sub { @{$l->{$_[0]}} },
233          filter_code     => sub { shift },          filter_code     => sub { shift },
234          lookup_v900     => sub { shift },          lookup_v900     => sub {
235          lookup_term     => sub { shift @{$l->{"d:".$_[1]}} },                                  my ($c,$p) = @_;
236          lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[1]}} },                                  $p =~ s/^a:(..:....):.*$/$1/;
237                                    return "a:".$p.":".$c;
238                            },
239            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
240            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
241            have_children   => sub { defined($l->{$_[1]}) },
242            child_code      => sub { return $_[1] },
243            },{
244            # 4
245            code_arr        => sub { @{$l->{$_[0]}} },
246            filter_code     => sub { shift },
247            lookup_v900     => sub {
248                                    my ($c,$p) = @_;
249                                    $p =~ s/^a:(..:....):.*$/$1/;
250                                    return "a:".$p.":".$c;
251                            },
252            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
253            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
254            have_children   => sub { defined($l->{$_[1]}) },
255            child_code      => sub { return $_[1] },
256            },{
257            # 5
258            code_arr        => sub { @{$l->{$_[0]}} },
259            filter_code     => sub { shift },
260            lookup_v900     => sub {
261                                    my ($c,$p) = @_;
262                                    $p =~ s/^a:(..:....):.*$/$1/;
263                                    return "a:".$p.":".$c;
264                            },
265            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
266            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
267            have_children   => sub { defined($l->{$_[1]}) },
268            child_code      => sub { return $_[1] },
269            },{
270            # 6
271            code_arr        => sub { @{$l->{$_[0]}} },
272            filter_code     => sub { shift },
273            lookup_v900     => sub {
274                                    my ($c,$p) = @_;
275                                    $p =~ s/^a:(..:....):.*$/$1/;
276                                    return "a:".$p.":".$c;
277                            },
278            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
279            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
280            have_children   => sub { defined($l->{$_[1]}) },
281            child_code      => sub { return $_[1] },
282            },{
283            # 7
284            code_arr        => sub { @{$l->{$_[0]}} },
285            filter_code     => sub { shift },
286            lookup_v900     => sub {
287                                    my ($c,$p) = @_;
288                                    $p =~ s/^a:(..:....):.*$/$1/;
289                                    return "a:".$p.":".$c;
290                            },
291            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
292            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
293            have_children   => sub { defined($l->{$_[1]}) },
294            child_code      => sub { return $_[1] },
295            },{
296            # 8
297            code_arr        => sub { @{$l->{$_[0]}} },
298            filter_code     => sub { shift },
299            lookup_v900     => sub {
300                                    my ($c,$p) = @_;
301                                    $p =~ s/^a:(..:....):.*$/$1/;
302                                    return "a:".$p.":".$c;
303                            },
304            lookup_term     => sub { shift @{$l->{"d:".$_[0]}} },
305            lookup_mfn      => sub { shift @{$l->{"900_mfn:".$_[0]}} },
306    #       have_children   => sub { defined($l->{$_[1]}) },
307    #       child_code      => sub { return $_[1] },
308          have_children   => sub { 0 },          have_children   => sub { 0 },
309          child_code      => sub { 0 },          child_code      => sub { 0 },
310  });  });
311    
312    my @show_ids;
313    my @hide_ids;
314    
315  unroll(0,'');  unroll(0,'');
316    
317  $log->debug("test filter: ",$tree[0]->{'filter_code'}->("root:99"));  $log->debug("test filter: ",$tree[0]->{'filter_code'}->("root:99"));
# Line 236  sub unroll { Line 332  sub unroll {
332                                    
333                          $log->debug("# $level filter passed code $code");                          $log->debug("# $level filter passed code $code");
334    
335                          my $v900 = $tree[$level]->{'lookup_v900'}->($code) || $log->logdie("can't lookup_v900 '$code'");                          my $v900 = $tree[$level]->{'lookup_v900'}->($code,$start_code) || $log->warn("can't lookup_v900($code,$start_code)");
336                          $log->debug("# $level lookup_v900($code) = $v900");                          $log->debug("# $level lookup_v900($code,$start_code) = $v900");
337                          my $term = $tree[$level]->{'lookup_term'}->($code,$v900) || $log->logdie("can't lookup_term '$v900'");  
338                            my $term = $tree[$level]->{'lookup_term'}->($code,$v900) || $log->warn("can't lookup_term($code,$v900)");
339                          $log->debug("# $level lookup_term($code,$v900) = $term");                          $log->debug("# $level lookup_term($code,$v900) = $term");
340                          my $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->logdie("can't lookup_mfn '$v900'");  
341                            my $mfn  = $tree[$level]->{'lookup_mfn'}->($code,$v900)  || $log->warn("can't lookup_mfn($code,$v900)");
342                          $log->debug("# $level lookup_mfn($code,$v900) = $mfn");                          $log->debug("# $level lookup_mfn($code,$v900) = $mfn");
343    
344                          $log->debug("$code -> $v900 : $term [$mfn]");                          $log->debug("$code -> $v900 : $term [$mfn]");
345    
346                            my ($link_start,$link_end) = ('','');
347                    
348                          my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);                          my $have_children = $tree[$level]->{'have_children'}->($code,$v900,$start_code);
349                            if ($have_children) {
350                          my ($link_start,$link_end) = ('','');                                  ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return toggle_display('mfn$mfn');">},qq{</a>});
351                            } else {
352                          ($link_start,$link_end) = (qq{<a href="#mfn$mfn" onClick="return hide_show('mfn$mfn');">},qq{</a>}) if ($have_children);                                  $log->debug("# $level doesn't have_children($code,$v900,$start_code)");
353                            }
354    
355                          my $mfn_link = "thes/$mfn.html";                          my $mfn_link = "thes/$mfn.html";
356                          if (-e "out/$mfn_link") {                          if (-e "out/$mfn_link") {
# Line 262  sub unroll { Line 362  sub unroll {
362                          }                          }
363    
364                          unless ($have_children) {                          unless ($have_children) {
                                 $log->warn("doesn't have_children($code,$v900,$start_code)");  
365                                  next;                                  next;
366                          }                          }
367                                                    my $style = $tree[$level]->{'style'};
368    
369                          print HTML " " x $level .                          print HTML " " x $level .
370                                  qq{<a name="mfn$mfn"></a>\n <ul id="mfn$mfn"}.                                  qq{<a name="mfn$mfn"></a>\n <ul id="mfn$mfn"}.
371                                  ($tree[$level]->{'style'} ? ' style="'.$tree[$level]->{'style'}.'"' : '').                                  ($style ? ' style="'.$style.'"' : '').
372                                  qq{>\n};                                  qq{>\n};
373    
374                            if ($style) {
375                                    if ($style =~ m/display\s*:\s*none/i) {
376                                            push @hide_ids, "mfn$mfn";
377                                    } else {
378                                            push @show_ids, "mfn$mfn";
379                                    }
380                            } else {
381                                    # default: show
382                                    push @show_ids, "mfn$mfn";
383                            }
384    
385                          unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));                          unroll($level+1, $tree[$level]->{'child_code'}->($code,$v900,$start_code));
386                                                    
387                          print HTML " " x $level . qq{</ul>\n};                          print HTML " " x $level . qq{</ul>\n};
# Line 287  print HTML qq{ Line 398  print HTML qq{
398    
399  close(HTML);  close(HTML);
400    
401    
402    my $js_file = "out/$js_url";
403    $log->info("creating '$js_file' with arrays of shown and hidden ids");
404    open(JS, ">", $js_file) || $log->logdie("can't open '$js_file': $!");
405    print JS "var show = ['",join("','",@show_ids),"'];\n";
406    print JS "var hide = ['",join("','",@hide_ids),"'];\n";
407    close(JS);
408    
409    $log->info("closing index");
410  $index->close;  $index->close;
411    
412  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));  $log->info("elapsed time: ",$webpac->fmt_time(time() - $webpac->{'start_t'}));

Legend:
Removed from v.425  
changed lines
  Added in v.430

  ViewVC Help
Powered by ViewVC 1.1.26