diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2024-06-28 17:31:54 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2024-06-28 17:31:54 +1000 |
commit | 7635f08fdeacdc3758ab410ae39c51529c614453 (patch) | |
tree | c2b22f13b30c2aeb4cf00e0efd683ccf5d55b332 /configure.tcl |
Initial; already done much
Diffstat (limited to 'configure.tcl')
-rwxr-xr-x | configure.tcl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.tcl b/configure.tcl new file mode 100755 index 0000000..717a59d --- /dev/null +++ b/configure.tcl @@ -0,0 +1,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 |