themes: require luci.version directly
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Jan 2015 20:33:34 +0000 (21:33 +0100)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Jan 2015 20:40:49 +0000 (21:40 +0100)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/footer.htm
themes/luci-theme-freifunk-bno/luasrc/view/themes/freifunk-bno/footer.htm
themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/footer.htm
themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/footer.htm

index 09b497a..6b028d7 100644 (file)
@@ -12,20 +12,15 @@ You may obtain a copy of the License at
 
 -%>
 <%
+       local ver = require "luci.version"
        local disp = require "luci.dispatcher"
-
        local request  = disp.context.path
-
        local category = request[1]
-
        local tree = disp.node()
-
        local categories = disp.node_childs(tree)
 %>
-   <footer><a href="http://luci.subsignal.org/">Powered by <%= luci.__appname__ .. " (" .. luci.__version__ .. ")" %></a>
-
-    <%=luci.version.distversion%>
-
+   <footer>
+    <a href="http://luci.subsignal.org/">Powered by <%= ver.luciname %> (<%= ver.luciversion %>)</a> / <%= ver.distversion %>
     <% if #categories > 1 then %>
      <ul class="breadcrumb pull-right" id="modemenu">
            <% for i, r in ipairs(categories) do %>
index 21d1ca6..bc07d8d 100644 (file)
@@ -17,7 +17,10 @@ $Id$
 </div></div>
 </div>
 
-<div class="luci separator black whitetext bold"><a href="<%=controller%>/about">Powered by <%= luci.__appname__ .. " (" .. luci.__version__ .. ")" %></a></div>
+<div class="luci separator black whitetext bold">
+       <% local ver = require "luci.version" -%>
+       <a href="<%=controller%>/about">Powered by <%= ver.luciname %> (<%= ver.luciversion %>)</a>
+</div>
 </div><!-- end main --><div align="center" style="padding-top:5px "></div>
 <br>
 </div><!-- end wrapper -->
index e9df8cd..9f6a19c 100644 (file)
@@ -9,10 +9,14 @@ You may obtain a copy of the License at
 
        http://www.apache.org/licenses/LICENSE-2.0
 -%>
-<% local xtime
-if exectime then
-       xtime = (string.format("%.2fs", os.clock() - exectime)) 
-end %>
+<%
+       local ver = require "luci.version"
+
+       local xtime
+       if exectime then
+               xtime = (string.format("%.2fs", os.clock() - exectime))
+       end
+%>
 
 </div>
 <div class="clear"></div>
@@ -20,7 +24,7 @@ end %>
 </div>
 
 <div class="footer">
-<p class="luci"><a href="http://luci.subsignal.org">Powered by <%= luci.__appname__ .. " (" .. luci.__version__ .. ")" %></a></p>
+<p class="luci"><a href="http://luci.subsignal.org">Powered by <%= ver.luciname %> (<%= ver.luciversion %>)</a></p>
 <% if xtime then %>
 <p class="exectime">Script execution time: <%=xtime%></p>
 <% end %>
index 5830cb9..607885f 100644 (file)
@@ -16,6 +16,9 @@ $Id$
 </div>
 </div>
 
-<p class="luci">Powered by <%= luci.__appname__ .. " (" .. luci.__version__ .. ")" %></p>
+<p class="luci">
+       <% local ver = require "luci.version" -%>
+       Powered by <%= ver.luciname %> (<%= ver.luciversion %>)
+</p>
 </body>
 </html>