/[pub]/suikawiki/script/misc/plugins/link/map.wp2
Suika

Diff of /suikawiki/script/misc/plugins/link/map.wp2

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

revision 1.1 by wakaba, Sun Feb 1 12:09:44 2004 UTC revision 1.9 by wakaba, Sat Mar 13 13:43:33 2004 UTC
# Line 6  Plugin: Line 6  Plugin:
6      @@@:      @@@:
7        Visualization of page to page relatinships        Visualization of page to page relatinships
8      @@lang:en      @@lang:en
9    @License: %%GPL%%    @License: %%Perl%%
10    @Author:    @Author:
11      @@Name:      @@Name:
12        @@@@: Wakaba        @@@@: Wakaba
13        @@@lang:ja        @@@lang:ja
14        @@@script:Latn        @@@script:Latn
15      @@Mail[list]: w@suika.fam.cx      @@Mail[list]: w@suika.fam.cx
16    @Date.RCS: $Date$    @Date.RCS:
17         $Date$
18    @RequiredPlugin[list]:    @RequiredPlugin[list]:
19      WikiLinking      WikiLinking
20    @Use:    @Use:
# Line 64  FormattingRule: Line 65  FormattingRule:
65      __ATTRTEXT:%ns__;__ATTRTEXT:%recursive__;      __ATTRTEXT:%ns__;__ATTRTEXT:%recursive__;
66      __ATTRTEXT:%n__;      __ATTRTEXT:%n__;
67      $p->{recursive} = 1 unless length $p->{recursive};      $p->{recursive} = 1 unless length $p->{recursive};
68      $p->{ns} .= '//' if $p->{ns} and not substr ($p->{ns}, -2) eq '//';      my $ns = $o->{wiki}->name ($p->{ns});
69        #$ns->append_component ('') unless $ns->[$#$ns] eq '';
70      my $i = 0;      my $i = 0;
71      $p->{n} ||= 10;      $p->{n} ||= 10;
72      __ATTRTEXT:%template__;      __ATTRTEXT:%template__;
# Line 74  FormattingRule: Line 76  FormattingRule:
76      __ATTRTEXT:%mode__;      __ATTRTEXT:%mode__;
77      for (sort {$b->[1] <=> $a->[1]}      for (sort {$b->[1] <=> $a->[1]}
78           map  { try { [$_, $o->{wiki}->{db}->get (lastmodified => $_)] }           map  { try { [$_, $o->{wiki}->{db}->get (lastmodified => $_)] }
79                  catch SuikaWiki::DB::Util::Error with {[$_, undef]} }                  catch SuikaWiki::DB::Util::Error with {
80                      my $err = shift;
81                      $err->throw if $err->{-type} eq 'ERROR_REPORTED';
82                      [$_, undef]} }
83           $o->{wiki}->{db}->keys ('content',           $o->{wiki}->{db}->keys ('content',
84                                   -ns => [split m#//#, $p->{ns}],                                   -ns => $ns,
85                                   -type => 'key',                                   -type => 'key',
86                                   -recursive => $p->{recursive})) {                                   -recursive => $p->{recursive})) {
87        next unless $_->[0];        next unless $_->[0];
88        last if $i++ == $p->{n};        last if $i++ == $p->{n};
89                
       my $li = $list->append_new_node  
                         (type => '#element',  
                          namespace_uri => $NS_XHTML1,  
                          local_name => 'li');  
90        $WIKILINKING->to_wikipage_in_html ({        $WIKILINKING->to_wikipage_in_html ({
91          label => $p->{template},          label => $p->{template},
92        } => {        } => {
93  #        base => $o->{page},          base => $o->{wiki}->{var}->{page},
94          page_name_relative => $_->[0],          page_name_relative => $o->{wiki}->name ($_->[0]),
95          wiki_mode => $p->{mode},          wiki_mode => $p->{mode},
96          _with_lm => 1,          _with_lm => 1,
97          page_lastmodified => $_->[1],          page_lastmodified => $_->[1],
98        }, {        }, {
99          o => $o,          o => $o,
100          parent => $li,          parent => $list->append_new_node
101                            (type => '#element',
102                             namespace_uri => $NS_XHTML1,
103                             local_name => 'li'),
104        });        });
105      }      }
106    
# Line 126  FormattingRule: Line 130  FormattingRule:
130      __ATTRTEXT:%ns__;__ATTRTEXT:%recursive__;      __ATTRTEXT:%ns__;__ATTRTEXT:%recursive__;
131      __ATTRTEXT:%n__;      __ATTRTEXT:%n__;
132      $p->{recursive} = 1 unless length $p->{recursive};      $p->{recursive} = 1 unless length $p->{recursive};
133      $p->{ns} .= '//' if $p->{ns} and not substr ($p->{ns}, -2) eq '//';      my $ns = $o->{wiki}->name ($p->{ns});
134        #$ns->append_component ('') unless $ns->[$#$ns] eq '';
135      my $i = 0;      my $i = 0;
136      $p->{n} ||= -1;      $p->{n} ||= -1;
137      __ATTRTEXT:%template__;      __ATTRTEXT:%template__;
138      $p->{template} ||= $WIKIRESOURCE->get      $p->{template} ||= $WIKIRESOURCE->get
139          (name => 'Link:toWikiPage:SourceLabelLong:PageList',          (name => 'Link:toWikiPage:SourceLabelLong:PageList',
140           wiki => $o->{wiki}, o => $o);           wiki => $o->{wiki}, o => $o);
141        __ATTRTEXT:%match__; ## WARNING: This parameter might be dangerous!
142        my $reg = $p->{match} ? qr/$p->{match}/ : qr/./;
143      __ATTRTEXT:%mode__;      __ATTRTEXT:%mode__;
144      try {      try {
145        for (sort {$a->[1] cmp $b->[1]}        for (sort {$a->[1] cmp $b->[1]}
146             map {[$_, join '//', @{$_}]}             grep {$_->[1] =~ /$reg/}
147               map {[$_, join '//', @{$_}]} # make sort key
148             $o->{wiki}->{db}->keys ('content',             $o->{wiki}->{db}->keys ('content',
149                                     -ns => [split m#//#, $p->{ns}],                                     -ns => $ns,
150                                     -type => 'key',                                     -type => 'key',
151                                     -recursive => $p->{recursive})) {                                     -recursive => $p->{recursive})) {
152          last if $i++ == $p->{n};          last if $i++ == $p->{n};
153                    
         my $li = $list->append_new_node  
                           (type => '#element',  
                            namespace_uri => $NS_XHTML1,  
                            local_name => 'li');  
154          $WIKILINKING->to_wikipage_in_html ({          $WIKILINKING->to_wikipage_in_html ({
155            label => $p->{template},            label => $p->{template},
156          } => {          } => {
157  #          base => $o->{page},            base => $o->{wiki}->{var}->{page},
158            page_name_relative => $_->[0],            page_name_relative => $o->{wiki}->name ($_->[0]),
159            wiki_mode => $p->{mode},            wiki_mode => $p->{mode},
160          }, {          }, {
161            o => $o,            o => $o,
162            parent => $li,            parent => $list->append_new_node
163                              (type => '#element',
164                               namespace_uri => $NS_XHTML1,
165                               local_name => 'li'),
166          });          });
167        }        }
168      } catch SuikaWiki::DB::Util::Error with {      } catch SuikaWiki::DB::Util::Error with {
169        #        my $err = shift;
170          $err->throw if $err->{-type} eq 'ERROR_REPORTED';
171      };      };
172      $p->{-parent}->remove_child_node ($list) unless $list->count;      $p->{-parent}->remove_child_node ($list) unless $list->count;
173    
# Line 171  FormattingRule: Line 179  FormattingRule:
179    @Name: search-result    @Name: search-result
180    @Formatting:    @Formatting:
181      __ATTRTEXT:%key__;      __ATTRTEXT:%key__;
182      $p->{key} ||= join '//', @{$o->{wiki}->{var}->{page}};      $p->{key} ||= $o->{wiki}->{var}->{page}->stringify (wiki => $o->{wiki});
183      __ATTRTEXT:%case_sensible__;      __ATTRTEXT:%case_sensible__;
184      my $word = $p->{case_sensible} ? $p->{key} : lc $p->{key};      my $word = $p->{case_sensible} ? $p->{key} : lc $p->{key};
185      my @r;      my @r;
# Line 182  FormattingRule: Line 190  FormattingRule:
190          try {          try {
191            $content = $o->{wiki}->{db}->get (content => $page);            $content = $o->{wiki}->{db}->get (content => $page);
192          } catch SuikaWiki::DB::Util::Error with {          } catch SuikaWiki::DB::Util::Error with {
193              my $err = shift;
194              $err->throw if $err->{-type} eq 'ERROR_REPORTED';
195            $content = undef;            $content = undef;
196          };          };
197          $content = $p->{case_sensible} ? $content : lc $content;          $content = $p->{case_sensitive} ? $content : lc $content;
198          $content =~ s/^[^\x0A\x0D]+[\x0D\x0A]+//s;          $content =~ s/^[^\x0A\x0D]+[\x0D\x0A]+//s;
199          my $n_page = $p->{case_sensible} ? join '//', @$page          $page = $o->{wiki}->name ($page);
200                                           : lc join '//', @$page;          my $n_page = $page->stringify (wiki => $o->{wiki});
201            $n_page = lc $n_page unless $p->{case_sensible};
202          if (index ($n_page, $word) > -1) {          if (index ($n_page, $word) > -1) {
203                 my $c = $content =~ s/\Q$word\E//g;                 my $c = $content =~ s/\Q$word\E//g;
204                  push @r, [$page, $c+20];                  push @r, [$page, $c+20];
# Line 199  FormattingRule: Line 210  FormattingRule:
210                }                }
211        }        }
212        @r = sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r;        @r = sort {$b->[1] <=> $a->[1] || $a->[0] cmp $b->[0]} @r;
213        $sr = join "\x1E", map {join ("\x1D", @{$_->[0]})."\x1F".$_->[1]} @r;        $sr = join "\x1E",
214                map {$_->[0]->stringify (wiki => $o->{wiki}, delimiter => "\x1D")
215                     ."\x1F".$_->[1]} @r;
216        $o->{wiki}->{db}->set (m__search_result => [$word] => $sr);        $o->{wiki}->{db}->set (m__search_result => [$word] => $sr);
217  ## TODO: Cache & case-sensibility  ## TODO: Cache & case-sensitivility
218      } else {      } else {
219        @r = map {[[split /\x1D/, $_->[0]], $_->[1]]}        @r = map {[$o->{wiki}->name ($_->[0], delimiter_reg => qr/\x1D/), $_->[1]]}
220             map {[split /\x1F/, $_, 2]} split /\x1E/, $sr;             map {[split /\x1F/, $_, 2]} split /\x1E/, $sr;
221      }      }
       #my $em = $p->{em} ? sub { my $s = shift; $s =~ s#(\Q$word\E)#<em>$1</em>#gi; $s } : sub {$_[0]};  
         
