applications/freifunk-widgets: remove order variable, fix html in rss view, fix searc...
authorManuel Munz <freifunk@somakoma.de>
Wed, 19 Sep 2012 06:27:51 +0000 (06:27 +0000)
committerManuel Munz <freifunk@somakoma.de>
Wed, 19 Sep 2012 06:27:51 +0000 (06:27 +0000)
13 files changed:
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/heightwidth.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/html.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/iframe.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/rssfeed.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/search.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/widget.lua
applications/luci-freifunk-widgets/luasrc/model/cbi/freifunk/widgets/widgets_overview.lua
applications/luci-freifunk-widgets/luasrc/view/freifunk/widgets/clear/main.htm
applications/luci-freifunk-widgets/luasrc/view/freifunk/widgets/html/main.htm
applications/luci-freifunk-widgets/luasrc/view/freifunk/widgets/iframe/main.htm
applications/luci-freifunk-widgets/luasrc/view/freifunk/widgets/rssfeed/main.htm
applications/luci-freifunk-widgets/luasrc/view/freifunk/widgets/search/main.htm
applications/luci-freifunk-widgets/root/etc/config/freifunk-widgets

index b584b61ab024c616e92dfc809974cc666b4bd17b..b572187bdd946a97e8644006d56bd3bb4d0c3643 100644 (file)
@@ -1,10 +1,26 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local map, section = ...
 
 local width = wdg:option(Value, "width", translate("Width"))
 width.rmempty = true
 
+--[[
 local height = wdg:option(Value, "height", translate("Height"))
 height.rmempty = true
+height.optional = true
+]]--
 
 local pr = wdg:option(Value, "paddingright", translate("Padding right"))
 pr.rmempty = true
index 0fb464f3e7861672b43afeafd63198428c0cfa25..367e8a269e998e2359c9ed439ab3f3ba36f96008 100644 (file)
@@ -1,3 +1,16 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local map, section = ...
 local utl = require "luci.util"
 local fs = require "nixio.fs"
index 5f1a894719c6991e33b95184f431df66c4b8bd0a..b9cbcaee565cc63aa7002fbb046bf07376897a3e 100644 (file)
@@ -1,3 +1,16 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local map, section = ...
 local utl = require "luci.util"
 
index 778b872bcab104e60bf4a0ed4abd5130e0b3854c..5df5a346fe4bcf6a3783f4f44343984cc41b7132 100644 (file)
@@ -1,3 +1,16 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local map, section = ...
 local utl = require "luci.util"
 
index 4d861c5a091a5bce754df80bb408747ec26a3548..735dc7cdff9e0f053109d70e1e590587c4c39d52 100644 (file)
@@ -1,3 +1,16 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local map, section = ...
 local utl = require "luci.util"
 
index 368e560f49ae5fadbd06e1f03772730be55b160c..5adfc8f850a34452c670269c4d625861f367a433 100644 (file)
@@ -36,12 +36,6 @@ en.rmempty = false
 local title = wdg:option(Value, "title", translate("Title"))
 title.rmempty = true
 
-local order = wdg:option(Value, "order", translate("Order"))
-order.default = "100"
-order.placeholder = "100"
-order.datatype = "integer"
-
-
 local form = loadfile(
        utl.libpath() .. "/model/cbi/freifunk/widgets/%s.lua" % widget
 )
