summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--interfaces-config-html.lsp2
-rw-r--r--interfaces-read-html.lsp4
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 74fbeea..55c6646 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=alpine-baselayout
PACKAGE=acf-$(APP_NAME)
-VERSION=0.3.3
+VERSION=0.3.4
APP_DIST=\
alpine-baselayout.roles \
diff --git a/interfaces-config-html.lsp b/interfaces-config-html.lsp
index 8800577..8f61b4b 100644
--- a/interfaces-config-html.lsp
+++ b/interfaces-config-html.lsp
@@ -17,7 +17,7 @@ local myform = form.iface
for k,v in pairs(myform) do
local myform=v
if (myform.name.value ~= "") then
- io.write("<DT><IMG SRC='/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</DT><DD>")
+ io.write("<DT><IMG SRC='/skins/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</DT><DD>")
io.write("<TABLE STYLE='margin-bottom:10px'>")
local tags = { "edit", "method", "address", "netmask", "gateway", "provider", "hostname", "pre-up", "up", "down", "post-down", "comment", }
for k1,v1 in pairs(tags) do
diff --git a/interfaces-read-html.lsp b/interfaces-read-html.lsp
index b2b0485..505cbf6 100644
--- a/interfaces-read-html.lsp
+++ b/interfaces-read-html.lsp
@@ -25,9 +25,9 @@ local myform = form.iface
for k,v in pairs(myform) do
local myform=v
if (myform.name.value ~= "") then
- io.write("<DT><IMG SRC='/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</DT><DD>")
+ io.write("<DT><IMG SRC='/skins/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</DT><DD>")
io.write("<TABLE STYLE='margin-bottom:10px'>")
--- io.write("<TR><TD COLSPAN=2 STYLE='font-weight:bold;border:none;'><IMG SRC='/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</TD></TR>")
+-- io.write("<TR><TD COLSPAN=2 STYLE='font-weight:bold;border:none;'><IMG SRC='/skins/static/tango/16x16/devices/network-wired.png' width='16' height='16'> " .. (myform.name.value or '') .. "</TD></TR>")
local tags = {"method", "address", "netmask", "gateway", "provider", "hostname", "pre-up", "up", "down", "post-down", "comment", }
for k1,v1 in pairs(tags) do