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

Last change on this file since 2219 was 2219, checked in by sjboddie, 23 years ago

Had another go at suppressing the "subroutine redefined" warnings as
"no warnings" doesn't work on older versions of perl. Now use the
$SIG{WARN} variable to do the job instead.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 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 BasPlug;
32
33sub BEGIN {
34 @ISA = ('BasPlug');
35}
36
37sub new {
38 my ($class) = @_;
39 my $self = new BasPlug ($class, @_);
40
41 return bless $self, $class;
42}
43
44sub get_default_process_exp {
45 my $self = shift (@_);
46
47 return q^(?i)\.te?xt$^;
48}
49
50# do plugin specific processing of doc_obj
51sub process {
52 my $self = shift (@_);
53 my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj) = @_;
54 my $outhandle = $self->{'outhandle'};
55
56 print $outhandle "TEXTPlug: processing $file\n"
57 if $self->{'verbosity'} > 1;
58
59 my $cursection = $doc_obj->get_top_section();
60
61 # get title metadata
62 # (don't need to get title if it has been passed
63 # in from another plugin)
64 if (!defined $metadata->{'Title'}) {
65 my ($title) = $$textref =~ /^\s*([^\n]*)/;
66 if (length($title) > 100) {
67 $title = substr ($title, 0, 100);
68 }
69 $doc_obj->add_utf8_metadata ($cursection, "Title", $title);
70 }
71
72 # we need to escape the escape character, or else mg will convert into
73 # eg literal newlines, instead of leaving the text as '\n'
74 $$textref =~ s/\\/\\\\/g;
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.