CGI::Portable::AppMultiScreen

CGI::Portable::AppMultiScreen is a Perl module that offers delegate construction, navigation of hierarchical screens.
Download

CGI::Portable::AppMultiScreen Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Darren R. Duncan
  • Publisher web site:
  • http://search.cpan.org/~duncand/CGI-Portable-0.51/lib/CGI/Portable/AppMultiScreen.pm

CGI::Portable::AppMultiScreen Tags


CGI::Portable::AppMultiScreen Description

CGI::Portable::AppMultiScreen is a Perl module that offers delegate construction, navigation of hierarchical screens. CGI::Portable::AppMultiScreen is a Perl module that offers delegate construction, navigation of hierarchical screens.SYNOPSISSimple program with multiple screens from different modules: #!/usr/bin/perl use strict; use warnings; require CGI::Portable; my $globals = CGI::Portable->new(); use Cwd; $globals->file_path_root( cwd() ); # let us default to current working dir $globals->file_path_delimiter( $^O=~/Mac/i ? ":" : $^O=~/Win/i ? "\" : "/" ); require CGI::Portable::AdapterCGI; my $io = CGI::Portable::AdapterCGI->new(); $io->fetch_user_input( $globals ); $globals->default_application_title( 'Demo Application' ); $globals->default_maintainer_name( 'Tony Simons' ); $globals->default_maintainer_email_address( 'tony@aardvark.net' ); $globals->current_user_path_level( 1 ); $globals->set_prefs( 'myconfig.pl' ); $globals->call_component( 'CGI::Portable::AppMultiScreen' ); $io->send_user_output( $globals ); 1; Requirements: · Perl


CGI::Portable::AppMultiScreen Related Software