Tweak deskutils/just version 1.5.0
[dports.git] / www / p5-CGI-Prototype / pkg-descr
1 The core of every CGI application seems to be roughly the same:
2 - analyze the incoming parameters, cookies, and URLs to determine the
3   state of the application (let's call this "dispatch").
4 - based on the current state, analyze the incoming parameters to respond
5   to any form submitted ("respond").
6 - from there, decide what response page should be generated, and produce
7   it ("render").
8
9 CGI::Prototype creates a Class::Prototyped engine for doing all this,
10 with the right amount of callback hooks to customize the process.