in reply to Re: WebGUI::Easy - a quick way to give your perl program a web-based user interface
in thread CGI::AppEasy - a quick way to give your perl program a web-based user interface

I checked CPAN; no one has staked any claims in the WebGUI namespace. Apparently I'm going to have to rename anyway, though, because Plain Black have trademarked "WebGUI". Thanks for the tip. Any suggestions?

  • Comment on Re^2: WebGUI::Easy - a quick way to give your perl program a web-based user interface

Replies are listed 'Best First'.
Re^3: WebGUI::Easy - a quick way to give your perl program a web-based user interface
by metaperl (Curate) on Apr 15, 2010 at 14:11 UTC

      Thanks very much! Squatting is indeed interesting, but attempts to address more than this does. I.e. is "thicker".

      I'm leaning toward "CGI::AppEasy"...

        Check out Continuity!
        print "What is your name? "; my $name = <>; chomp $name; print "What is your quest? "; my $quest = <>; chomp $quest; print "Good luck, $name! May you $quest\n";
        can be translated to:
        use Continuity; Continuity->new->loop; sub main { my $r = shift; $r->print("What is your name? <form><input name=name>"); $r->next; my $name = $r->param('name'); $r->print("What is your quest? <form><input name=quest>"); $r->next; my $quest = $r->param('quest'); $r->print("Good luck, $name! May you $quest<br>"); }
        Plus... it can be used by multiple users at once! It does sessions via cookies by default.

        --Brock (awwaiid)