source: main/trunk/greenstone2/perllib/plugins/DirectoryPlugin.pm@ 21566

Last change on this file since 21566 was 21566, checked in by mdewsnip, 14 years ago

Changed all places explicitly using "archiveinf-doc.gdb" or "archiveinf-src.gdb" to use the dbutil::get_infodb_file_path() function... you know, the one that should have been used originally? In preparation for making it possible to use something other than GDBM, and part of making the code less GDBM-specific.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 20.6 KB
Line 
1###########################################################################
2#
3# DirectoryPlugin.pm --
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26# DirectoryPlugin is a plugin which recurses through directories processing
27# each file it finds - which basically means passing it down the plugin
28# pipeline
29
30package DirectoryPlugin;
31
32use PrintInfo;
33use plugin;
34use util;
35use metadatautil;
36
37use File::Basename;
38use strict;
39no strict 'refs';
40no strict 'subs';
41
42use Encode;
43
44BEGIN {
45 @DirectoryPlugin::ISA = ('PrintInfo');
46}
47
48my $arguments =
49 [ { 'name' => "block_exp",
50 'desc' => "{BasePlugin.block_exp}",
51 'type' => "regexp",
52 'deft' => &get_default_block_exp(),
53 'reqd' => "no" },
54 # this option has been deprecated. leave it here for now so we can warn people not to use it
55 { 'name' => "use_metadata_files",
56 'desc' => "{DirectoryPlugin.use_metadata_files}",
57 'type' => "flag",
58 'reqd' => "no",
59 'hiddengli' => "yes" },
60 { 'name' => "recheck_directories",
61 'desc' => "{DirectoryPlugin.recheck_directories}",
62 'type' => "flag",
63 'reqd' => "no" } ];
64
65my $options = { 'name' => "DirectoryPlugin",
66 'desc' => "{DirectoryPlugin.desc}",
67 'abstract' => "no",
68 'inherits' => "yes",
69 'args' => $arguments };
70
71sub new {
72 my ($class) = shift (@_);
73 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
74 push(@$pluginlist, $class);
75
76 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
77 push(@{$hashArgOptLists->{"OptList"}},$options);
78
79 my $self = new PrintInfo($pluginlist, $inputargs, $hashArgOptLists);
80
81 if ($self->{'info_only'}) {
82 # don't worry about any options or initialisations etc
83 return bless $self, $class;
84 }
85
86 # we have left this option in so we can warn people who are still using it
87 if ($self->{'use_metadata_files'}) {
88 die "ERROR: DirectoryPlugin -use_metadata_files option has been deprecated. Please remove the option and add MetadataXMLPlug to your plugin list instead!\n";
89 }
90
91 $self->{'num_processed'} = 0;
92 $self->{'num_not_processed'} = 0;
93 $self->{'num_blocked'} = 0;
94 $self->{'num_archives'} = 0;
95
96 $self->{'subdir_extrametakeys'} = {};
97
98 return bless $self, $class;
99}
100
101# called once, at the start of processing
102sub init {
103 my $self = shift (@_);
104 my ($verbosity, $outhandle, $failhandle) = @_;
105
106 # verbosity is passed through from the processor
107 $self->{'verbosity'} = $verbosity;
108
109 # as are the outhandle and failhandle
110 $self->{'outhandle'} = $outhandle if defined $outhandle;
111 $self->{'failhandle'} = $failhandle;
112
113}
114
115# called once, after all passes have finished
116sub deinit {
117 my ($self) = @_;
118
119}
120
121# called at the beginning of each plugin pass (import has one, building has many)
122sub begin {
123 my $self = shift (@_);
124 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
125
126 my $proc_package_name = ref $processor;
127
128 if ($proc_package_name !~ /buildproc$/ && $self->{'incremental'} == 1) {
129
130 # Only lookup timestamp info for import.pl, and only if incremental is set
131
132 my $output_dir = $processor->getoutputdir();
133## my $archives_inf = &util::filename_cat($output_dir,"archives.inf");
134 my $archives_inf = &dbutil::get_infodb_file_path("gdbm", "archiveinf-doc", $output_dir);
135
136 if ( -e $archives_inf ) {
137 $self->{'inf_timestamp'} = -M $archives_inf;
138 }
139 }
140}
141
142sub remove_all {
143 my $self = shift (@_);
144 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
145
146}
147
148
149sub remove_one {
150 my $self = shift (@_);
151 my ($file, $oids, $archivedir) = @_;
152 return undef; # this will never be called for directories (will it??)
153
154}
155
156
157# called at the end of each plugin pass
158sub end {
159 my ($self) = shift (@_);
160
161}
162
163
164
165# return 1 if this class might recurse using $pluginfo
166sub is_recursive {
167 my $self = shift (@_);
168
169 return 1;
170}
171
172sub get_default_block_exp {
173 my $self = shift (@_);
174
175 return '(?i)(CVS|\.svn|Thumbs\.db|OIDcount|~)$';
176}
177
178sub check_directory_path {
179
180 my $self = shift(@_);
181 my ($dirname) = @_;
182
183 return undef unless (-d $dirname);
184
185 return 0 if ($self->{'block_exp'} ne "" && $dirname =~ /$self->{'block_exp'}/);
186
187 my $outhandle = $self->{'outhandle'};
188
189 # check to make sure we're not reading the archives or index directory
190 my $gsdlhome = quotemeta($ENV{'GSDLHOME'});
191 if ($dirname =~ m/^$gsdlhome\/.*?\/import.*?\/(archives|index)$/) {
192 print $outhandle "DirectoryPlugin: $dirname appears to be a reference to a Greenstone collection, skipping.\n";
193 return 0;
194 }
195
196 # check to see we haven't got a cyclic path...
197 if ($dirname =~ m%(/.*){,41}%) {
198 print $outhandle "DirectoryPlugin: $dirname is 40 directories deep, is this a recursive path? if not increase constant in DirectoryPlugin.pm.\n";
199 return 0;
200 }
201
202 # check to see we haven't got a cyclic path...
203 if ($dirname =~ m%.*?import/(.+?)/import/\1.*%) {
204 print $outhandle "DirectoryPlugin: $dirname appears to be in a recursive loop...\n";
205 return 0;
206 }
207
208 return 1;
209}
210
211# this may be called more than once
212sub sort_out_associated_files {
213
214 my $self = shift (@_);
215 my ($block_hash) = @_;
216 if (!scalar (keys %{$block_hash->{'shared_fileroot'}})) {
217 return;
218 }
219
220 $self->{'assocfile_info'} = {} unless defined $self->{'assocfile_info'};
221 my $metadata = $self->{'assocfile_info'};
222 foreach my $prefix (keys %{$block_hash->{'shared_fileroot'}}) {
223 my $record = $block_hash->{'shared_fileroot'}->{$prefix};
224
225 my $tie_to = $record->{'tie_to'};
226 my $exts = $record->{'exts'};
227
228 if ((defined $tie_to) && (scalar (keys %$exts) > 0)) {
229 # set up fileblocks and assocfile_tobe
230 my $base_file = "$prefix$tie_to";
231 $metadata->{$base_file} = {} unless defined $metadata->{$base_file};
232 my $base_file_metadata = $metadata->{$base_file};
233
234 $base_file_metadata->{'gsdlassocfile_tobe'} = [] unless defined $base_file_metadata->{'gsdlassocfile_tobe'};
235 my $assoc_tobe = $base_file_metadata->{'gsdlassocfile_tobe'};
236 foreach my $e (keys %$exts) {
237 # block the file
238 $block_hash->{'file_blocks'}->{"$prefix$e"} = 1;
239 # set up as an associatd file
240 print STDERR " $self->{'plugin_type'}: Associating $prefix$e with $tie_to version\n";
241 my $mime_type = ""; # let system auto detect this
242 push(@$assoc_tobe,"$prefix$e:$mime_type:");
243
244 }
245 }
246 } # foreach record
247
248 $block_hash->{'shared_fileroot'} = undef;
249 $block_hash->{'shared_fileroot'} = {};
250
251}
252
253
254# do block exp OR special blocking ???
255
256sub file_is_blocked {
257 my $self = shift (@_);
258 my ($block_hash, $filename_full_path) = @_;
259
260 if (defined $block_hash->{'file_blocks'}->{$filename_full_path}) {
261 $self->{'num_blocked'} ++;
262 return 1;
263 }
264 # check Directory plugin's own block_exp
265 if ($self->{'block_exp'} ne "" && $filename_full_path =~ /$self->{'block_exp'}/) {
266 $self->{'num_blocked'} ++;
267 return 1; # blocked
268 }
269 return 0;
270}
271
272
273
274sub file_block_read {
275 my $self = shift (@_);
276 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $gli) = @_;
277
278 my $outhandle = $self->{'outhandle'};
279 my $verbosity = $self->{'verbosity'};
280
281 # Calculate the directory name and ensure it is a directory and
282 # that it is not explicitly blocked.
283 my $dirname = $file;
284 $dirname = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
285
286 my $directory_ok = $self->check_directory_path($dirname);
287 return $directory_ok unless (defined $directory_ok && $directory_ok == 1);
288
289 print $outhandle "Global file scan checking directory: $dirname\n";
290
291 $block_hash->{'all_files'} = {} unless defined $block_hash->{'all_files'};
292 $block_hash->{'metadata_files'} = {} unless defined $block_hash->{'metadata_files'};
293
294 $block_hash->{'file_blocks'} = {} unless defined $block_hash->{'file_blocks'};
295 $block_hash->{'shared_fileroot'} = {} unless defined $block_hash->{'shared_fileroot'};
296
297 # Recur over directory contents.
298 my (@dir, $subfile);
299 #my $count = 0;
300
301 print $outhandle "DirectoryPlugin block: getting directory $dirname\n" if ($verbosity > 2);
302
303 # find all the files in the directory
304 if (!opendir (DIR, $dirname)) {
305 if ($gli) {
306 print STDERR "<ProcessingError n='$file' r='Could not read directory $dirname'>\n";
307 }
308 print $outhandle "DirectoryPlugin: WARNING - couldn't read directory $dirname\n";
309 return -1; # error in processing
310 }
311 @dir = readdir (DIR);
312 closedir (DIR);
313
314 for (my $i = 0; $i < scalar(@dir); $i++) {
315 my $subfile = $dir[$i];
316 my $this_file_base_dir = $base_dir;
317 next if ($subfile =~ m/^\.\.?$/);
318
319 # Recursively read each $subfile
320 print $outhandle "DirectoryPlugin block recurring: $subfile\n" if ($verbosity > 2);
321
322 #$count += &plugin::file_block_read ($pluginfo, $this_file_base_dir,
323 &plugin::file_block_read ($pluginfo, $this_file_base_dir,
324 &util::filename_cat($file, $subfile),
325 $block_hash, $metadata, $gli);
326
327 }
328 $self->sort_out_associated_files($block_hash);
329 #return $count;
330
331}
332
333# We don't do metadata_read
334sub metadata_read {
335 my $self = shift (@_);
336 my ($pluginfo, $base_dir, $file, $block_hash,
337 $extrametakeys, $extrametadata, $extrametafile,
338 $processor, $maxdocs, $gli) = @_;
339
340 return undef;
341}
342
343
344# return number of files processed, undef if can't process
345# Note that $base_dir might be "" and that $file might
346# include directories
347
348# This function passes around metadata hash structures. Metadata hash
349# structures are hashes that map from a (scalar) key (the metadata element
350# name) to either a scalar metadata value or a reference to an array of
351# such values.
352
353sub read {
354 my $self = shift (@_);
355 my ($pluginfo, $base_dir, $file, $block_hash, $in_metadata, $processor, $maxdocs, $total_count, $gli) = @_;
356
357 my $outhandle = $self->{'outhandle'};
358 my $verbosity = $self->{'verbosity'};
359
360 # Calculate the directory name and ensure it is a directory and
361 # that it is not explicitly blocked.
362 my $dirname;
363 if ($file eq "") {
364 $dirname = $base_dir;
365 } else {
366 $dirname = $file;
367 $dirname = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
368 }
369
370 my $directory_ok = $self->check_directory_path($dirname);
371 return $directory_ok unless (defined $directory_ok && $directory_ok == 1);
372
373 if (($verbosity > 2) && ((scalar keys %$in_metadata) > 0)) {
374 print $outhandle "DirectoryPlugin: metadata passed in: ",
375 join(", ", keys %$in_metadata), "\n";
376 }
377
378
379 # Recur over directory contents.
380 my (@dir, $subfile);
381 my $count = 0;
382
383 print $outhandle "DirectoryPlugin read: getting directory $dirname\n" if ($verbosity > 2);
384
385 # find all the files in the directory
386 if (!opendir (DIR, $dirname)) {
387 if ($gli) {
388 print STDERR "<ProcessingError n='$file' r='Could not read directory $dirname'>\n";
389 }
390 print $outhandle "DirectoryPlugin: WARNING - couldn't read directory $dirname\n";
391 return -1; # error in processing
392 }
393 @dir = readdir (DIR);
394 closedir (DIR);
395
396 # Re-order the files in the list so any directories ending with .all are moved to the end
397 for (my $i = scalar(@dir) - 1; $i >= 0; $i--) {
398 if (-d &util::filename_cat($dirname, $dir[$i]) && $dir[$i] =~ /\.all$/) {
399 push(@dir, splice(@dir, $i, 1));
400 }
401 }
402
403 # setup the metadata structures. we do a metadata_read pass to see if there is any additional metadata, then pass it to read
404
405 my $additionalmetadata = 0; # is there extra metadata available?
406 my %extrametadata; # maps from filespec to extra metadata keys
407 my %extrametafile; # maps from filespec to the metadata.xml (or similar) file it came from
408 my @extrametakeys; # keys of %extrametadata in order read
409
410
411 my $os_dirsep = &util::get_os_dirsep();
412 my $dirsep = &util::get_dirsep();
413 my $base_dir_regexp = $base_dir;
414 $base_dir_regexp =~ s/\//$os_dirsep/g;
415 my $local_dirname = $dirname;
416 $local_dirname =~ s/^$base_dir_regexp($os_dirsep)//;
417 $local_dirname .= $dirsep;
418
419 if (defined $self->{'subdir_extrametakeys'}->{$local_dirname}) {
420 my $extrakeys = $self->{'subdir_extrametakeys'}->{$local_dirname};
421 foreach my $ek (@$extrakeys) {
422 my $extrakeys_re = $ek->{'re'};
423 my $extrakeys_md = $ek->{'md'};
424 my $extrakeys_mf = $ek->{'mf'};
425 push(@extrametakeys,$extrakeys_re);
426 $extrametadata{$extrakeys_re} = $extrakeys_md;
427 $extrametafile{$extrakeys_re} = $extrakeys_mf;
428 }
429 delete($self->{'subdir_extrametakeys'}->{$local_dirname});
430 }
431
432 # apply metadata pass for each of the files in the directory
433 my $num_files = scalar(@dir);
434 for (my $i = 0; $i < scalar(@dir); $i++) {
435 my $subfile = $dir[$i];
436 my $this_file_base_dir = $base_dir;
437 last if ($maxdocs != -1 && $count >= $maxdocs);
438 next if ($subfile =~ m/^\.\.?$/);
439 my $file_subfile = &util::filename_cat($file, $subfile);
440 my $full_filename = &util::filename_cat($this_file_base_dir, $file_subfile);
441 if ($self->file_is_blocked($block_hash,$full_filename)) {
442 print STDERR "DirectoryPlugin: file $full_filename was blocked for metadata_read\n" if ($verbosity > 2);
443 next;
444 }
445
446 # Recursively read each $subfile
447 print $outhandle "DirectoryPlugin metadata recurring: $subfile\n" if ($verbosity > 2);
448
449 $count += &plugin::metadata_read ($pluginfo, $this_file_base_dir,
450 $file_subfile,$block_hash,
451 \@extrametakeys, \%extrametadata,
452 \%extrametafile,
453 $processor, $maxdocs, $gli);
454 $additionalmetadata = 1;
455 }
456
457 # filter out any extrametakeys that mention subdirectories and store
458 # for later use (i.e. when that sub-directory is being processed)
459
460 foreach my $ek (@extrametakeys) {
461 my ($subdir_re,$extrakey_dir) = &File::Basename::fileparse($ek);
462
463 $extrakey_dir =~ s/\\\./\./g; # remove RE syntax for .
464 $extrakey_dir =~ s/\\\\/\\/g; # remove RE syntax for \
465
466 my $dirsep_re = &util::get_re_dirsep();
467
468 my $ek_non_re = $ek;
469 $ek_non_re =~ s/\\\./\./g; # remove RE syntax for .
470 $ek_non_re =~ s/\\\\/\\/g; # remove RE syntax for \
471 if ($ek_non_re =~ m/$dirsep_re/) { # specifies at least one directory
472 my $md = $extrametadata{$ek};
473 my $mf = $extrametafile{$ek};
474
475 my $subdir_extrametakeys = $self->{'subdir_extrametakeys'};
476
477 my $subdir_rec = { 're' => $subdir_re, 'md' => $md, 'mf' => $mf };
478
479 # when its looked up, it must be relative to the base dir
480 push(@{$subdir_extrametakeys->{"$local_dirname$extrakey_dir"}},$subdir_rec);
481 #push(@{$subdir_extrametakeys->{"$extrakey_dir"}},$subdir_rec);
482 }
483 }
484
485 # import each of the files in the directory
486 $count=0;
487 for (my $i = 0; $i <= scalar(@dir); $i++) {
488 # When every file in the directory has been done, pause for a moment (figuratively!)
489 # If the -recheck_directories argument hasn't been provided, stop now (default)
490 # Otherwise, re-read the contents of the directory to check for new files
491 # Any new files are added to the @dir list and are processed as normal
492 # This is necessary when documents to be indexed are specified in bibliographic DBs
493 # These files are copied/downloaded and stored in a new folder at import time
494 if ($i == $num_files) {
495 last unless $self->{'recheck_directories'};
496
497 # Re-read the files in the directory to see if there are any new files
498 last if (!opendir (DIR, $dirname));
499 my @dirnow = readdir (DIR);
500 closedir (DIR);
501
502 # We're only interested if there are more files than there were before
503 last if (scalar(@dirnow) <= scalar(@dir));
504
505 # Any new files are added to the end of @dir to get processed by the loop
506 my $j;
507 foreach my $subfilenow (@dirnow) {
508 for ($j = 0; $j < $num_files; $j++) {
509 last if ($subfilenow eq $dir[$j]);
510 }
511 if ($j == $num_files) {
512 # New file
513 push(@dir, $subfilenow);
514 }
515 }
516 # When the new files have been processed, check again
517 $num_files = scalar(@dir);
518 }
519
520 my $subfile = $dir[$i];
521 my $this_file_base_dir = $base_dir;
522 last if ($maxdocs != -1 && ($count + $total_count) >= $maxdocs);
523 next if ($subfile =~ /^\.\.?$/);
524
525 my $file_subfile = &util::filename_cat($file, $subfile);
526 my $full_filename
527 = &util::filename_cat($this_file_base_dir,$file_subfile);
528
529 if ($self->file_is_blocked($block_hash,$full_filename)) {
530 print STDERR "DirectoryPlugin: file $full_filename was blocked for read\n" if ($verbosity > 2);
531 next;
532 }
533 #print STDERR "processing $full_filename\n";
534 # Follow Windows shortcuts
535 if ($subfile =~ /(?i)\.lnk$/ && $ENV{'GSDLOS'} =~ /^windows$/i) {
536 require Win32::Shortcut;
537 my $shortcut = new Win32::Shortcut(&util::filename_cat($dirname, $subfile));
538 if ($shortcut) {
539 # The file to be processed is now the target of the shortcut
540 $this_file_base_dir = "";
541 $file = "";
542 $subfile = $shortcut->Path;
543 }
544 }
545
546 # check for a symlink pointing back to a leading directory
547 if (-d "$dirname/$subfile" && -l "$dirname/$subfile") {
548 # readlink gives a "fatal error" on systems that don't implement
549 # symlinks. This assumes the the -l test above would fail on those.
550 my $linkdest=readlink "$dirname/$subfile";
551 if (!defined ($linkdest)) {
552 # system error - file not found?
553 warn "DirectoryPlugin: symlink problem - $!";
554 } else {
555 # see if link points to current or a parent directory
556 if ($linkdest =~ m@^[\./\\]+$@ ||
557 index($dirname, $linkdest) != -1) {
558 warn "DirectoryPlugin: Ignoring recursive symlink ($dirname/$subfile -> $linkdest)\n";
559 next;
560 ;
561 }
562 }
563 }
564
565 print $outhandle "DirectoryPlugin: preparing metadata for $subfile\n" if ($verbosity > 2);
566
567 # Make a copy of $in_metadata to pass to $subfile
568 my $out_metadata = {};
569 &metadatautil::combine_metadata_structures($out_metadata, $in_metadata);
570
571 # check the assocfile_info
572 if (defined $self->{'assocfile_info'}->{$full_filename}) {
573 &metadatautil::combine_metadata_structures($out_metadata, $self->{'assocfile_info'}->{$full_filename});
574 }
575 ## encode the filename as perl5 doesn't handle unicode filenames
576
577 my $tmpfile = Encode::encode_utf8($subfile);
578 # Next add metadata read in XML files (if it is supplied)
579 if ($additionalmetadata == 1) {
580 foreach my $filespec (@extrametakeys) {
581
582 ## use the utf8 encoded filename to do the filename comparison
583 if ($tmpfile =~ /^$filespec$/) {
584 print $outhandle "File \"$subfile\" matches filespec \"$filespec\"\n"
585 if ($verbosity > 2);
586 my $mdref = $extrametadata{$filespec};
587 my $mfref = $extrametafile{$filespec};
588
589 # Add the list files where the metadata came from
590 # into the metadata table so we can track this
591 # This mechanism is similar to how gsdlassocfile works
592
593 my @metafile_pair = ();
594 foreach my $l (keys %$mfref) {
595 my $f = $mfref->{$l};
596 push (@metafile_pair, "$f : $l");
597 }
598
599 $mdref->{'gsdlmetafile'} = \@metafile_pair;
600
601 &metadatautil::combine_metadata_structures($out_metadata, $mdref);
602 }
603 }
604 }
605
606 if (defined $self->{'inf_timestamp'}) {
607 # Look to see if it's a completely new file
608
609 if (!$block_hash->{'new_files'}->{$full_filename}) {
610 # Not a new file, must be an existing file
611 # Let' see if it's newer than the last import.pl
612
613
614 if (! -d $full_filename) {
615 if (!$block_hash->{'reindex_files'}->{$full_filename}) {
616 # filename has been around for longer than inf_timestamp
617 print $outhandle "**** Skipping $subfile\n" if ($verbosity >3);
618 next;
619 }
620 else {
621 # Remove old folder in archives (might hash to something different)
622 # *** should be doing this on a Del one as well
623 # but leave folder name?? and ensure hashs to
624 # same again??
625
626 # Then let through as new doc??
627
628 # mark to doc-oids that rely on it for re-indexing
629 }
630 }
631 }
632 }
633
634 # Recursively read each $subfile
635 print $outhandle "DirectoryPlugin recurring: $subfile\n" if ($verbosity > 2);
636
637 $count += &plugin::read ($pluginfo, $this_file_base_dir,
638 $file_subfile, $block_hash,
639 $out_metadata, $processor, $maxdocs, ($total_count + $count), $gli);
640 }
641
642 return $count;
643}
644
645sub compile_stats {
646 my $self = shift(@_);
647 my ($stats) = @_;
648}
649
6501;
Note: See TracBrowser for help on using the repository browser.