summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-compat
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-compat')
-rw-r--r--modules/luci-compat/luasrc/model/network/proto_vpnc.lua1
-rw-r--r--modules/luci-compat/luasrc/tools/webadmin.lua18
-rw-r--r--modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm2
-rw-r--r--modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm2
-rw-r--r--modules/luci-compat/luasrc/view/cbi/nsection.htm4
-rw-r--r--modules/luci-compat/luasrc/view/cbi/nullsection.htm2
-rw-r--r--modules/luci-compat/luasrc/view/cbi/tblsection.htm38
-rw-r--r--modules/luci-compat/luasrc/view/cbi/tsection.htm2
-rw-r--r--modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json4
9 files changed, 36 insertions, 37 deletions
diff --git a/modules/luci-compat/luasrc/model/network/proto_vpnc.lua b/modules/luci-compat/luasrc/model/network/proto_vpnc.lua
index 6c3136e384..899a67ad0a 100644
--- a/modules/luci-compat/luasrc/model/network/proto_vpnc.lua
+++ b/modules/luci-compat/luasrc/model/network/proto_vpnc.lua
@@ -43,4 +43,3 @@ function proto.contains_interface(self, ifc)
end
netmod:register_pattern_virtual("^vpn%-%w")
-
diff --git a/modules/luci-compat/luasrc/tools/webadmin.lua b/modules/luci-compat/luasrc/tools/webadmin.lua
index 106810aa03..350c1fed2b 100644
--- a/modules/luci-compat/luasrc/tools/webadmin.lua
+++ b/modules/luci-compat/luasrc/tools/webadmin.lua
@@ -14,8 +14,8 @@ function byte_format(byte)
if byte > 1024 and i < 5 then
byte = byte / 1024
else
- return string.format("%.2f %s", byte, suff[i])
- end
+ return string.format("%.2f %s", byte, suff[i])
+ end
end
end
@@ -24,23 +24,23 @@ function date_format(secs)
local mins = 0
local hour = 0
local days = 0
-
+
secs = math.floor(secs)
if secs > 60 then
mins = math.floor(secs / 60)
secs = secs % 60
end
-
+
if mins > 60 then
hour = math.floor(mins / 60)
mins = mins % 60
end
-
+
if hour > 24 then
days = math.floor(hour / 24)
hour = hour % 24
end
-
+
if days > 0 then
return string.format("%.0fd %02.0fh %02.0fmin %02.0fs", days, hour, mins, secs)
else
@@ -70,15 +70,15 @@ end
function firewall_find_zone(name)
local find
-
- luci.model.uci.cursor():foreach("firewall", "zone",
+
+ luci.model.uci.cursor():foreach("firewall", "zone",
function (section)
if section.name == name then
find = section[".name"]
end
end
)
-
+
return find
end
diff --git a/modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm b/modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm
index bdd6bc9687..786ee43d10 100644
--- a/modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm
+++ b/modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm
@@ -1,2 +1,2 @@
</div>
-</div>
+</td>
diff --git a/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm b/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm
index db5c66850d..31d1acee48 100644
--- a/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm
+++ b/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm
@@ -3,7 +3,7 @@
local descr = luci.util.trim(striptags(self.description))
local ftype = self.typename or (self.template and self.template:gsub("^.+/", ""))
-%>
-<div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.password then %> nowrap<% end %>"<%=
+<td class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.password then %> nowrap<% end %>"<%=
attr("data-name", self.option) ..
ifattr(ftype and #ftype > 0, "data-widget", ftype) ..
ifattr(title and #title > 0, "data-title", title, true) ..
diff --git a/modules/luci-compat/luasrc/view/cbi/nsection.htm b/modules/luci-compat/luasrc/view/cbi/nsection.htm
index faceffeedf..511a59b6f3 100644
--- a/modules/luci-compat/luasrc/view/cbi/nsection.htm
+++ b/modules/luci-compat/luasrc/view/cbi/nsection.htm
@@ -1,7 +1,7 @@
<% if self:cfgvalue(self.section) then section = self.section %>
<div class="cbi-section">
<% if self.title and #self.title > 0 then -%>
- <legend><%=self.title%></legend>
+ <h3><%=self.title%></h3>
<%- end %>
<% if self.description and #self.description > 0 then -%>
<div class="cbi-section-descr"><%=self.description%></div>
@@ -19,7 +19,7 @@
<% if self.template_addremove then include(self.template_addremove) else -%>
<div class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
<% if self.title and #self.title > 0 then -%>
- <legend><%=self.title%></legend>
+ <h3><%=self.title%></h3>
<%- end %>
<div class="cbi-section-descr"><%=self.description%></div>
<input type="submit" class="btn cbi-button cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:Add%>" />
diff --git a/modules/luci-compat/luasrc/view/cbi/nullsection.htm b/modules/luci-compat/luasrc/view/cbi/nullsection.htm
index 7230719d19..156f29d18c 100644
--- a/modules/luci-compat/luasrc/view/cbi/nullsection.htm
+++ b/modules/luci-compat/luasrc/view/cbi/nullsection.htm
@@ -1,6 +1,6 @@
<div class="cbi-section">
<% if self.title and #self.title > 0 then -%>
- <legend><%=self.title%></legend>
+ <h3><%=self.title%></h3>
<%- end %>
<% if self.description and #self.description > 0 then -%>
<div class="cbi-section-descr"><%=self.description%></div>
diff --git a/modules/luci-compat/luasrc/view/cbi/tblsection.htm b/modules/luci-compat/luasrc/view/cbi/tblsection.htm
index c60915a6a6..048eb22c41 100644
--- a/modules/luci-compat/luasrc/view/cbi/tblsection.htm
+++ b/modules/luci-compat/luasrc/view/cbi/tblsection.htm
@@ -46,12 +46,12 @@ function render_titles()
return
end
- %><div class="tr cbi-section-table-titles <%=anonclass%>"<%=titlename%>><%
+ %><tr class="tr cbi-section-table-titles <%=anonclass%>"<%=titlename%>><%
local i, k
for i, k in ipairs(self.children) do
if not k.optional then
- %><div class="th cbi-section-table-cell"<%=
+ %><th class="th cbi-section-table-cell"<%=
width(k) .. attr('data-widget', k.typename) %>><%
if k.titleref then
@@ -64,15 +64,15 @@ function render_titles()
%></a><%
end
- %></div><%
+ %></th><%
end
end
if self.sortable or self.extedit or self.addremove then
- %><div class="th cbi-section-table-cell cbi-section-actions"></div><%
+ %><th class="th cbi-section-table-cell cbi-section-actions"></th><%
end
- %></div><%
+ %></tr><%
rowcnt = rowcnt + 1
end
@@ -82,25 +82,25 @@ function render_descriptions()
return
end
- %><div class="tr cbi-section-table-descr <%=anonclass%>"><%
+ %><tr class="tr cbi-section-table-descr <%=anonclass%>"><%
local i, k
for i, k in ipairs(self.children) do
if not k.optional then
- %><div class="th cbi-section-table-cell"<%=
+ %><th class="th cbi-section-table-cell"<%=
width(k) .. attr("data-widget", k.typename) %>><%
write(k.description)
- %></div><%
+ %></th><%
end
end
if self.sortable or self.extedit or self.addremove then
- %><div class="th cbi-section-table-cell cbi-section-actions"></div><%
+ %><th class="th cbi-section-table-cell cbi-section-actions"></th><%
end
- %></div><%
+ %></tr><%
rowcnt = rowcnt + 1
end
@@ -116,7 +116,7 @@ end
<input type="hidden" id="cbi.sts.<%=self.config%>.<%=self.sectiontype%>" name="cbi.sts.<%=self.config%>.<%=self.sectiontype%>" value="" />
<%- end -%>
<div class="cbi-section-descr"><%=self.description%></div>
- <div class="table cbi-section-table">
+ <table class="table cbi-section-table">
<%-
render_titles()
render_descriptions()
@@ -134,7 +134,7 @@ end
valuefooter = "cbi/cell_valuefooter"
}
-%>
- <div class="tr cbi-section-table-row<%=colorclass%>" id="cbi-<%=self.config%>-<%=section%>"<%=sectiontitle%>>
+ <tr class="tr cbi-section-table-row<%=colorclass%>" id="cbi-<%=self.config%>-<%=section%>"<%=sectiontitle%>>
<%-
local node
for k, node in ipairs(self.children) do
@@ -145,7 +145,7 @@ end
-%>
<%- if self.sortable or self.extedit or self.addremove then -%>
- <div class="td cbi-section-table-cell nowrap cbi-section-actions">
+ <td class="td cbi-section-table-cell nowrap cbi-section-actions">
<div>
<%- if self.sortable then -%>
<input class="btn cbi-button cbi-button-up" type="button" value="<%:Up%>" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move up%>" />
@@ -162,17 +162,17 @@ end
<input class="btn cbi-button cbi-button-remove" type="submit" value="<%:Delete%>" onclick="this.form.cbi_state='del-section'; return true" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:Delete%>" title="<%:Delete%>" />
<%- end -%>
</div>
- </div>
+ </td>
<%- end -%>
- </div>
+ </tr>
<%- end -%>
<%- if isempty then -%>
- <div class="tr cbi-section-table-row placeholder">
- <div class="td"><em><%:This section contains no values yet%></em></div>
- </div>
+ <tr class="tr cbi-section-table-row placeholder">
+ <td class="td"><em><%:This section contains no values yet%></em></td>
+ </tr>
<%- end -%>
- </div>
+ </table>
<% if self.error then %>
<div class="cbi-section-error">
diff --git a/modules/luci-compat/luasrc/view/cbi/tsection.htm b/modules/luci-compat/luasrc/view/cbi/tsection.htm
index b7718fa0f3..45e51cc69f 100644
--- a/modules/luci-compat/luasrc/view/cbi/tsection.htm
+++ b/modules/luci-compat/luasrc/view/cbi/tsection.htm
@@ -1,6 +1,6 @@
<div class="cbi-section" id="cbi-<%=self.config%>-<%=self.sectiontype%>">
<% if self.title and #self.title > 0 then -%>
- <legend><%=self.title%></legend>
+ <h3><%=self.title%></h3>
<%- end %>
<% if self.error_msg and #self.error_msg > 0 then -%>
<div class="cbi-section-error">
diff --git a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
index ea1a435367..8f07152589 100644
--- a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
+++ b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json
@@ -2,10 +2,10 @@
"allow-full-uci-access": {
"description": "Allow full UCI access for legacy applications",
"read": {
- "uci": [ "'*" ]
+ "uci": [ "*" ]
},
"write": {
- "uci": [ "'*" ]
+ "uci": [ "*" ]
}
}
}