aboutsummaryrefslogtreecommitdiffstats
path: root/util
Commit message (Collapse)AuthorAgeFilesLines
...
* util.array: Rename arguments to avoid name clash [luacheck]Kim Alvefur2016-10-181-4/+4
|
* util.pubsub: Factor item storage cache into a per service configurable optionKim Alvefur2016-10-161-3/+4
|
* util.pubsub: Switch to use util.cache for item dataKim Alvefur2016-10-161-33/+23
|
* util.datamanager: Add annotations to ignore name clashes [luacheck]Kim Alvefur2016-09-241-5/+5
|
* util.datamanager: Rename variables to avoid name clashes [luacheck]Kim Alvefur2016-09-241-12/+12
|
* mod_carbons: Make the conditions for ignoring MUC PMs more specific (fixes #744)Kim Alvefur2016-09-231-1/+1
|
* util.openssl: rename variable to not collide with other 'k's [luacheck]Anton Shestakov2016-07-281-4/+4
|
* statsmanager, util.statsd: Add built-in statsd providerMatthew Wild2016-07-271-0/+84
|
* util.sql: remove unused one-letter loop variables [luacheck]Anton Shestakov2016-07-231-2/+2
|
* util.ip: rename variable (i is already defined) [luacheck]Anton Shestakov2016-07-091-2/+2
|
* util.openssl: remove unused one-letter loop variable [luacheck]Anton Shestakov2016-07-091-1/+1
|
* util.ip: remove unused one-letter loop variables [luacheck]Anton Shestakov2016-07-091-2/+2
|
* util.time: New tiny library to abstract LuaSocket's gettime() function, so ↵Matthew Wild2016-06-281-0/+8
| | | | we can use other sources in the future
* util.openssl: Handle return value from os.execute being true in Lua 5.2Kim Alvefur2016-06-231-1/+2
|
* util.prosodyctl: Handle os.execute in Lua 5.2 returning true when command ↵Kim Alvefur2016-06-231-1/+1
| | | | terminates successfully
* util.dataforms: Fix including default value for list-single when given as ↵Kim Alvefur2016-05-291-1/+1
| | | | field.value[].default
* util.dataforms: Allow separation of options from values in list fieldsKim Alvefur2016-05-271-4/+12
|
* util.cache: Add support for creating a proxy table to a cache, that looks ↵Matthew Wild2016-05-221-0/+22
| | | | and acts (mostly) like a normal table. No tests yet.
* util.datamanager: Import tostring and type (fix global access)Kim Alvefur2016-05-221-0/+2
|
* util.sql: Import type too (fix global access)Kim Alvefur2016-05-221-0/+1
|
* util.sql: Import pcall (fixes #677)Matthew Wild2016-05-221-1/+1
|
* util.events: Fix comparison of event_name with nil instead of false (fixes #554)Matthew Wild2016-05-121-1/+1
|
* util.iterators: Add iterator wrapper that works like select(n, ...) applied ↵Kim Alvefur2016-04-151-0/+9
| | | | to original iterator
* util.cache: Add method for iterating over valuesKim Alvefur2016-04-151-0/+12
|
* util.iterators: Normalize indentationKim Alvefur2016-04-131-12/+12
|
* util.jid: Import select() into local (fixes traceback, tests on Lua 5.2)Kim Alvefur2016-03-281-0/+1
|
* util.sql: Log errors in transaction to error level with traceback but return ↵Kim Alvefur2016-03-251-1/+5
| | | | only error message (fixes #464)
* util.sql: Charset should be innocent until proven guilty (initialize ↵Matthew Wild2016-03-231-1/+1
| | | | charset_ok to true), fixes bug introduced in 187ba2e9c012
* util.iterators: Fix use of incorrect variable accidentally introduced in ↵Matthew Wild2016-03-211-2/+2
| | | | a9ef93bc81d9
* util.sql: Catch errors from LuaDBI connect (Fixes #568)Kim Alvefur2016-03-211-1/+2
|
* util.jid+tests: Add simple helpers... node(), host() and resource() for ↵Matthew Wild2016-03-171-0/+15
| | | | extracting specific parts of a JID
* util.cache: Change behaviour of on_evict (and tests). Now accepts false ↵Matthew Wild2016-03-171-5/+5
| | | | instead of a function (never evict), or on_evict can return false to prevent eviction.
* util.cache: Add head() and tail() methods (and tests)Matthew Wild2016-03-171-0/+12
|
* util.async: Remove to prevent blocking a stable releaseKim Alvefur2016-03-171-158/+0
|
* mod_presence: Move function for selecting "top resources" into a new ↵Kim Alvefur2016-03-141-0/+38
| | | | util.presence
* util.sql: Remove unused arguments [luacheck]Kim Alvefur2016-03-131-2/+2
|
* util.sql: Don't break out of result retreival loopsKim Alvefur2016-03-131-7/+13
|
* util.sql: Move per-driver (currenly only PostgreSQL) query transform into ↵Kim Alvefur2016-03-131-6/+10
| | | | its own method
* util.dependencies: Show the full error when a symbol is not found (i.e., ↵Thijs Alkemade2016-03-101-2/+2
| | | | when running Prosody with the wrong version of Lua).
* util.prosodyctl: Remove unused variable [luacheck]Matthew Wild2016-03-101-1/+1
|
* util.json: Variable renaming to avoid shadowing [luacheck]Matthew Wild2016-03-101-14/+14
|
* util.iterators: Variable renaming to avoid shadowing [luacheck]Matthew Wild2016-03-101-9/+9
|
* net.websocket.frames, util.datetime, util.json, util.prosodyctl, ↵Matthew Wild2016-03-104-4/+1
| | | | util.rfc6724: Remove unused variables [luacheck]
* util.iterators: Return initial var from upstream iterator [luacheck]Matthew Wild2016-03-101-1/+1
|
* util.iterators: Don't replace var, as we should preserve var from the ↵Matthew Wild2016-03-101-1/+1
| | | | original iterator [luacheck]
* util.stanza: Some code cleanup [luacheck]Matthew Wild2016-03-091-21/+20
|
* util.json: Fix encoding of json.null (bug introduced in bf1f09a5bcf7)Matthew Wild2016-03-041-1/+3
|
* util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt)Kim Alvefur2016-02-281-2/+2
|
* util.sasl.scram: Remove unused initial value [luacheck]Kim Alvefur2016-02-281-1/+1
|
* util.sasl.scram: Rename variable to avoid name clash [luacheck]Kim Alvefur2016-02-281-5/+5
|