forked from hummypkg/webif
5523ec6a43
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@235 2a923420-c742-0410-a762-8d5b09965624
21 lines
377 B
Plaintext
21 lines
377 B
Plaintext
|
|
if {![exists -proc require]} {
|
|
proc require {args} {{done {}}} {
|
|
foreach file $args {
|
|
if {[lsearch -exact $done $file] == -1} {
|
|
uplevel source "/mod/var/mongoose/lib/$file"
|
|
lappend $done $file
|
|
}
|
|
}
|
|
}
|
|
|
|
proc header {} {
|
|
uplevel source /mod/var/mongoose/html/lib/header.jim
|
|
}
|
|
|
|
proc footer {} {
|
|
uplevel source /mod/var/mongoose/html/lib/footer.jim
|
|
}
|
|
}
|
|
|