source: trunk/gsdl/perllib/plugins/TEXTPlug.pm@ 1410

Last change on this file since 1410 was 1410, checked in by davidb, 24 years ago

Introduction of "ConvertTo" family of plugins. This establishes
a new inheritance hierarchy.

BasPlug -> ConvertToBasPlug -> HTMLPlug/TEXTPlug -> ConvertToPlug

-> PDFPlug/WordPlug/Future application plugins

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1###########################################################################
2#
3# TEXTPlug.pm -- simple text plugin
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# creates simple single-level document. Adds Title metadata
27# of first line of text (up to 100 characters long).
28
29package TEXTPlug;
30
31use ConvertToBasPlug;
32
33sub BEGIN {
34 @ISA = ('ConvertToBasPlug');
35}
36
37use strict;
38
39sub new {
40 my ($class) = @_;
41 my $self = new ConvertToBasPlug ($class, @_);
42
43 $self->{'convert_to'} = "TEXT";
44 $self->{'convert_to_ext'} = "txt";
45
46 return bless $self, $class;
47}
48
49sub get_default_process_exp {
50 my $self = shift (@_);
51
52 return q^(?i)\.te?xt$^;
53}
54
55# do plugin specific processing of doc_obj
56sub process {
57 my $self = shift (@_);
58 my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj) = @_;
59
60 print STDERR "TEXTPlug: processing $file\n"
61 if $self->{'verbosity'} > 1;
62
63 my $cursection = $doc_obj->get_top_section();
64
65 # get title metadata
66 # (don't need to get title if it has been passed
67 # in from another plugin)
68 if (!defined $metadata->{'Title'}) {
69 my ($title) = $$textref =~ /^([^\n]*)/;
70 if (length($title) > 100) {
71 $title = substr ($title, 0, 100);
72 }
73 $doc_obj->add_utf8_metadata ($cursection, "Title", $title);
74 }
75
76 # insert preformat tags and add text to document object
77 $doc_obj->add_utf8_text($cursection, "<pre>\n$$textref\n</pre>");
78
79 return 1;
80}
81
821;
83
84
85
86
87
88
89
90
91
92
93
Note: See TracBrowser for help on using the repository browser.