/[SysIface]/lib/SysIface/Example.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/SysIface/Example.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations)
Tue Jun 16 19:47:21 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 430 byte(s)
execute commands on remote hostname

1 package SysIface::Example;
2
3 use strict;
4 use warnings;
5
6 use base 'Mojolicious::Controller';
7
8 use File::Slurp;
9
10 # This action will render a template
11 sub welcome {
12 my $self = shift;
13
14 # Render template "example/welcome.html.epl" with message and layout
15 $self->render(
16 layout => 'default',
17 message => 'Welcome to the Mojolicious Web Framework!',
18 commands => [ read_file('sh/commands.sh') ],
19 );
20 }
21
22 1;

  ViewVC Help
Powered by ViewVC 1.1.26