Alvis-QueryFilter

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
name:         Alvis-QueryFilter
version:      0.3
version_from: lib/Alvis/QueryFilter.pm
installdirs:  site
requires:
    CQL::Parser:                   0
    Data::Dumper:                  0
    HTTP::Daemon:                  0
    HTTP::Response:                0
    HTTP::Status:                  0
    LWP::UserAgent:                0
    Test::Simple:                  0.44
    URI::Escape:                   0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Alvis::QueryFilter',
    VERSION_FROM => 'lib/Alvis/QueryFilter.pm', # finds \$VERSION
    AUTHOR       => 'Kimmo Valtonen, Wray Buntine, Vladimir Poroshin',
    ABSTRACT     => 'Alvis query filter for SRU',
    PREREQ_PM    => {
                     'Test::Simple' => 0.44,
		     'Data::Dumper' => 0, 'CQL::Parser' => 0, 'URI::Escape' => 0,
		     'LWP::UserAgent' => 0, 'HTTP::Daemon' => 0, 'HTTP::Status' => 0, 'HTTP::Response' => 0,
                    },
    EXE_FILES    => [ 'bin/run_QF.pl' ],
);

README  view on Meta::CPAN

   make
   make test
   make install

DEPENDENCIES

You must have Treetagger installed from the University of Stuttgart.

This module requires these other modules and libraries:

	Carp Data::Dumper CQL::Parser URI::Escape

Additionally, the scripts in bin/ require:

	LWP::UserAgent HTTP::Daemon HTTP::Status HTTP::Response

COPYRIGHT AND LICENCE

Copyright (C) 2006 by Kimmo Valtonen and Wray Buntine

This library is free software; you can redistribute it and/or modify

lib/Alvis/QueryFilter.pm  view on Meta::CPAN

# A quick'n'dirty query filter
#
#   -- Kimmo Valtonen
#
########################################################################

use strict;
use warnings;

use Carp;
use Data::Dumper;

use Alvis::Treetagger;
use CQL::Parser;
use URI::Escape;

use strict;

our $VERSION = '0.3';
our $verbose = 0;



( run in 1.721 second using v1.01-cache-2.11-cpan-39bf76dae61 )