• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

AutoRunmode/H18-Feb-2011-12928

t/H18-Feb-2011-968689

AutoRunmode.pmH A D18-Feb-201114.7 KiB605203

ChangesH A D18-Feb-20112.6 KiB8161

MANIFESTH A D18-Feb-2011395 2019

META.ymlH A D18-Feb-2011362 1210

Makefile.PLH A D18-Feb-2011577 1411

READMEH A D18-Feb-20111 KiB4126

README

1CGI/Application/Plugin/AutoRunmode version 0.18
2===============================================
3
4This plugin for CGI::Application provides easy
5ways to setup run modes. You can just write
6the methods that implement a run mode, you do
7not have to explicitly register it with CGI::App anymore.
8
9There are two approaches: You can flag methods
10in your CGI::App subclass with the attribute "Runmode",
11or you can assign a delegate object, all whose methods
12will become runmodes (you can also mix both approaches).
13
14A third approach is to use a delegate object that
15delegates to Perl source files on disk, an implementation
16of which is included herein.
17
18
19INSTALLATION
20
21To install this module type the following:
22
23   perl Makefile.PL
24   make
25   make test
26   make install
27
28DEPENDENCIES
29
30This module requires these other modules and libraries:
31
32  CGI::Application
33
34COPYRIGHT AND LICENCE
35
36Copyright (C) 2004-2011 Thilo Planz
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself.
40
41