Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge 0.10->trunk | Kim Alvefur | 2017-11-22 | 1 | -1/+1 |
|\ | |||||
| * | util.helpers: Handle missing priorities, happens due to wildcard magic in ↵ | Kim Alvefur | 2017-11-22 | 1 | -1/+1 |
| | | | | | | | | net.http.server (fixes #1044) | ||||
* | | util.async: Fix thread check to work correctly in Lua 5.2 | Kim Alvefur | 2017-11-21 | 1 | -2/+2 |
| | | | | | | | | | | coroutine.running() now returns the main thread and a boolean true if called from the main thread, as opposed to nil in 5.1 | ||||
* | | util.async: Factor out thread check into a function | Kim Alvefur | 2017-11-21 | 1 | -8/+10 |
| | | |||||
* | | util.pubsub: Recreate itemstore if persist_items changes or resize it if ↵ | Kim Alvefur | 2017-11-09 | 1 | -7/+7 |
| | | | | | | | | max_items changes | ||||
* | | util.cache: Call on-eviction callback when shrinking | Kim Alvefur | 2017-11-18 | 1 | -1/+6 |
| | | |||||
* | | util.cache: Add a method to resize the cache | Kim Alvefur | 2017-11-18 | 1 | -0/+14 |
| | | |||||
* | | util.cache: Add method for removing all data (does not call eviction callback) | Kim Alvefur | 2017-11-07 | 1 | -0/+7 |
| | | |||||
* | | util: Ignore some Lua 5.1 vs 5.2 compat things [luacheck] | Kim Alvefur | 2017-11-10 | 4 | -5/+5 |
| | | |||||
* | | util.format: Move tests to spec/ | Kim Alvefur | 2017-11-10 | 1 | -10/+0 |
| | | |||||
* | | util: Various minor changes to please [luacheck] | Kim Alvefur | 2017-11-10 | 18 | -115/+107 |
| | | |||||
* | | util.sql: Discard useless substitution count from string.gsub in SQL debug logs | Kim Alvefur | 2017-11-08 | 1 | -2/+2 |
| | | |||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-11-07 | 1 | -1/+2 |
|\| | |||||
| * | util.sql: Return an error message when a SQL commit fails (LuaDBI doesn't) ↵ | Kim Alvefur | 2017-11-07 | 1 | -1/+2 |
| | | | | | | | | (Thanks Ge0rG) | ||||
* | | util.pubsub: Add method for retreiving the last item (useful for sending on ↵ | Kim Alvefur | 2017-11-07 | 1 | -0/+9 |
| | | | | | | | | subscribe) | ||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-11-03 | 1 | -1/+2 |
|\| | |||||
| * | util.termcolours: Split a long line [luacheck] | Kim Alvefur | 2017-11-03 | 1 | -1/+2 |
| | | |||||
* | | util.pubsub: Return an empty list if specific item asked for does not exist ↵ | Kim Alvefur | 2017-10-18 | 1 | -1/+1 |
| | | | | | | | | (thanks jonasw) | ||||
* | | pubsub: Distinguish internal representation of node config from XEP-0060 ↵ | Kim Alvefur | 2017-10-17 | 1 | -2/+3 |
| | | | | | | | | form (util.pubsub should be protocol-agnostic) | ||||
* | | util.pubsub: Remove inclusion of publisher | Kim Alvefur | 2017-10-16 | 1 | -3/+0 |
| | | | | | | | | | | util.pubsub should stay agnostic of what data types are published and this depended on util.stanza | ||||
* | | util.debug: Produce a sensible name for nameless upvalues to C functions | Kim Alvefur | 2017-10-15 | 1 | -0/+1 |
| | | |||||
* | | util.pubsub: Return item-not-found if a single item is requested, and not there | Kim Alvefur | 2017-10-10 | 1 | -1/+5 |
| | | |||||
* | | util.pubsub: Clear data on node deletion | Kim Alvefur | 2017-10-09 | 1 | -0/+3 |
| | | |||||
* | | util.datamanager: Encode the 'store' path component, preserving underscores | Kim Alvefur | 2017-10-08 | 1 | -1/+8 |
| | | |||||
* | | util.pubsub: Clear data store if it supports being cleared, otherwise fall ↵ | Kim Alvefur | 2017-10-08 | 1 | -1/+5 |
| | | | | | | | | back to creating a new one | ||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-10-04 | 1 | -4/+13 |
|\| | |||||
| * | util.sql: Don't log at error level if a transaction failed and was retried ok | Matthew Wild | 2017-10-04 | 1 | -4/+13 |
| | | |||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-09-29 | 2 | -1/+3 |
|\| | |||||
| * | util.sslconfig: Treat 'curveslist', added in LuaSec 0.7, as a ↵ | Kim Alvefur | 2017-09-27 | 1 | -0/+3 |
| | | | | | | | | colon-separated list, like ciphers (see #879, #943, #951) | ||||
| * | util.throttle: Remove unused import of floor() [luacheck] | Matthew Wild | 2017-09-26 | 1 | -1/+0 |
| | | |||||
* | | Merge 0.10->trunk | Matthew Wild | 2017-09-26 | 1 | -18/+22 |
|\| | |||||
| * | util.dataforms: Don't include list options in result forms (fixes #983) | Matthew Wild | 2017-09-23 | 1 | -18/+22 |
| | | |||||
| * | util.throttle: Fix initial time setting (double accounting the first time) ↵ | Waqas Hussain | 2017-09-17 | 1 | -2/+2 |
| | | | | | | | | and fractional balance updates (0.1*10 was not the same as 1*1) | ||||
* | | util.throttle: Fix initial time setting (double accounting the first time) ↵ | Waqas Hussain | 2017-09-17 | 1 | -2/+2 |
| | | | | | | | | and fractional balance updates (0.1*10 was not the same as 1*1) | ||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-09-16 | 1 | -0/+1 |
|\| | |||||
| * | util.random: Add a _source field to match util.crand | Kim Alvefur | 2017-09-16 | 1 | -0/+1 |
| | | |||||
* | | util.random: Remove obsolete noop seed function | Kim Alvefur | 2017-09-16 | 1 | -4/+0 |
| | | |||||
* | | util.async: Fix documentation URL | Waqas Hussain | 2017-09-15 | 1 | -2/+2 |
| | | |||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-09-14 | 1 | -0/+74 |
|\| | |||||
| * | util.format: A string.format wrapper that gracefully handles invalid arguments | Waqas Hussain | 2017-09-10 | 1 | -0/+74 |
| | | |||||
* | | util.pubsub: Don't record publisher when superuser privileges are used (eg ↵ | Kim Alvefur | 2017-07-29 | 1 | -1/+3 |
| | | | | | | | | by modules) | ||||
* | | util.pubsub: Catch overriden id from storage | Kim Alvefur | 2017-04-26 | 1 | -0/+1 |
| | | |||||
* | | util.pubsub: Add the publisher as an attribute in the item element. | Emmanuel Gil Peyrot | 2017-04-02 | 1 | -0/+1 |
| | | | | | | | | | | This makes the backend able to obtain the publisher without changing the API. | ||||
* | | util.pubsub: Add a node parameter to itemstore(). | Emmanuel Gil Peyrot | 2017-04-02 | 1 | -4/+4 |
| | | | | | | | | | | This allows the backend to know the node name, when it needs to differentiate it at storage for example. | ||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-08-28 | 1 | -1/+5 |
|\| | |||||
| * | util.sql: Greedily read all rows so we can close queries early (fixes #391) | Matthew Wild | 2017-08-04 | 1 | -1/+5 |
| | | |||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-04-25 | 1 | -0/+2 |
|\| | |||||
| * | util.prosodyctl: Resolve possibly relative pidfile path (fixes inconsistency ↵ | Kim Alvefur | 2017-04-24 | 1 | -0/+2 |
| | | | | | | | | with mod_posix) | ||||
* | | Merge 0.10->trunk | Kim Alvefur | 2017-04-20 | 3 | -4/+5 |
|\| | |||||
| * | util.sasl.plain,scram: Record username in sasl state earlier | Kim Alvefur | 2017-04-19 | 2 | -2/+3 |
| | |