The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

package TestApp_autorunmode;

use warnings;
use strict;

use base qw( CGI::Application );

use CGI::Application::Plugin::AutoRunmode;

################################################################
#
# run modes
#
#################################################################

sub welcome : StartRunmode {
  my $self = shift;

  my $content = <<EOC;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Welcome</title>
  </head>

  <body>

        Home is where....

  </body>

</html>
EOC

  return $content;
}

sub hello : Runmode {
  my $self = shift;
  my $content = <<EOC;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Hello</title>
  </head>

  <body>

     Hello world!

     <a href="/?rm=whoopee">Whoopee</a>
     <a href="/TestApp/whoopee">Whoopee_dispatch</a>

  </body>

</html>
EOC

  return $content;
}

sub whoopee : Runmode {
  my $content = <<EOC;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Whoopee</title>
  </head>

  <body>

     Whoopee!

  </body>

</html>
EOC

  return $content;
}
1;