@@ -49,5 +43,6 @@ local form = loadfile(
 if form then
        setfenv(form, getfenv(1))(m, wdg)
 end
+
 return m
 
index e0faef2ff8e688a3006ec020b174b94560a29b35..50771d7e0d8dc0006a78ebef2acada1350ca582b 100644 (file)
@@ -44,25 +44,19 @@ for k, v in ipairs(fs.dir('/usr/lib/lua/luci/view/freifunk/widgets/')) do
 end
 
 local title = wdg:option(Value, "title", translate("Title"))
---title.rmempty = true
-
-
-local order = wdg:option(Value, "order", translate("Order"))
-order.default = "100"
-order.placeholder = "100"
-order.datatype = "integer"
+title.rmempty = true
 
 local width = wdg:option(Value, "width", translate("Width"))
---width.rmempty = true
+width.rmempty = true
 
 local height = wdg:option(Value, "height", translate("Height"))
---height.rmempty = true
+height.rmempty = true
 
 local pr = wdg:option(Value, "paddingright", translate("Padding right"))
 pr.rmempty = true
 
 function m.on_commit(self)
-    -- clean custom text files for elements which may have been deleted
+       -- clean custom text files whose config has been deleted
        local dir = "/usr/share/customtext/"
        local active = {}
        uci:foreach("freifunk-widgets", "widget", function(s)
@@ -79,4 +73,3 @@ function m.on_commit(self)
 end
 
 return m
-
index 7669a58f48e784b7e2eabde157a22d44521e9dc6..df01839f44014d582f4f9845de6a739e279757fb 100644 (file)
@@ -1 +1,15 @@
+<%
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+%>
 <div style="clear:both"></div>
index f59a9302d37f392a5f30eabd0ccd5b6e6d7e8b85..87ad5b6292e5ccb786db1c2fca67f3387ff6f63b 100644 (file)
@@ -1,7 +1,21 @@
 <%
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 --local utl = require "luci.util"
 local fs = require "luci.fs"
 local title = data.title
+local name = data['.name']
 local file = "/usr/share/customtext/" .. name .. ".html"
 local text = fs.readfile(file)
 local width = data.width or "100%"
index 7d8f087e4569dc299aca5e9721253495ab7246f0..f0d89d74256156517bdeaae171064c0611cee30f 100644 (file)
@@ -1,5 +1,19 @@
 <%
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local url = data['url']
+local name = data['.name']
 local title = data['title'] or "No title set"
 local height = data['height'] or "400px"
 if type(height) == "number" then
index ad64da5673b2cd2f18f2fdc950f0913eb3eee5ca..08fc550ecda65b2d33c1cd82467d18ea31f3f879 100644 (file)
@@ -1,4 +1,17 @@
 <%
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
+
 local sys = require "luci.sys"
 local utl = require "luci.util"
 local fs = require "luci.fs"
@@ -13,58 +26,59 @@ local width = data.width or "100%"
 if type(width) == "number" then
        width = width .. "px"
 end
+local name = data['.name']
 local cachetime = tonumber(data.cache) or 3600
 cachefile = "/tmp/" .. name .. ".cache"
 %>
 <div id="<%=name%>" style="width:<%=width%>;float:left">
-<div style="padding-right: <%=pr%>">
-<h2><%=title%></h2>
+       <div style="padding-right: <%=pr%>">
+       <h2><%=title%></h2>
 
-<% if not url then %>
-       <%:No url found in config%>
-<% else
-       local mtime = luci.fs.mtime(cachefile) or 0
-       local now = os.time()
-       expire = mtime + cachetime
+       <% if not url then %>
+               <%:No url found in config%>
+       <% else
+               local mtime = luci.fs.mtime(cachefile) or 0
+               local now = os.time()
+               expire = mtime + cachetime
 
-       if not fs.access(cachefile) or expire < now then
-               rss = sys.httpget(url)
-               if #rss == 0 then
-               %>
-                        <%:Could not get rss data from%> <a href="<%=url%>"><%=url%></a>
-               <%
-               else
-                       local count = 0
-                       for item in string.gmatch(rss, "<item>(.-)</item>") do
-                               if count < max then
-                                       local title = item:match("<title>(.-)</title>")
-                                       local link = item:match("<link>(.-)</link>")
-                                       local desc = item:match("<description>(.-)</description>") or ""
-                                       if title and link then
-                                               table.insert(output, { title = utl.pcdata(title), link = utl.pcdata(link) })
+               if not fs.access(cachefile) or expire < now then
+                       rss = sys.httpget(url)
+                       if #rss == 0 then
+       %>
+                       <%:Could not get rss data from%> <a href="<%=url%>"><%=url%></a>
+       <%
+                       else
+                               local count = 0
+                               for item in string.gmatch(rss, "<item>(.-)</item>") do
+                                       if count < max then
+                                               local title = item:match("<title>(.-)</title>")
+                                               local link = item:match("<link>(.-)</link>")
+                                               local desc = item:match("<description>(.-)</description>") or ""
+                                               if title and link then
+                                                       table.insert(output, { title = utl.pcdata(title), link = utl.pcdata(link) })
+                                               end
+                                               count = count + 1
                                        end
-                                       count = count + 1
+                               end
+                               if count > 0 then
+                                       local file = io.open(cachefile, "w")
+                                       file:write(utl.serialize_data(output))
+                                       file:close()
                                end
                        end
-                       local file = io.open(cachefile, "w")
-                       file:write(utl.serialize_data(output))
-                       file:close()
+               else
+                       local file = assert(io.open(cachefile))
+                       output = utl.restore_data(file:read'*a')
                end
-       else
-               local file = assert(io.open(cachefile))
-               output = utl.restore_data(file:read'*a')
        end
-end
 
-if #output > 0 then
-%>
-<ul>
-<%
-       for k, v in ipairs(output) do
-%>
-               <li><a href="<%=v.link%>"><%=v.title%></a></li>
-<% end %>
-</ul>
-</div>
+       if #output > 0 then
+       %>
+               <ul>
+               <% for k, v in ipairs(output) do %>
+                       <li><a href="<%=v.link%>"><%=v.title%></a></li>
+               <% end %>
+               </ul>
+       <%end%>
+       </div>
 </div>
-<%end%>
index 97215aa3e9d51d0bbf838338a5704c20b39eacf1..e319f15fbc309fde39a9c7f910414ceca85e3bbb 100644 (file)
@@ -1,11 +1,33 @@
 <%
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
+
+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
+
+]]--
 local utl = require "luci.util"
 local title = luci.i18n.translate(data.title or "Search")
