summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index 2d00ef9..d29c096 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -436,10 +436,10 @@ local listlogentries = function(logname, clientuserid, starttime, endtime, clien
row = cur:fetch ({}, "a")
while row do
local uridescr = row.uri
- if (config.shorturls == "true") then
- uridescr=string.gsub(row.uri, "[;?].*", "...")
+ if config.shorturi == "true" then
+ shorturi=string.gsub(row.uri, "[;?].*", "...")
end
- entries[#entries+1] = {sourcename=row.sourcename, clientip=row.clientip, clientuserid=row.clientuserid, logdatetime=row.logdatetime, uri=row.uri, uridescr=uridescr, bytes=row.bytes, reason=row.reason, score=row.score, shortreason=row.shortreason,debug=config.shorturls}
+ entries[#entries+1] = {sourcename=row.sourcename, clientip=row.clientip, clientuserid=row.clientuserid, logdatetime=row.logdatetime, uri=row.uri, shorturi=shorturi, bytes=row.bytes, reason=row.reason, score=row.score, shortreason=row.shortreason}
row = cur:fetch (row, "a")
end
-- close everything
@@ -1174,7 +1174,8 @@ function getconfig()
result.purgedays = cfe({ value=config.purgedays or "30", label="Days before Purge", descr="Days to keep history, regardless of audit" })
result.historydays = cfe({ value=config.historydays or "14", label="Days to keep History", descr="Days beyond Audit Start Time to keep complete log history" })
result.groupby = cfe({ type="select", value=config.groupby or "clientuserid", label="Group results by", option={"clientuserid", "clientip"} })
- result.shorturls = cfe({ type="select", value=config.shorturls or "false", label="Truncate URL's in audit log", option={"true","false"}, descr="You can limit the lenght of urls in your audit log by selecting 'true'"})
+ result.shorturi = cfe({ type="boolean", value=false, label="Truncate URLs", descr="You can limit the length of displayed URLs by enabling this option"})
+ if config.shorturi == "true" then result.shorturi.value = true end
return cfe({ type="group", value=result, label="Weblog Config" })
end
@@ -1230,7 +1231,7 @@ function updateconfig(newconfig)
configcontent = format.update_ini_file(configcontent, "", "purgedays", newconfig.value.purgedays.value)
configcontent = format.update_ini_file(configcontent, "", "historydays", newconfig.value.historydays.value)
configcontent = format.update_ini_file(configcontent, "", "groupby", newconfig.value.groupby.value)
- configcontent = format.update_ini_file(configcontent, "", "shorturls", newconfig.value.shorturls.value)
+ configcontent = format.update_ini_file(configcontent, "", "shorturi", tostring(newconfig.value.shorturi.value))
fs.write_file(configfile, configcontent)
config = format.parse_ini_file(configcontent, "") or {}