222        return unless @r;        return unless @r;
223        my $list = $p->{-parent}->append_new_node        my $list = $p->{-parent}->append_new_node
224                                  (type => '#element',                                  (type => '#element',
# Line 218  FormattingRule: Line 229  FormattingRule:
229            (name => 'Link:toWikiPage:SourceLabelLong:SearchResult',            (name => 'Link:toWikiPage:SourceLabelLong:SearchResult',
230             wiki => $o->{wiki}, o => $o);             wiki => $o->{wiki}, o => $o);
231        for (@r) {        for (@r) {
         my $li = $list->append_new_node  
                           (type => '#element',  
                            namespace_uri => $NS_XHTML1,  
                            local_name => 'li');  
232          $WIKILINKING->to_wikipage_in_html ({          $WIKILINKING->to_wikipage_in_html ({
233            label => $p->{template},            label => $p->{template},
234          } => {          } => {
235  #          base => $o->{page},            base => $o->{wiki}->{var}->{page},
236            page_name_relative => $_->[0],            page_name_relative => $_->[0],
237            wiki_mode => $p->{mode},            wiki_mode => $p->{mode},
238          }, {          }, {
239            o => $o,            o => $o,
240            parent => $li,            parent => $list->append_new_node
241                              (type => '#element',
242                               namespace_uri => $NS_XHTML1,
243                               local_name => 'li'),
244            -m__weight => $_->[1],            -m__weight => $_->[1],
245          });          });
246        }        }
# Line 245  FormattingRule: Line 255  FormattingRule:
255  ViewFragment:  ViewFragment:
256    @Name: ws--post-content    @Name: ws--post-content
257    @Description:    @Description:
258      @@@: After content body -- navigation bar      @@@: After content body -- children and backward links
259      @@lang:en      @@lang:en
260    @Order: 100    @Order: 100
261    @Formatting:    @Formatting:
# Line 263  ViewFragment: Line 273  ViewFragment:
273            title => {%res(name=>SeeAlso);}p, heading,            title => {%res(name=>SeeAlso);}p, heading,
274            content => {%search-result;}p,            content => {%search-result;}p,
275          );          );
         %section (  
           id => referer,  
           title => {%res(name=>Referer);}p, heading,  
           content => {%referer-list;}p,  
         );  
