From 878989065d9e92ab74ad310eca886323178d44f0 Mon Sep 17 00:00:00 2001 From: Mika Havela Date: Wed, 7 Oct 2009 16:42:53 +0200 Subject: Graphical fix. Modifying
to fix skin issues.\n Removing hardcoded backgroundcolor from table and using class=header instead to have the skins do the choosing of colors. --- weblog-adhocquery-html.lsp | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'weblog-adhocquery-html.lsp') diff --git a/weblog-adhocquery-html.lsp b/weblog-adhocquery-html.lsp index b55fc4d..e1c79f2 100644 --- a/weblog-adhocquery-html.lsp +++ b/weblog-adhocquery-html.lsp @@ -4,30 +4,29 @@ require("viewfunctions") <% if form.value.result then %>

<%= html.html_escape(form.value.result.label) %>

+
<% require("html") %> <%= html.cfe_unpack(form.value.result.value) %>
-
Download query result
-
+
<% end %>

<%= html.html_escape(form.label) %>

<% displayformstart(form, page_info) %> -
<% displayformitem(form.value.query, "query") %> -
-<% displayformend(form) %> - This form accepts a Postgresql SELECT statement and displays the results. Examples: The available database tables and descriptions are as follows:
+<% displayformend(form) %> +

PubWeblog and PubBlocklog

+
These tables contain the combined squid access log and dansguardian log for every access and blocked access respectively. The definition of the table is as follows:
 (
@@ -41,16 +40,19 @@ These tables contain the combined squid access log and dansguardian log for ever
     score integer,
     shortreason text
 )
-
+

dbHistLog

+
This table contains the database history, including such information as which log files were loaded and how many entries they contained. The definition of the table is as follows:
 (
     logdatetime timestamp(3) without time zone NOT NULL,
     msgtext text
 )
-
+
+

Source

+
This table contains the list of log file sources. The definition of the table is as follows:
 (
@@ -62,8 +64,9 @@ This table contains the list of log file sources. The definition of the table is
     tzislocal boolean,
     enabled boolean
 )
-
+

Usagestat

+
This table contains a historical record of pages requested and blocked by hour. The definition of the table is as follows:
 (
@@ -72,12 +75,13 @@ This table contains a historical record of pages requested and blocked by hour.
     numrequest integer,
     numblock integer
 )
-
+

Watchlist

+
This table contains the user watch list. The definition of the table is as follows:
 (
     clientuserid character varying(64) NOT NULL,
     expiredatetime timestamp(0) without time zone NOT NULL
 )
-
+
-- cgit v1.2.3