diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-06-02 17:49:49 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-06-02 17:49:49 +0000 |
commit | 1ad185d3004918e3fabf86f4c752093ff369ea81 (patch) | |
tree | b556567d0b212ad6e42df6c24f101a56742f685a /template-logfiles-download-html.lsp | |
parent | 3fb4985ae7cd7d5c8fc874ec03c5c0ad7c2d8456 (diff) | |
download | acf-alpine-baselayout-1ad185d3004918e3fabf86f4c752093ff369ea81.tar.bz2 acf-alpine-baselayout-1ad185d3004918e3fabf86f4c752093ff369ea81.tar.xz |
Removing obsolete files
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1193 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'template-logfiles-download-html.lsp')
-rw-r--r-- | template-logfiles-download-html.lsp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/template-logfiles-download-html.lsp b/template-logfiles-download-html.lsp deleted file mode 100644 index f73af33..0000000 --- a/template-logfiles-download-html.lsp +++ /dev/null @@ -1,19 +0,0 @@ -<? local viewtable, viewlibrary, pageinfo, session = ... - html=require("html") ?> -Status: 200 OK -Content-Type: application/octet-stream -Content-Disposition: attachment; filename="<?= viewtable.logfile.name ?>" -<? if (session.id) then - io.write( html.cookie.set("sessionid", session.id) ) - else - io.write (html.cookie.unset("sessionid")) - end - - - -- headers separated by a blank line - io.write ("\n") - - local func = haserl.loadfile(viewtable.logfile.value) - func (viewtable) - - ?> |