# Convert.pm: Generic Conversions for RDA.CONFIG Reports package Convert::RDA::CONFIG::Convert; # $Id: Convert.pm,v 1.6 2014/08/19 16:13:58 RDA Exp $ # ARCS: $Header: /home/cvs/cvs/RDA_8/src/scripting/lib/Convert/RDA/CONFIG/Convert.pm,v 1.6 2014/08/19 16:13:58 RDA Exp $ # # Change History # 20140819 MSC Improve the documentation. =head1 NAME Convert::RDA::CONFIG::Convert - Generic Conversions for RDA.CONFIG Reports =head1 SYNOPSIS require Convert::RDA::CONFIG::Convert; =head1 DESCRIPTION This package regroups generic conversion methods for the RDA.CONFIG module reports. It is only provided as plugin example and is thus incomplete by nature. =cut use strict; BEGIN { use Exporter; use RDA::Text qw(get_string); use RDA::Driver::Convert; } # Define the global public variables use vars qw($STRINGS $VERSION @ISA %PLUGIN); $VERSION = sprintf('%d.%02d', q$Revision: 1.6 $ =~ /(\d+)\.(\d+)/); @ISA = qw(Exporter); %PLUGIN = ( cnv => [{blk => { database => [ [qr{^Database Overview$}, ## no critic (Fix) {q{*} => 'database_overview'}], [qr{^V\$Database$}, {q{*} => 'database_details'}], [qr{^V\$Version$}, {q{*} => 'database_versions'}], [qr{^Database Connection Information$}, ## no critic (Fix) {q{*} => 'database_ping'}]], }, nam => 'Custom Table Tags', rnk => 10, sel => \&RDA::Driver::Convert::sel_block, typ => 'T', }, ], ); # Define the global private constants # Define the global private variables # Report the package version sub Version { return $VERSION; } 1; __END__ =head1 SEE ALSO L, L, L, L =head1 COPYRIGHT NOTICE Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. =head1 TRADEMARK NOTICE Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. =cut