annotate Lib/IMPL/Web/QueryHandler/PageFormat.pm @ 62:c64bd1bf727d

Web application Page query handler
author wizard
date Fri, 12 Mar 2010 16:23:46 +0300
parents
children 76b878ad6596
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
62
c64bd1bf727d Web application
wizard
parents:
diff changeset
1 package IMPL::Web::QueryHandler::PageFormat;
c64bd1bf727d Web application
wizard
parents:
diff changeset
2 use base qw(IMPL::Web::QueryHandler);
c64bd1bf727d Web application
wizard
parents:
diff changeset
3
c64bd1bf727d Web application
wizard
parents:
diff changeset
4 __PACKAGE__->PassThroughArgs;
c64bd1bf727d Web application
wizard
parents:
diff changeset
5
c64bd1bf727d Web application
wizard
parents:
diff changeset
6 use IMPL::Class::Property;
c64bd1bf727d Web application
wizard
parents:
diff changeset
7 use URI;
c64bd1bf727d Web application
wizard
parents:
diff changeset
8
c64bd1bf727d Web application
wizard
parents:
diff changeset
9 sub Process {
c64bd1bf727d Web application
wizard
parents:
diff changeset
10 my ($this,$action,$nextHandler) = @_;
c64bd1bf727d Web application
wizard
parents:
diff changeset
11
c64bd1bf727d Web application
wizard
parents:
diff changeset
12
c64bd1bf727d Web application
wizard
parents:
diff changeset
13 }
c64bd1bf727d Web application
wizard
parents:
diff changeset
14
c64bd1bf727d Web application
wizard
parents:
diff changeset
15 1;