The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Catalyst::Dispatcher::"

Catalyst::Dispatcher - The Catalyst Dispatcher River stage three • 603 direct dependents • 677 total dependents

This is the class that maps public urls to actions in your Catalyst application based on the attributes you set....

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

JSORB::Dispatcher::Catalyst - A dispatcher for use with Catalyst River stage one • 1 direct dependent • 1 total dependent

All this basically does it apply the JSORB::Dispatcher::Traits::WithContext to JSORB::Dispatcher::Path and tell it to use the Catalyst context class....

STEVAN/JSORB-0.04 - 13 Jan 2010 19:27:11 UTC

JSORB::Dispatcher::Catalyst::WithInvocant - A Catalyst dispatcher for invocants River stage one • 1 direct dependent • 1 total dependent

Very similar to JSORB::Dispatcher::Catalyst but handles the creation of object invocants for each request....

STEVAN/JSORB-0.04 - 13 Jan 2010 19:27:11 UTC

Catalyst - The Elegant MVC Web Application Framework River stage three • 603 direct dependents • 677 total dependents

Catalyst is a modern framework for making web applications without the pain usually associated with this process. This document is a reference to the main Catalyst application. If you are a new user, we suggest you start with Catalyst::Manual::Tutori...

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Action - Catalyst Action River stage three • 603 direct dependents • 677 total dependents

This class represents a Catalyst Action. You can access the object for the currently dispatched action via $c->action. See the Catalyst::Dispatcher for more information on how actions are dispatched. Actions are defined in Catalyst::Controller subcla...

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Component - Catalyst Component Base Class River stage three • 603 direct dependents • 677 total dependents

This is the universal base class for Catalyst components (Model/View/Controller). It provides you with a generic new() for component construction through Catalyst's component loader with config() support and a process() method placeholder. Note that ...

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Controller - Catalyst Controller base class River stage three • 603 direct dependents • 677 total dependents

Controllers are where the actions in the Catalyst framework reside. Each action is represented by a function with an attribute to identify what kind of action it is. See the Catalyst::Dispatcher for more info about how Catalyst dispatches to actions....

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::ActionChain - Chain of Catalyst Actions River stage three • 603 direct dependents • 677 total dependents

This class represents a chain of Catalyst Actions. It behaves exactly like the action at the *end* of the chain except on dispatch it will execute all the actions in the chain in order....

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::DispatchType - DispatchType Base Class River stage three • 603 direct dependents • 677 total dependents

This is an abstract base class for Dispatch Types. From a code perspective, dispatch types are used to find which actions to call for a given request URL. Website authors will typically work with them via subroutine names attributes; a description of...

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Action::JSORB - Catalyst Action for JSORB dispatchers River stage one • 1 direct dependent • 1 total dependent

This is basically a Catalyst Action that can be used as a gateway to a JSORB dispatcher. It will first look for the dispatcher in the local controller config and failing that will look in the global config....

STEVAN/JSORB-0.04 - 13 Jan 2010 19:27:11 UTC

Catalyst::Action::FromPSGI - Use a PSGI app as a Catalyst action River stage zero No dependents

"Catalyst::Action::FromPSGI" gives you a handy way to mount PSGI apps under Catalyst actions. Note that because Catalyst is in control of the dispatch cycle any limitations you place on it will be placed on the PSGI app as well. So for example: sub f...

FREW/Catalyst-Action-FromPSGI-0.001006 - 05 Aug 2014 02:00:49 UTC

Catalyst::ActionContainer - Catalyst Action Container River stage three • 603 direct dependents • 677 total dependents

This is a container for actions. The dispatcher sets up a tree of these to represent the various dispatch points in your application....

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Plugin::StackTrace - Display a stack trace on the debug screen River stage two • 8 direct dependents • 19 total dependents

This plugin will enhance the standard Catalyst debug screen by including a stack trace of your appliation up to the point where the error occurred. Each stack frame is displayed along with the package name, line number, file name, and code context su...

BOBTFISH/Catalyst-Plugin-StackTrace-0.12 - 12 Jul 2012 14:17:20 UTC

Catalyst::Plugin::SubRequest - Make subrequests to actions in Catalyst River stage one • 3 direct dependents • 4 total dependents

Make subrequests to actions in Catalyst. Uses the catalyst dispatcher, so it will work like an external url call. Methods are provided both to get the body of the response and the full response (Catalyst::Response) object....

JJNAPIORK/Catalyst-Plugin-SubRequest-0.21 - 04 Apr 2015 00:01:25 UTC

Catalyst::DispatchType::Chained - Path Part DispatchType River stage three • 603 direct dependents • 677 total dependents

Dispatch type managing default behaviour. For more information on dispatch types, see: * Catalyst::Manual::Intro for how they affect application authors * Catalyst::DispatchType for implementation information....

JJNAPIORK/Catalyst-Runtime-5.90131 - 20 Jul 2023 23:09:29 UTC

Catalyst::Action::SOAP::RPCEndpoint - RPC Dispatcher River stage zero No dependents

This class is used by Catalyst::Controller::SOAP to dispatch to the RPC operations inside a controller. These operations are quite different from the others, as they are seen by Catalyst as this single action. During the registering phase, the soap r...

DRUOSO/Catalyst-Controller-SOAP-1.25 - 10 Mar 2013 15:57:06 UTC

Catalyst::Plugin::I18N::PathPrefix - Language prefix in the request path River stage zero No dependents

This module allows you to put the language selector as a prefix to the path part of the request URI without requiring any modifications to the controllers (like restructuring all the controllers to chain from a common base controller). (Internally it...

MENDEL/Catalyst-Plugin-I18N-PathPrefix-0.07 - 07 Dec 2011 16:46:46 UTC

Catalyst::Plugin::CachedUriForAction - drop-in supercharger for uri_for_action River stage zero No dependents

This provides a (mostly) drop-in replacement version of "uri_for_action". The stock Catalyst "uri_for_action" method is a thin wrapper around "uri_for". Every time you pass "uri_for" an action to create a parametrized URL for it, it introspects the d...

ARISTOTLE/Catalyst-Plugin-CachedUriForAction-1.005 - 01 Feb 2024 16:15:19 UTC

Catalyst::Plugin::I18N::PathPrefixGeoIP - A drop in for atalyst::Plugin::I18N::PathPrefix that uses GeoIP River stage zero No dependents

This module allows you to put the language selector as a prefix to the path part of the request URI without requiring any modifications to the controllers (like restructuring all the controllers to chain from a common base controller). (Internally it...

RUNARB/Catalyst-Plugin-I18N-PathPrefixGeoIP-0.10 - 06 Jan 2016 15:15:12 UTC

Catalyst::TraitFor::Controller::DBIC::DoesPaging - Helps you paginate, search, sort, and more easily using DBIx::Class River stage one • 1 direct dependent • 1 total dependent

This module helps you to map various DBIx::Class features to CGI parameters. For the most part that means it will help you search, sort, and paginate with a minimum of effort and thought....

WESM/Catalyst-TraitFor-Controller-DBIC-DoesPaging-1.001004 - 09 Mar 2018 21:18:05 UTC
25 results (0.03 seconds)