<% $c->display_name() || " " %>
|
Description:
|
<% $c->description() || " " %>
|
Path:
|
<% $c->path() %>
|
Doc base:
|
<% $c->doc_base() || " " %>
|
Full doc base:
|
<% $c->absolute_path() || " " %>
|
Session timeout:
|
<% $c->session_timeout() || " " %>
|
Auth method:
|
<% $c->auth_method() || " " %>
|
% if ($c->auth_method() eq 'BASIC') {
Realm name:
|
<% $c->realm_name() || " " %>
|
% }
% if ($c->auth_method() eq 'FORM') {
Form login page:
|
<% $c->form_login_page() || " " %>
|
Form error page:
|
<% $c->form_error_page() || " "%>
|
% }
Servlets:
|
% for my $s ($c->servlets) {
<% $s->name() %>
% $srv_id++;
% }
|