########################################################################### # # FavouritesPlug.pm -- Plugin for Internet Explorer Favourites files # By Stephen De Gabrielle # # A component of the Greenstone digital library software # from the New Zealand Digital Library Project at the # University of Waikato, New Zealand. # # Copyright (C) 2005 New Zealand Digital Library Project # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ########################################################################### # hacked together by Stephen De Gabrielle from various plugins # especially SRCPlug by John McPherson Nov 2000 package FavouritesPlug; use BasPlug; use strict; no strict 'refs'; # allow filehandles to be variables and viceversa sub BEGIN { @FavouritesPlug::ISA = ('BasPlug'); } my $arguments = [ { 'name' => "process_exp", 'desc' => "{BasPlug.process_exp}", 'type' => "regexp", 'deft' => &get_default_process_exp(), 'reqd' => "no" } ]; my $options = { 'name' => "FavouritesPlug", 'desc' => "FavouritesPlug imports Internet Explorer style Favourites. Favourites are often found in the \"C:\\Documents and Settings\\[your username]\\Favorites\" folder on your computer, but can also be made by dragging a bookmark or location from your browser (any) to the desktop.", 'abstract' => "no", 'inherits' => "yes", 'args' => $arguments }; sub new { my ($class) = shift(@_); my ($pluginlist,$inputargs,$hashArgOptLists) = @_; push(@$pluginlist, $class); if(defined $arguments){ push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});} if(defined $options) { push(@{$hashArgOptLists->{"OptList"}},$options)}; my $self = new BasPlug($pluginlist, $inputargs, $hashArgOptLists); return bless $self, $class; } sub get_default_process_exp { # URL is extension for single bookmarks under windows. return q^(?i)\.URL$^; } # do plugin specific processing of doc_obj sub process { my $self = shift (@_); my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_; my $outhandle = $self->{'outhandle'}; my $section = $doc_obj->get_top_section(); print STDERR "\n" if ($gli); print $outhandle "FavouritesPlug: processing $file\n" if $self->{'verbosity'} > 1; # don't want mg to turn escape chars into actual values $$textref =~ s/\\/\\\\/g; # use filename (minus the .url extension) as the title my $title = $file; $title =~ s/.url$//i; $doc_obj->add_utf8_metadata($section, "Title", $title); # get the URL from the file my ($url) = ($$textref =~ m/^URL=(http.+)/mg); $doc_obj->add_metadata($section, "URL", $url); # Add srclink metadata for an automatic link to the webpage $doc_obj->add_utf8_metadata($section, "srclink", ""); $doc_obj->add_utf8_metadata($section, "srcicon", "_iconworld_"); $doc_obj->add_utf8_metadata($section, "/srclink", ""); # Tidy up the favourite text to look a bit nicer $$textref =~ s/^\\n/

/g; $$textref =~ s/\[/

/g; $$textref =~ s/\]/<\/strong>

/g; $$textref =~ s/^Modified=(.+)$/Modified<\/strong>$1

/g; $doc_obj->add_utf8_text($section, "$$textref"); $doc_obj->add_metadata($section, "FileFormat", "Favourite"); return 1; } 1;