From 61caacda2b2ca58474d32e0e187f2e9d61aa47e9 Mon Sep 17 00:00:00 2001 From: "martin.holst@gmail.com" Date: Thu, 3 Oct 2013 12:34:28 +0000 Subject: [PATCH] Added a utility which takes a mifare-dumpfile and creates a html-report visualising the data. The html-dump is self-sufficient and standalone .. part 2 --- client/lualibs/htmlskel.lua | 155 ++++++++++++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 client/lualibs/htmlskel.lua diff --git a/client/lualibs/htmlskel.lua b/client/lualibs/htmlskel.lua new file mode 100644 index 00000000..377e62d9 --- /dev/null +++ b/client/lualibs/htmlskel.lua @@ -0,0 +1,155 @@ +local skel_1 = [[ + + + + + + + + + + +]] +local function getHTML(data) + return skel_1 .. data .. skel_2 +end + +return {getHTML = getHTML} -- 2.39.2