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

Last change on this file since 1424 was 1424, checked in by sjboddie, 24 years ago

Added a -out option to most of the perl building scripts to allow output
debug information to be directed to a file.

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