/[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

Contents of /lib/Perly/View.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5 - (show annotations)
Tue Jun 5 10:53:34 2007 UTC (17 years ago) by dpavlin
File size: 560 byte(s)
specify perl syntax highlightling
1 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 render_param( $action => 'source', cols => 80, rows => 25, language => 'perl' );
17 #render_action( $action => [ 'source' => { cols => 80, rows => 30 }, ] );
18 form_submit(
19 label => _("Save my code"),
20 onclick => [
21 { beforeclick => "CodePress.beforeSubmit();" },
22 ],
23 );
24 }
25 };
26
27 1;

  ViewVC Help
Powered by ViewVC 1.1.26