The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:Catalyst::Plugin::"

Catalyst::Plugin::Alarm - call an action with a timeout value River stage zero No dependents

Catalyst::Plugin::Alarm implements the timeout_call() function of Sys::SigAction for both global and local alarms. You may set a global timeout value that will trigger alarm if the total processing time of any request exceeds N seconds. You may call ...

KARMAN/Catalyst-Plugin-Alarm-0.05 - 22 Aug 2010 03:57:00 UTC

Catalyst::Plugin::Flavour - Catalyst plugin for request flavours. River stage zero No dependents

This plugin allows you to handle request flavours like Blosxom....

TYPESTER/Catalyst-Plugin-Flavour-0.03 - 02 Sep 2006 08:49:16 UTC

Catalyst::Plugin::C3 - Catalyst Plugin to subvert NEXT to use Class::C3 River stage one • 1 direct dependent • 2 total dependents

*** WARNING *** THIS MODULE IS STILL EXPERIMENTAL !!! This module is related to the possible transition of Catalyst from NEXT to Class::C3. This transition hasn't happened yet, and might not for a while. This module is only intended for use by Cataly...

BLBLACK/Catalyst-Plugin-C3-0.03 - 04 Jun 2007 05:51:17 UTC

Catalyst::Plugin::AtomServer - Atom API server for Catalyst applications River stage zero No dependents

*Catalyst::Plugin::AtomServer* implements the necessary bits to make it easy to build an Atom API server for any Catalyst-based application. It implements: * Simple XML Views *Catalyst::View::Atom::XML* provides a base view class that your applicatio...

BTROTT/Catalyst-Plugin-AtomServer-0.04 - 27 Jun 2006 17:18:11 UTC

Catalyst::Plugin::URI - Yet another sugar plugin for $c->uri_for River stage zero No dependents

NOTE Starting with version 0.003 I changed that way this works. If you want or need the old API for backcompatibility please set the following configuration flag: MyApp->config('Plugin::URI' => { version => 1 }); NOTE Starting with version 0.005 we r...

JJNAPIORK/Catalyst-Plugin-URI-0.006 - 14 Aug 2023 18:51:20 UTC

Catalyst::Plugin::ENV - getter for value from enviroment River stage zero No dependents

In some tasks in catalyst app - you need value for your variable from %ENV When catapp works as fcgi server - you can get this values from $c->engine->env If you run devel catalyst server - you can get this values from %ENV The plugin give you availa...

PLCGI/Catalyst-Plugin-ENV-0.02 - 11 May 2009 14:34:51 UTC

Catalyst::Plugin::MobileAgent - HTTP mobile user agent string parser plugin for Catalyst River stage one • 2 direct dependents • 2 total dependents

Catalyst plugin parsed user agent string for mobile in Japan....

KURIHARA/Catalyst-Plugin-MobileAgent-0.041 - 10 Feb 2009 17:53:27 UTC

Catalyst::Plugin::CRUD - CRUD (create/read/update/delete) Plugin for Catalyst River stage zero No dependents

This module provides CRUD (create/read/update/delete) action. create: insert new record read: retrieve record update: update already record delete: delete record list: retrieve all records EXPORT None by default....

BAYSIDE/Catalyst-Plugin-CRUD-0.21 - 02 Oct 2007 19:30:25 UTC

Catalyst::Plugin::Mode - select config values depends in your development process River stage zero No dependents

Only include the plugin in your main app module Sometimes you need any values for your environment(development,test,predproduction,production) For example in development you use such urls as http://you_url in test http://test_domain.you_url/path in p...

PLCGI/Catalyst-Plugin-Mode-0.03 - 19 Jan 2009 10:29:17 UTC

Catalyst::Plugin::I18N - I18N for Catalyst River stage two • 7 direct dependents • 16 total dependents

Supports mo/po files and Maketext classes under your application's I18N namespace. # MyApp/I18N/de.po msgid "Hello Catalyst" msgstr "Hallo Katalysator" # MyApp/I18N/i_default.po msgid "messages.hello.catalyst" msgstr "Hello Catalyst - fallback transl...

BOBTFISH/Catalyst-Plugin-I18N-0.10 - 16 Jun 2010 09:10:07 UTC

