Koha-Contrib-Tamil

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  MARC::File::XML: '0'
  MARC::Moose::Formater::Iso2709: '0'
  MARC::Moose::Formater::Marcxml: '0'
  MARC::Moose::Formater::Text: '0'
  MARC::Moose::Parser::Iso2709: '0'
  MARC::Moose::Reader::File::Iso2709: '0'
  MARC::Moose::Reader::File::Marcxml: '0'
  MARC::Moose::Record: '0'
  MARC::Moose::Writer: '0'
  MARC::Record: '0'
  Modern::Perl: '0'
  Moose: '0'
  Moose::Util::TypeConstraints: '0'
  MooseX::Getopt: '0'
  MooseX::LogDispatch: '0'
  MooseX::RW::Reader: '0'
  MooseX::RW::Writer::File: '0'
  Path::Tiny: '0'
  Pod::Usage: '0'
  Search::Elasticsearch: '0'
  Text::Xslate: '0'

Makefile.PL  view on Meta::CPAN

    "MARC::File::XML" => 0,
    "MARC::Moose::Formater::Iso2709" => 0,
    "MARC::Moose::Formater::Marcxml" => 0,
    "MARC::Moose::Formater::Text" => 0,
    "MARC::Moose::Parser::Iso2709" => 0,
    "MARC::Moose::Reader::File::Iso2709" => 0,
    "MARC::Moose::Reader::File::Marcxml" => 0,
    "MARC::Moose::Record" => 0,
    "MARC::Moose::Writer" => 0,
    "MARC::Record" => 0,
    "Modern::Perl" => 0,
    "Moose" => 0,
    "Moose::Util::TypeConstraints" => 0,
    "MooseX::Getopt" => 0,
    "MooseX::LogDispatch" => 0,
    "MooseX::RW::Reader" => 0,
    "MooseX::RW::Writer::File" => 0,
    "Path::Tiny" => 0,
    "Pod::Usage" => 0,
    "Search::Elasticsearch" => 0,
    "Text::Xslate" => 0,

Makefile.PL  view on Meta::CPAN

  "MARC::File::XML" => 0,
  "MARC::Moose::Formater::Iso2709" => 0,
  "MARC::Moose::Formater::Marcxml" => 0,
  "MARC::Moose::Formater::Text" => 0,
  "MARC::Moose::Parser::Iso2709" => 0,
  "MARC::Moose::Reader::File::Iso2709" => 0,
  "MARC::Moose::Reader::File::Marcxml" => 0,
  "MARC::Moose::Record" => 0,
  "MARC::Moose::Writer" => 0,
  "MARC::Record" => 0,
  "Modern::Perl" => 0,
  "Moose" => 0,
  "Moose::Util::TypeConstraints" => 0,
  "MooseX::Getopt" => 0,
  "MooseX::LogDispatch" => 0,
  "MooseX::RW::Reader" => 0,
  "MooseX::RW::Writer::File" => 0,
  "Path::Tiny" => 0,
  "Pod::Usage" => 0,
  "Search::Elasticsearch" => 0,
  "Test::More" => 0,

bin/koha-authoritize  view on Meta::CPAN

#!/usr/bin/perl 

package Main;
$Main::VERSION = '0.074';
use Modern::Perl;
use utf8;
use Pod::Usage;
use Koha::Contrib::Tamil::Koha;
use MARC::Moose::Reader::File::Iso2709;
use MARC::Moose::Writer;
use MARC::Moose::Parser::Iso2709;
use Koha::Contrib::Tamil::Authority::FromFile;


binmode(STDOUT, ':utf8');

bin/koha-cloud  view on Meta::CPAN

#!/usr/bin/perl

package Main;
$Main::VERSION = '0.074';
# PODNAME: koha-cloud
# ABSTRACT: Creates HTML keywords clouds from Koha Zebra Indexes

use Modern::Perl;
use Carp;
use YAML::Syck;
use Pod::Usage;
use Getopt::Long;
use Fatal qw( open );
use Koha::Contrib::Tamil::Koha;
use Koha::Contrib::Tamil::Zebra::Clouder;


my ($verbose, $help, $conf) = (0, 0, '');

bin/koha-coce-url  view on Meta::CPAN

#!/usr/bin/perl

# PODNAME: koha-coce-url
# ABSTRACT: Generate a JSON structure of Cover url via Coce

use Modern::Perl;
use utf8;
use Pod::Usage;
use Koha::Contrib::Tamil::Koha;
use C4::Context;
use C4::Biblio;
use MARC::Moose::Record;
use YAML;
use LWP;
use LWP::UserAgent;
use JSON;

bin/koha-dump-biblio  view on Meta::CPAN

#!/usr/bin/perl

# PODNAME: koha-dump-biblio
# ABSTRACT: Dump a Koha Catalog

use Modern::Perl;
use Pod::Usage;
use Getopt::Long;
use Koha::Contrib::Tamil::Biblio::Dumper;


my $verbose  = 0;
my $help     = 0;
my $decode   = 0;
my $formater = 'iso2709';
my @branches;

