<& header, title=>$title &>
%  $m->call_next;
<& footer &>

<%init>
my $self = $m->request_comp;
my $title = 'Marlboro Bathroom Project->Administration';
if ($self->attr_exists('title')) {
  $title = $title . $self->attr('title')
}
</%init>

<%flags>
inherit=>undef
</%flags>

<%doc>

   File: autohandler
  Usage: called automatically for all .mhtml files specifically in the MBP
         admin directory section
Purpose: Sets page attributes and calls the header and footer files for
         inclusion as wrappers around documents specifically located within the
         admin section of the MBP website.  Special to this autohandler is a
         <%flags> section that prevents further execution of authandler up the
         chain.  This allows me to use a special set of files for the Admin
         directory that are independent of the rest of the system.

Version  Date         Comments
================================================================================
0.01     12/04/2004   initial code base
0.02     12/04/2004   added a <%flags> section with an inherit=>undef

</%doc>
