blob: 717a59de9bc89a2b31d7472404beaa41b3697c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## Set your variables here.
namespace eval http {
# The directory which files are searched for.
variable root {/home/aleksei/www/files/}
# hook_namespace refers to a user-created namespace.
# It must have some things such as
# A proc 'main' which is what the server will execute to get information.
# A list $targets which have all the valid targets.
variable hook_namespace {}
}
## Import HTML Generating Modules
## Validate configuration variables.
## Especially file exists content
## Especially validate the existence of necessary components in $content
|