bin/koha-overdue  view on Meta::CPAN

#!/usr/bin/perl

package Main;
$Main::VERSION = '0.074';
# PODNAME: koha-overdue
# ABSTRACT: Claim overdues each day, grouping same overdues


use Modern::Perl;
use Koha::Contrib::Tamil::Overdue;
use Pod::Usage;
use Getopt::Long;


binmode(STDOUT, ':encoding(utf8)');


my ($verbose, $help, $doit) = (0, 0, 0);
GetOptions( 

bin/koha-unimarc-4xx  view on Meta::CPAN

#!/usr/bin/perl

# PODNAME: koha-unimarc-4xx-fix
# ABSTRACT: Fix inconsistencies between mother/child biblio records

use Modern::Perl;
use Pod::Usage;
use Getopt::Long;
use Koha::Contrib::Tamil::Unimarc4xx::Fix;


my ($help)  = (0);
GetOptions( 
    'help|h'       => \$help,
);

lib/Koha/Contrib/Tamil/Authority/FromFile.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Authority::FromFile;
# ABSTRACT: Find Koha authorities from an ISO2709 file
$Koha::Contrib::Tamil::Authority::FromFile::VERSION = '0.074';

use Moose;

extends qw/ AnyEvent::Processor
            Koha::Contrib::Tamil::Logger     /;

use Modern::Perl;
use utf8;
use FindBin qw( $Bin );
use Carp;
use YAML;
use Koha::Contrib::Tamil::Koha;
use MARC::Moose::Reader::File::Marcxml;
use MARC::Moose::Formater::Marcxml;
use MARC::Moose::Formater::Text;
use MARC::Moose::Parser::Iso2709;
use YAML qw/Dump LoadFile/  ;

lib/Koha/Contrib/Tamil/Biblio/Dumper.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Biblio::Dumper;
# ABSTRACT: Class dumping a Koha Catalog
$Koha::Contrib::Tamil::Biblio::Dumper::VERSION = '0.074';
use Moose;

extends 'AnyEvent::Processor';

use Modern::Perl;
use utf8;
use Koha::Contrib::Tamil::Koha;
use MARC::Moose::Record;
use MARC::Moose::Writer;
use MARC::Moose::Formater::Iso2709;
use C4::Biblio;
use C4::Items qw/ Item2Marc PrepareItemrecordDisplay /;
use Koha::Items;
use Locale::TextDomain 'Koha-Contrib-Tamil';

lib/Koha/Contrib/Tamil/Koha.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Koha;
#ABSTRACT: Class exposing info about a Koha instance.
$Koha::Contrib::Tamil::Koha::VERSION = '0.074';
use Moose;

use Modern::Perl;
use Carp;
use XML::Simple;
use DBI;
use ZOOM;
use MARC::Record;
use MARC::File::XML;
use YAML;
use Search::Elasticsearch;


lib/Koha/Contrib/Tamil/Logger.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Logger;
# ABSTRACT: Base class pour logger
$Koha::Contrib::Tamil::Logger::VERSION = '0.074';

use Moose;
use Modern::Perl;
use FindBin qw( $Bin );
use Log::Dispatch;
use Log::Dispatch::Screen;
use Log::Dispatch::File;



has log_filename => (
    is => 'rw',
    isa => 'Str',

lib/Koha/Contrib/Tamil/Overdue.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Overdue;
$Koha::Contrib::Tamil::Overdue::VERSION = '0.074';
use Moose;
use Modern::Perl;
use YAML qw/ Dump LoadFile /;
use DateTime;
use List::Util qw/ first /;
use Path::Tiny;
use Text::Xslate;
use C4::Context;
use C4::Letters;
use C4::Letters;


lib/Koha/Contrib/Tamil/RecordReader.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::RecordReader;
#ABSTRACT: Koha biblio/authority records reader
$Koha::Contrib::Tamil::RecordReader::VERSION = '0.074';
use Moose;

with 'MooseX::RW::Reader';


use Modern::Perl;
use utf8;
use Moose::Util::TypeConstraints;
use MARC::Record;
use MARC::File::XML;
use C4::Context;
use C4::Biblio qw/ GetMarcFromKohaField /;
use C4::Items qw/ Item2Marc /;


subtype 'Koha::RecordType'

lib/Koha/Contrib/Tamil/Unimarc4xx/Fix.pm  view on Meta::CPAN

package Koha::Contrib::Tamil::Unimarc4xx::Fix;
# ABSTRACT: Class checking mother/child biblios inconsistencies
$Koha::Contrib::Tamil::Unimarc4xx::Fix::VERSION = '0.074';
use Moose;

extends 'AnyEvent::Processor';

use Modern::Perl;
use utf8;
use MARC::Moose::Record;
use C4::Biblio qw/ ModBiblio /;
use YAML;


binmode(STDOUT, ':encoding(utf8)');

has tags => (is => 'rw', isa => 'ArrayRef', default => sub { [] });



( run in 0.686 second using v1.01-cache-2.11-cpan-4d50c553e7e )