From 2beb00dd81c1f2dceeef0e62cf89d2d1b1109b6a Mon Sep 17 00:00:00 2001 From: Mika Havela Date: Fri, 30 Nov 2007 16:41:55 +0000 Subject: Check and restart is now working! git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@396 ab2d0c66-481e-0410-8bed-d214d4d58bed --- shorewall-edit-html.lsp | 42 ++++++++++++++++++++++++++++++++---------- 1 file changed, 32 insertions(+), 10 deletions(-) (limited to 'shorewall-edit-html.lsp') diff --git a/shorewall-edit-html.lsp b/shorewall-edit-html.lsp index 98c4abe..86d5507 100644 --- a/shorewall-edit-html.lsp +++ b/shorewall-edit-html.lsp @@ -2,8 +2,40 @@ +

Edit configuration

+ +------------ START DEBUG INFORMATION ------------ +

THIS VIEW CONTAINS THE FOLLOWING VARIABLES/TABLES

+") +for a,b in pairs(view) do + if not (type(b) == "table") then + print ("" .. a .. ": >" .. b .. "<
") + else + print ("" .. a .. ":...
") + for c,d in pairs(view[a]) do + if not (type(d) == "table") then + print (" { " .. c .. ": >" .. d .. "< }
") + else + print (" { " .. c .. ":...
") + for e,f in pairs(view[a][c]) do + if not (type(f) == "table") then + print (" { { " .. e .. ": >" .. f .. "< } }
") + else + print (" { { " .. e .. ":... (table is not visible at the moment)
") + end + end + end + end + end +a,b,c,d,e,f,g,h,i,j = nil,nil,nil,nil,nil,nil,nil,nil,nil,nil +end +print ("------------ END DEBUG INFORMATION ------------
") +?> + +

Details

File name
@@ -23,16 +55,6 @@

- -

DEUB INFO

-") -end -?> - - - -- cgit v1.2.3