/[Perly]/lib/Perly/View.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /lib/Perly/View.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5 - (hide annotations)
Tue Jun 5 10:53:34 2007 UTC (16 years, 11 months ago) by dpavlin
File size: 560 byte(s)
specify perl syntax highlightling
1 dpavlin 3 package Perly::View;
2    
3     use strict;
4     use warnings;
5    
6     use Jifty::View::Declare -base;
7    
8     template '/' => page {
9     h1 { _("Enter your code") }
10     div { show 'code_editor' }
11     };
12    
13     private template 'code_editor' => sub {
14     form {
15     my $action = new_action( class => 'CreateCode' );
16 dpavlin 5 render_param( $action => 'source', cols => 80, rows => 25, language => 'perl' );
17 dpavlin 3 #render_action( $action => [ 'source' => { cols => 80, rows => 30 }, ] );
18 dpavlin 4 form_submit(
19     label => _("Save my code"),
20     onclick => [
21     { beforeclick => "CodePress.beforeSubmit();" },
22     ],
23     );
24 dpavlin 3 }
25     };
26    
27     1;

  ViewVC Help
Powered by ViewVC 1.1.26