summaryrefslogtreecommitdiff
path: root/lib/PAUSE/OpenID/View/XSLT.pm
blob: 423216f6d23d1c774c4920ecb6248c8ab178bc10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package PAUSE::OpenID::View::XSLT; 
 
use strict;
use base 'Catalyst::View::XSLT';
 
# example configuration 
 
__PACKAGE__->config(
   # relative paths to the directories with templates 
INCLUDE_PATH => [
PAUSE::OpenID->path_to( 'root''templates' ),
],
TEMPLATE_EXTENSION => '.xsl'# default extension when getting template name from the current action 
DUMP_CONFIG => 1, # use for Debug. Will dump the final (merged) configuration for XSLT view 
#LibXSLT => { # XML::LibXSLT specific parameters 
# register_function => [ 
# { 
# uri => 'urn:catalyst', 
# name => 'Hello', 
# subref => sub { return $_[0] }, 
# } 
# ], 
#}, 
);
=head1 NAME
 
PAUSE::OpenID::View::XSLT - XSLT View Component
 
=head1 SYNOPSIS
 
See L<PAUSE::OpenID>
 
=head1 DESCRIPTION
 
Catalyst XSLT View.
 
=head1 AUTHOR
 
Michael Kr�ll,,,
 
=head1 LICENSE
 
This library is free software . You can redistribute it and/or modify it under
the same terms as perl itself.
 
=cut
 
1;