The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp::Controller::Test::View;

use strict;
use warnings;
use base 'Catalyst::Controller';

=head1 NAME

TestApp::Controller::Test::View - Catalyst Controller

=head1 DESCRIPTION

Catalyst Controller.

=head1 METHODS

=cut

=head2 index 

=cut

sub index : Private {
    my ( $self, $c ) = @_;

    $c->response->body('Matched TestApp::Controller::Test::View in Test::View.');
}

=head2 sendfile

=cut

sub sendfile: Local {
		my ($self, $c) = @_;

		$c->view('ReproxyFile')->process($c, 'reproxy_file' => $c->path_to('DUMMY'));
}

=head2 proxy_file

=cut

sub proxy_file: Local {
		my ($self, $c) = @_;

		$c->view('ReproxyFile')->process($c, 'reproxy_file' => $c->path_to('DUMMY'));
}

=head2 proxy_url

=cut

sub proxy_url: Local {
		my ($self, $c) = @_;

		$c->view('ReproxyFile')->process($c, 'reproxy_url' => [
				( map { $c->backend_base_url . $_ } qw/DUMMY1 DUMMY2/ )
		]);
}

=head1 AUTHOR

Toru Yamaguchi

=head1 LICENSE

This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut

1;