* luci-0.8: backport new layout for apply messages
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 25 Sep 2008 14:37:51 +0000 (14:37 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 25 Sep 2008 14:37:51 +0000 (14:37 +0000)
libs/cbi/luasrc/view/cbi/map.htm
themes/fledermaus/htdocs/luci-static/fledermaus/cascade.css
themes/openwrt-light/htdocs/luci-static/openwrt-light/cascade.css
themes/openwrt.org/htdocs/luci-static/openwrt.org/cascade.css

index 1238b6a..6378f72 100644 (file)
@@ -16,19 +16,21 @@ $Id$
 <div class="cbi-map" id="cbi-<%=self.config%>">
        <h1><%=self.title%></h1>
        <div class="cbi-map-descr"><%=self.description%></div>
-       <%- if self._apply then -%><code><%:cbi_applying%>:
-       
-<% 
-                       local fp = self._apply()
-                       self._apply = nil
-                       local line = fp:read()
-                       while line do
-                               write(line.."\n")
-                               line = fp:read()
-                       end
-                       fp:close()
-               -%>
-       </code><%- end -%>
+       <%- if self._apply then -%>
+               <fieldset class="cbi-section">
+                       <legend><%:cbi_applying%></legend>
+                       <ul class="cbi-apply"><%-
+                               local fp = self._apply()
+                               self._apply = nil
+                               local line = fp:read()
+                               while line do
+                                       write("<li>" .. luci.util.pcdata(line) .. "</li>\n")
+                                       line = fp:read()
+                               end
+                               fp:close()
+                       -%></ul>
+               </fieldset>
+       <%- end -%>
        <%- self:render_children() %>
        <br />
 </div>
index e443664..70132fd 100644 (file)
@@ -506,6 +506,10 @@ td.cbi-value-error {
        padding: 3px;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 .right {
        text-align: right;
 }
index 6c841b2..ebc1c60 100644 (file)
@@ -491,6 +491,10 @@ td.cbi-value-error {
        padding: 3px;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 .right {
        text-align: right;
 }
index 1e2e7eb..3c52300 100644 (file)
@@ -222,6 +222,10 @@ div#content ul {
        background-color: inherit;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 input[type=submit],
 input[type=reset],
 input[type=image],