summaryrefslogtreecommitdiffstats
path: root/lbu-basicstatus-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lbu-basicstatus-html.lsp')
-rw-r--r--lbu-basicstatus-html.lsp28
1 files changed, 0 insertions, 28 deletions
diff --git a/lbu-basicstatus-html.lsp b/lbu-basicstatus-html.lsp
deleted file mode 100644
index 6b8a77d..0000000
--- a/lbu-basicstatus-html.lsp
+++ /dev/null
@@ -1,28 +0,0 @@
-<? local view, viewlibrary, pageinfo, session = ...
-require("viewfunctions")
-?>
-<?
---[[ DEBUG INFORMATION
-io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
-io.write(html.cfe_unpack(view))
-io.write("</span>")
---]]
-?>
-
-<H1>System Info</H1>
-<DL>
-<?
-if view.value.committed.value then
- view.value.committed.value = "There are no uncommitted files"
-else
- view.value.committed.value = "WARNING!\nUntil you commit, you will lose your changes at next reboot/shutdown!"
-end
-view.value.committed.type = "string"
-displayitem(view.value.committed)
-
-for name,value in pairs(view.value) do
- if name ~= "committed" then
- displayitem(value)
- end
-end ?>
-</DL>