cvsuser     03/12/03 08:13:36

  Added:       App-Context/cgi-bin app
  Log:
  new
  
  Revision  Changes    Path
  1.1                  p5ee/App-Context/cgi-bin/app
  
  Index: app
  ===================================================================
  #!/usr/local/bin/perl -w
  
  # NOTE: -T option ignores PERL5LIB
  
  #############################################################################
  # $Id: app,v 1.1 2003/12/03 16:13:36 spadkins Exp $
  #############################################################################
  
  BEGIN {
      use App::Options;
      App::Options->init();
  }
  
  #################################################################
  # NOTE: some Context classes (e.g. Context::CGI) also read in
  # the environment and store it in the %App::options.
  #################################################################
  use App;
  my $context = App->context(\%App::options);
  $context->dispatch_events();
  
  
  
  

Reply via email to