1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Wapp - A Web-Application Framework for TCL
==========================================
1.0 Introduction
----------------
Wapp is a framework for writing web applications in TCL.
Wapp has the following advantages:
* Simple to use
* A complete application is contained in a single TCL script
* The Wapp framework itself is also just a single TCL script
that is "source"-ed, "package require"-ed,
or even copy/pasted into the application TCL script
* Robust against attack
* Efficient
* 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 need
a simple script to provide a list of files (such as on a download page),
|
>
>
>
>
<
<
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Wapp - A Web-Application Framework for TCL
==========================================
1.0 Introduction
----------------
Wapp is a framework for writing web applications in TCL.
Wapp has the following advantages:
* Simple to use
* Robust against attack
* Efficient
* Trival to enhance and maintain
* Cross-platform - works with any web server, or stand-alone
* A complete application is contained in a single TCL script
* The Wapp framework itself is also just a single TCL script
that is "source"-ed, "package require"-ed,
or even copy/pasted into the application TCL script
2.0 The Problem That Wapp Attempts To Solve
-------------------------------------------
Do you ever need
a simple script to provide a list of files (such as on a download page),
|