276    
277  Resource:  Resource:
278    @Children:Title:    @Children:Title:
# Line 296  Resource: Line 301  Resource:
301      );      );
302      %span(class=>headline,content=>{%page-headline;}p);      %span(class=>headline,content=>{%page-headline;}p);
303    
304  ## TODO:  ## TODO: Make recent-changes page name customizable
305  ViewFragment:  ViewFragment:
306    @Name: navbar    @Name: navbar
307    @Order: 21    @Order: 21
# Line 304  ViewFragment: Line 309  ViewFragment:
309      %link-to-wikipage (      %link-to-wikipage (
310        page => {RecentChanges},        page => {RecentChanges},
311        label => {%link-to-it (        label => {%link-to-it (
312                   label=>"%res(name=>GoToRecentChanges);"p,          label => {%res (name => GoToRecentChanges);}p,
313                   description=>"%res(name=>GoToRecentChangesLong);"p,          description => {%res (name => GoToRecentChangesLong);}p,
314        );},        );},
315        rel => news,        rel => news,
316      );      );
# Line 320  ViewFragment: Line 325  ViewFragment:
325        label => {%html-link (        label => {%html-link (
326                    description => {%res(name=>GoToRecentChangesLink);}p,                    description => {%res(name=>GoToRecentChangesLink);}p,
327                  );},                  );},
     );  
328        );
329    
330    Resource:
331      @GoToRecentChanges:
332        @@@: Recent
333        @@lang: en
334      @GoToRecentChangesLink:
335        @@@: Recently modified WikiPages list
336        @@lang: en
337      @GoToRecentChangesLong:
338        @@@: Review recently modified WikiPages list
339        @@lang: en
340    
341    
342    

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24