forked from hummypkg/webif
88ada938d1
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@252 2a923420-c742-0410-a762-8d5b09965624
21 lines
357 B
Plaintext
21 lines
357 B
Plaintext
|
|
if {![exists -proc require]} {
|
|
proc require {args} {{done {}}} {
|
|
foreach file $args {
|
|
if {$file ni $done} {
|
|
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
|
|
}
|
|
}
|
|
|