Changeset 17722
- Timestamp:
- 2008-11-06 11:02:42 (2 months ago)
- Files:
-
- gsdl/trunk/perllib/plugins/PowerPointPlugin.pm (moved) (moved from gsdl/trunk/perllib/plugins/PPTPlugin.pm) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gsdl/trunk/perllib/plugins/PowerPointPlugin.pm
r16021 r17722 1 1 ########################################################################### 2 2 # 3 # P PTPlugin.pm -- plugin for importing Microsoft PowerPoint files.3 # PowerPointPlugin.pm -- plugin for importing Microsoft PowerPoint files. 4 4 # (currently only versions 95 and 97) 5 5 # … … 26 26 ########################################################################### 27 27 28 package P PTPlugin;28 package PowerPointPlugin; 29 29 30 30 use ConvertBinaryFile; … … 35 35 36 36 sub BEGIN { 37 @P PTPlugin::ISA = ('ConvertBinaryFile', 'ReadTextFile');37 @PowerPointPlugin::ISA = ('ConvertBinaryFile', 'ReadTextFile'); 38 38 } 39 39 … … 61 61 ]; 62 62 63 my $options = { 'name' => "P PTPlugin",63 my $options = { 'name' => "PowerPointPlugin", 64 64 'desc' => "{PPTPlugin.desc}", 65 65 'abstract' => "no",
