Query: catalyst::controller::sru
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Catalyst::Controller::SRU(3pm) User Contributed Perl Documentation Catalyst::Controller::SRU(3pm)NAMECatalyst::Controller::SRU - Dispatch SRU methods with CatalystSYNOPSISpackage MyApp::Controller::SRU; # use it as a base controller use base qw( Catalyst::Controller::SRU ); # explain, scan and searchretrieve methods sub explain { my ( $self, $c, $sru_request, # ISA SRU::Request::Explain $sru_response, # ISA SRU::Response::Explain ) = @_; } sub scan { my ( $self, $c, $sru_request, # ISA SRU::Request::Scan $sru_response, # ISA SRU::Response::Scan $cql, # ISA CQL::Parser root node ) = @_; } sub searchRetrieve { my ( $self, $c, $sru_request, # ISA SRU::Request::SearchRetrieve $sru_response, # ISA SRU::Response::SearchRetrieve $cql, # ISA CQL::Parser root node ) = @_; }DESCRIPTIONThis module allows your controller class to dispatch SRU actions ("explain", "scan", and "searchRetrieve") from its own class.METHODSindex : Private This method will create an SRU request, response and possibly a CQL object based on the type of SRU request it finds. It will then pass the data over to your customized method.SEE ALSOo CatalystAUTHORBrian Cassidy <bricas@cpan.org>COPYRIGHT AND LICENSECopyright 2005-2009 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2009-12-02 Catalyst::Controller::SRU(3pm)
Related Man Pages |
---|
sru(3pm) - debian |
catalyst::controller::sru(3pm) - debian |
catalyst::helper::model::cdbi(3pm) - debian |
sru::request(3pm) - debian |
sru::server(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
What does ls * do |
Please can any one explain this ${0##/} |
$? means? |
Explain following sed syntax please |
Can someone please explain what tr#A-Za-z0-9+/# -_#; means in perl? |