aboutsummaryrefslogtreecommitdiff
path: root/mdir.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-03-14 01:55:33 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-03-14 01:55:33 +0100
commit237470c8f45190b213e3a173ce6ae1a74b3e11fe (patch)
tree7f53c8144761947d4bde20715bcad34f4be0d6c0 /mdir.lua
parent9a82d4113a8271b7dfc7506f2b07379e3ede89a8 (diff)
downloadvicious-legacy-237470c8f45190b213e3a173ce6ae1a74b3e11fe.tar.xz
API: transform widgets namespace table to a directory
Diffstat (limited to 'mdir.lua')
-rw-r--r--mdir.lua38
1 files changed, 0 insertions, 38 deletions
diff --git a/mdir.lua b/mdir.lua
deleted file mode 100644
index 0e0b27b..0000000
--- a/mdir.lua
+++ /dev/null
@@ -1,38 +0,0 @@
----------------------------------------------------
--- Licensed under the GNU General Public License v2
--- * (c) 2010, Adrian C. <anrxc@sysphere.org>
--- * (c) Maildir Biff Widget, Fredrik Ax
----------------------------------------------------
-
--- {{{ Grab environment
-local io = { popen = io.popen }
-local setmetatable = setmetatable
--- }}}
-
-
--- Mdir: provides the number of new and unread messages in Maildir structures/dirs
-module("vicious.mdir")
-
-
--- {{{ Maildir widget type
-local function worker(format, warg)
- -- Initialise counters
- local count = { new = 0, cur = 0 }
-
- for i=1, #warg do
- -- Recursively find new messages
- local f = io.popen("find "..warg[i].." -type f -wholename '*/new/*'")
- for line in f:lines() do count.new = count.new + 1 end
- f:close()
-
- -- Recursively find "old" messages lacking the Seen flag
- local f = io.popen("find "..warg[i].." -type f -regex '.*/cur/.*2,[^S]*$'")
- for line in f:lines() do count.cur = count.cur + 1 end
- f:close()
- end
-
- return {count.new, count.cur}
-end
--- }}}
-
-setmetatable(_M, { __call = function(_, ...) return worker(...) end })