source: trunk/gsdl/perllib/plugins/PPTPlug.pm@ 9465

Last change on this file since 9465 was 9465, checked in by kjdon, 19 years ago

ConvertToPlug now accepts the gli arg in read() and passes it in process(), and all the convert plugins now print a processing message for gli in their process() method.

  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1###########################################################################
2#
3# PPTPlug.pm -- plugin for importing Microsoft PowerPoint files.
4# (currently only versions 95 and 97)
5#
6# A component of the Greenstone digital library software
7# from the New Zealand Digital Library Project at the
8# University of Waikato, New Zealand.
9#
10# Copyright (C) 2002 New Zealand Digital Library Project
11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25#
26###########################################################################
27
28package PPTPlug;
29
30use ConvertToPlug;
31
32sub BEGIN {
33 @ISA = ('ConvertToPlug');
34}
35
36my $arguments =
37 [ { 'name' => "process_exp",
38 'desc' => "{BasPlug.process_exp}",
39 'type' => "regexp",
40 'reqd' => "no",
41 'deft' => &get_default_process_exp() },
42 ];
43
44my $options = { 'name' => "PPTPlug",
45 'desc' => "{PPTPlug.desc}",
46 'abstract' => "no",
47 'inherits' => "Yes",
48 'args' => $arguments };
49
50sub new {
51 my $class = shift (@_);
52
53 my $self = new ConvertToPlug ($class, @_);
54 $self->{'plugin_type'} = "PPTPlug";
55 # ppthtml outputs utf-8 already.
56 if ($self->{'input_encoding'} eq "auto") {
57 $self->{'input_encoding'} = "utf8";
58 }
59
60 # 14-05-02 To allow for proper inheritance of arguments - John Thompson
61 my $option_list = $self->{'option_list'};
62 push( @{$option_list}, $options );
63
64 return bless $self, $class;
65}
66
67sub get_default_process_exp {
68 my $self = shift (@_);
69 return q^(?i)\.ppt$^;
70}
71
72sub process {
73 my $self = shift (@_);
74
75 my $outhandle = $self->{'outhandle'};
76 print $outhandle "PPTPlug: passing $_[3] on to $self->{'converted_to'}Plug\n"
77 if $self->{'verbosity'} > 1;
78 print STDERR "<Processing n='$_[3]' p='PPTPlug'>\n" if ($_[6]);
79
80 return ConvertToPlug::process_type($self,"ppt",@_);
81}
82
831;
Note: See TracBrowser for help on using the repository browser.