+local name = data['.name']
 local width = data.width or "100%"
 
 if type(width) == "number" then
         width = width .. "px"
 end
+
+local engines = {}
+if type(data.engine) == "table" then
+               engines = data.engine
+else
+       for k, v in ipairs(string.split(data.engine, " ")) do
+               table.insert(engines, v)
+       end
+end
 %>
 
 <div id="<%=name%>" style="width:<%=width%>;float:left">
@@ -15,7 +37,7 @@ end
                        <input type="text" name="searchterms" style="margin-bottom:15px; width: 90%"><br />
                        <%
                        local checked = " checked"
-                       for k, v in ipairs(data.engine) do
+                       for k, v in ipairs(engines) do
                                local e = utl.split(v, "|")
                                local name = e[1]
                                local url = e[2]
index 2c4d74386c32c1015c95c3e4dbf0105f7252ad53..e5a20e7e5f0670127484c2a2b62fd4d3b9dc2ce8 100644 (file)
@@ -1,38 +1,33 @@
-config widget 'iframe_freifunk'
+config widget 'example_iframe'
        option template 'iframe'
-       option order '10'
        option url 'http://www.freifunk.net'
        option title 'Freifunk Homepage'
        option height '500px'
        option width '100%'
        option enabled '0'
 
-config widget 'rss_freifunk'
+config widget 'example_rss'
        option template 'rssfeed'
-       option order '20'
        option url 'http://global.freifunk.net/rss/all/rss.xml'
        option max '10'
        option cache '3600'
        option enabled '0'
        option title 'Globaler Freifunk RSS Feed'
 
-config widget 'search'
+config widget 'example_search'
        option template 'search'
        option enabled '0'
-       option order '30'
        option title 'Search'
        list engine 'Google|http://www.google.de/search?q='
        list engine 'Freifunk Wiki|http://wiki.freifunk.net/index.php?search='
        option width '50%'
        option paddingright '8%'
 
-config widget 'customtext'
+config widget 'example_customtext'
        option template 'html'
        option width '50%'
-       option order '40'
        option enabled '0'
 
-config widget 'clear'
+config widget 'example_clear'
        option enabled '0'
        option template 'clear'
-       option order '50'