2008-07-07 22:00:56 +00:00
|
|
|
<%#
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
-%>
|
2008-07-15 17:27:58 +00:00
|
|
|
|
|
|
|
<% if #self.description > 0 then -%>
|
2008-08-20 16:11:27 +00:00
|
|
|
<% if not luci.util.instanceof( self, luci.cbi.Flag ) then -%>
|
|
|
|
<br />
|
|
|
|
<%- end %>
|
|
|
|
<div class="cbi-value-description">
|
|
|
|
<span class="cbi-value-helpicon"><img src="<%=resource%>/cbi/help.gif" alt="<%:help%>" /></span>
|
|
|
|
<%=self.description%>
|
|
|
|
</div>
|
2008-07-15 17:27:58 +00:00
|
|
|
<%- end %>
|
2008-08-14 16:11:49 +00:00
|
|
|
<%- if self.title and #self.title > 0 then -%>
|
2008-07-15 17:27:58 +00:00
|
|
|
</div>
|
2008-08-14 16:11:49 +00:00
|
|
|
<%- end -%>
|
2008-07-15 17:27:58 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if #self.deps > 0 then -%>
|
|
|
|
<script type="text/javascript">
|
|
|
|
<% for j, d in ipairs(self.deps) do -%>
|
2008-08-17 18:32:53 +00:00
|
|
|
cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option..d.add%>", {
|
|
|
|
<%-
|
|
|
|
for k,v in pairs(d.deps) do
|
|
|
|
-%>
|
|
|
|
<%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%>,
|
|
|
|
<%-
|
|
|
|
end
|
|
|
|
-%>
|
|
|
|
});
|
2008-07-15 17:27:58 +00:00
|
|
|
<%- end %>
|
|
|
|
</script>
|
|
|
|
<%- end %>
|