summaryrefslogtreecommitdiffstats
path: root/logfiles-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-03-04 02:41:32 +0000
committerTed Trask <ttrask01@yahoo.com>2014-03-04 02:41:32 +0000
commitf9780f645bc94f2f79fc4e266e671d15232d4b9d (patch)
treeba25e6d23f9a89891d4a01c5d1ffe4c59718c914 /logfiles-model.lua
parentb0f4fadb7b62297b6dbd574b2a7d8eee0f990eb4 (diff)
downloadacf-alpine-baselayout-f9780f645bc94f2f79fc4e266e671d15232d4b9d.tar.bz2
acf-alpine-baselayout-f9780f645bc94f2f79fc4e266e671d15232d4b9d.tar.xz
Change HTML views to use htmlviewfunctions.displayheader
Modified some models to change labels
Diffstat (limited to 'logfiles-model.lua')
-rw-r--r--logfiles-model.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/logfiles-model.lua b/logfiles-model.lua
index 95bcb19..590b3ae 100644
--- a/logfiles-model.lua
+++ b/logfiles-model.lua
@@ -65,7 +65,7 @@ local function list_files ( ... )
inuse=inuse, label="File details"} }) )
end
table.sort(listed_files, function (a,b) return (a.value.filename.value < b.value.filename.value) end )
- return cfe({ type="list", value=listed_files, label="Log files" })
+ return cfe({ type="list", value=listed_files, label="Log Files" })
end
local do_grep = function(filecontent, grep)
@@ -138,7 +138,7 @@ mymodule.tail = function(path, offset, grep)
end
end
- return cfe({ type="group", value={filename=filename, filecontent=filecontent, filesize=filesize, fileoffset=fileoffset, grep=filegrep}, label="Tail Config file details" })
+ return cfe({ type="group", value={filename=filename, filecontent=filecontent, filesize=filesize, fileoffset=fileoffset, grep=filegrep}, label="Tail File" })
end
mymodule.get = function ()