14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
* Trival to enhance and maintain
* Cross-platform - works with any web server, or stand-alone
2.0 The Problem That Wapp Attempts To Solve
-------------------------------------------
On your larger website, do you ever have a situation where you need
a simple script to provide a list of files (such as on a download page),
or small app to manage conference room scheduling for the office, or
a few simple pages to monitor or manage the status of a server?
These sorts of problems are traditionally handled using ad-hoc
CGI scripts implemented using libraries that provide utilities
for decoding the HTTP request and safely encoding the reply. This
presents a number of problems:
* A single application typically involves multiple files. There
will be CSS and javascript files and other resources, plus at
least one file for each distinct URI serviced by the application.
|
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
* Trival to enhance and maintain
* Cross-platform - works with any web server, or stand-alone
2.0 The Problem That Wapp Attempts To Solve
-------------------------------------------
Do you ever have a situation where you need
a simple script to provide a list of files (such as on a download page),
or small app to manage conference room scheduling for the office, or
a few simple pages to monitor or manage the status of a server?
These sorts of problems are traditionally handled with ad-hoc
CGI scripts implemented using libraries that provide utilities
for decoding the HTTP request and safely encoding the reply. This
presents a number of problems:
* A single application typically involves multiple files. There
will be CSS and javascript files and other resources, plus at
least one file for each distinct URI serviced by the application.
|