Commit graph

1172 commits

Author SHA1 Message Date
Anton Shestakov
1e78e0f236 util.ip: rename variable (i is already defined) [luacheck] 2016-07-09 17:33:38 +08:00
Anton Shestakov
f710b07b55 util.openssl: remove unused one-letter loop variable [luacheck] 2016-07-09 13:52:04 +08:00
Anton Shestakov
416f381c39 util.ip: remove unused one-letter loop variables [luacheck] 2016-07-09 10:27:57 +08:00
Matthew Wild
6fc4ad3aef util.time: New tiny library to abstract LuaSocket's gettime() function, so we can use other sources in the future 2016-06-28 14:49:44 +01:00
Kim Alvefur
621ba250ff util.openssl: Handle return value from os.execute being true in Lua 5.2 2016-06-23 21:08:51 +02:00
Kim Alvefur
f7c083c86a util.prosodyctl: Handle os.execute in Lua 5.2 returning true when command terminates successfully 2016-06-23 21:07:48 +02:00
Kim Alvefur
6b2c577b20 util.dataforms: Fix including default value for list-single when given as field.value[].default 2016-05-29 15:57:03 +02:00
Kim Alvefur
99a7a645f1 util.dataforms: Allow separation of options from values in list fields 2016-05-27 15:44:41 +02:00
Matthew Wild
59957bc13c util.cache: Add support for creating a proxy table to a cache, that looks and acts (mostly) like a normal table. No tests yet. 2016-05-22 18:18:23 +01:00
Kim Alvefur
baba98852d util.datamanager: Import tostring and type (fix global access) 2016-05-22 14:38:07 +02:00
Kim Alvefur
8d720b7bfb util.sql: Import type too (fix global access) 2016-05-22 14:37:52 +02:00
Matthew Wild
8a32b7f2c3 util.sql: Import pcall (fixes #677) 2016-05-22 02:16:11 +01:00
Matthew Wild
c3d3e85ce8 util.events: Fix comparison of event_name with nil instead of false (fixes #554) 2016-05-12 18:45:30 +01:00
Kim Alvefur
3f87977ddb util.iterators: Add iterator wrapper that works like select(n, ...) applied to original iterator 2016-04-15 13:20:31 +02:00
Kim Alvefur
8fb50705d1 util.cache: Add method for iterating over values 2016-04-15 13:19:20 +02:00
Kim Alvefur
4bacbb7d71 util.iterators: Normalize indentation 2016-04-13 20:00:41 +02:00
Kim Alvefur
07b2ab8478 util.jid: Import select() into local (fixes traceback, tests on Lua 5.2) 2016-03-28 13:27:42 +02:00
Kim Alvefur
c24be27b2f util.sql: Log errors in transaction to error level with traceback but return only error message (fixes #464) 2016-03-25 16:09:34 +01:00
Matthew Wild
c50a32df40 util.sql: Charset should be innocent until proven guilty (initialize charset_ok to true), fixes bug introduced in 187ba2e9c012 2016-03-23 12:17:28 +00:00
Matthew Wild
6873a62f1e util.iterators: Fix use of incorrect variable accidentally introduced in a9ef93bc81d9 2016-03-21 21:04:14 +00:00
Kim Alvefur
c00adb21f4 util.sql: Catch errors from LuaDBI connect (Fixes #568) 2016-03-21 09:50:52 +01:00
Matthew Wild
1c3c5302ba util.jid+tests: Add simple helpers... node(), host() and resource() for extracting specific parts of a JID 2016-03-17 23:15:08 +00:00
Matthew Wild
6b4c1ca955 util.cache: Change behaviour of on_evict (and tests). Now accepts false instead of a function (never evict), or on_evict can return false to prevent eviction. 2016-03-17 19:08:42 +00:00
Matthew Wild
5f86077aa2 util.cache: Add head() and tail() methods (and tests) 2016-03-17 19:07:40 +00:00
Kim Alvefur
fd7f0f2193 util.async: Remove to prevent blocking a stable release 2016-03-17 18:00:35 +01:00
Kim Alvefur
ab4f0cf7c4 mod_presence: Move function for selecting "top resources" into a new util.presence 2016-03-14 17:26:27 +01:00
Kim Alvefur
f46a677512 util.sql: Remove unused arguments [luacheck] 2016-03-13 18:35:00 +01:00
Kim Alvefur
2b1ff306c3 util.sql: Don't break out of result retreival loops 2016-03-13 18:31:53 +01:00
Kim Alvefur
b65ec4aebe util.sql: Move per-driver (currenly only PostgreSQL) query transform into its own method 2016-03-13 17:38:49 +01:00
Thijs Alkemade
bc0ce12e97 util.dependencies: Show the full error when a symbol is not found (i.e., when running Prosody with the wrong version of Lua). 2016-03-10 10:13:57 +01:00
Matthew Wild
0d16907ff3 util.prosodyctl: Remove unused variable [luacheck] 2016-03-10 17:53:36 +00:00
Matthew Wild
bd3767353f util.json: Variable renaming to avoid shadowing [luacheck] 2016-03-10 17:53:17 +00:00
Matthew Wild
cae49b6891 util.iterators: Variable renaming to avoid shadowing [luacheck] 2016-03-10 17:52:57 +00:00
Matthew Wild
8967760df5 net.websocket.frames, util.datetime, util.json, util.prosodyctl, util.rfc6724: Remove unused variables [luacheck] 2016-03-10 17:52:03 +00:00
Matthew Wild
e2f3356e24 util.iterators: Return initial var from upstream iterator [luacheck] 2016-03-10 17:49:46 +00:00
Matthew Wild
e5d07c158f util.iterators: Don't replace var, as we should preserve var from the original iterator [luacheck] 2016-03-10 17:48:53 +00:00
Matthew Wild
62716e66c8 util.stanza: Some code cleanup [luacheck] 2016-03-09 12:37:56 +00:00
Matthew Wild
df618247d3 util.json: Fix encoding of json.null (bug introduced in bf1f09a5bcf7) 2016-03-04 22:27:04 +00:00
Kim Alvefur
47450a0eff util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt) 2016-02-28 20:01:13 +01:00
Kim Alvefur
e5cf84bdcd util.sasl.scram: Remove unused initial value [luacheck] 2016-02-28 19:26:45 +01:00
Kim Alvefur
cedba44c5a util.sasl.scram: Rename variable to avoid name clash [luacheck] 2016-02-28 19:26:14 +01:00
Kim Alvefur
9b27d49521 util.sasl.anonymous: Remove unused locals [luacheck] 2016-02-28 19:25:39 +01:00
Kim Alvefur
29cb6ece54 util.termcolours: Rename loop variable [luacheck] 2016-02-28 15:03:16 +01:00
Kim Alvefur
341876f588 util.termcolours: Validate color codes, fixes traceback 2016-02-28 15:03:01 +01:00
Kim Alvefur
71d4a72361 util.termcolours: Add some CSS color names 2016-02-27 16:56:34 +01:00
Kim Alvefur
10f02dfe5e util.termcolours: Add 256 color support 2016-02-27 16:47:12 +01:00
Kim Alvefur
afe389d870 util.datamanager: Explicit handling of each error condition (see #632) 2016-02-27 15:29:56 +01:00
Kim Alvefur
d17785e91f Merge 0.9->0.10 2016-02-25 22:37:41 +01:00
Kim Alvefur
fc2ad03510 util.datamanager: Unreference file handle after closing it to prevent trying to close it again (fixes #632) 2016-02-25 22:36:42 +01:00
Kim Alvefur
9eda046093 util.termcolours: Remove argument from noop function [luacheck] 2016-02-25 22:33:58 +01:00