/[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 6 - (show annotations)
Tue Jun 16 22:15:34 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 552 byte(s)
added atsar example, render hostname in title

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 sub atsar {
23 my $self = shift;
24 $self->render(
25 layout => 'default',
26 commands => [ 'atsar -n 1' ],
27 );
28 }
29
30 1;

  ViewVC Help
Powered by ViewVC 1.1.26