Catalyst::Plugin::MobileUserID - mobile user id returned plugin for Catalyst River stage zero No dependents

This Plugin is mobile user id returned for Catalyst...

MIYAZAKI/Catalyst-Plugin-MobileUserID-0.01 - 06 May 2007 09:52:30 UTC

Padre::Plugin::Catalyst - Catalyst helper interface for Padre River stage zero No dependents

As all Padre plugins, after installation you need to enable it via "Plugins->Plugin Manager". Once you enable it, you should see a 'Catalyst Dev Server' panel on the bottom of your screen (probably next to your 'output' tab). This panel lets you star...

AZAWAWI/Padre-Plugin-Catalyst-0.13 - 08 Dec 2010 18:46:39 UTC

Catalyst::Plugin::Flash - put values on the stash of the next request River stage zero No dependents

This plugin will allow providing values that will automatically be placed on the stash during a subsequent request....

ARISTOTLE/Catalyst-Plugin-Flash-0.001 - 09 Apr 2024 05:06:19 UTC

Catalyst::Plugin::Hooks - Add hooks to Catalyst engine actions River stage zero No dependents

Don't use this plugin! Use Catalyst::Plugin::Observe. All functionality provided in C:P:Hooks will very shortly be available in C:P:Observe. C:P:Hooks is probably not going to work in the next Catalyst release, so rewrite your code to use C:P:Observe...

BERIKV/Catalyst-Plugin-Hooks-0.03 - 22 Nov 2006 18:04:03 UTC

Catalyst::Plugin::Cache - Flexible caching support for Catalyst. River stage one • 7 direct dependents • 8 total dependents

This plugin gives you access to a variety of systems for caching data. It allows you to use a very simple configuration API, while maintaining the possibility of flexibility when you need it later. Among its features are support for multiple backends...

BOBTFISH/Catalyst-Plugin-Cache-0.12 - 25 Feb 2013 14:45:52 UTC

Catalyst::Plugin::URLMap - Mount a Plack application using Catalyst Configuration River stage zero No dependents

Modern versions of Catalyst use Plack as the underlying engine to connect your application to an http server. This means that you can take advantage of the full Plack software ecosystem to grow your application and to better componentize and re-use y...

JJNAPIORK/Catalyst-Plugin-URLMap-0.002 - 06 Apr 2012 16:32:24 UTC

Catalyst::Plugin::AtomPP - Dispatch AtomPP methods with Catalyst. River stage zero No dependents

This plugin allows you to dispatch AtomPP methods with Catalyst. Require other authentication plugin, if needed. (Authentication::CDBI::Basic, WSSE, or so)...

TYPESTER/Catalyst-Plugin-AtomPP-0.04 - 15 Sep 2005 02:33:18 UTC

Catalyst::Plugin::Statsd - Log Catalyst stats to statsd River stage zero No dependents

This plugin will log Catalyst timing statistics to statsd. CONFIGURATION __PACKAGE__->config( 'Plugin::Statsd' => { disable_stats_report => 0, }, ); "disable_stats_report" Enabling stats will also log a table of statistics to the Catalyst log. If you...

RRWO/Catalyst-Plugin-Statsd-v0.8.2 - 22 Jun 2023 11:37:40 UTC

Catalyst::Plugin::Assets - Manage and minify .css and .js assets in a Catalyst application River stage one • 1 direct dependent • 1 total dependent

Catalyst::Plugin::Assets integrates File::Assets into your Catalyst application. Essentially, it provides a unified way to include .css and .js assets from different parts of your program. When you're done processing a request, you can use $catalyst-...

RKRIMEN/Catalyst-Plugin-Assets-0.036 - 18 Feb 2010 20:41:46 UTC

Catalyst::Plugin::Images - Generate image tags for static files. River stage zero No dependents

This plugin provides a quick and easy way to include your images on the page, automatically extracting and caching image metadata. It's automatically extendable, just pass whatever attribute you require as a key/value pair, and it will be added to th...

BOBTFISH/Catalyst-Plugin-Images-0.02 - 20 Jan 2009 00:05:51 UTC
561 results (0.116 seconds)