log mod_storage_xmlarchive/mod_storage_xmlarchive.lua @ 3117:dd6313ddd3e0

age author description
2018-03-18 Kim Alvefur mod_storage_xmlarchive: Add a debug message to try to track down why all indicies are read in some cases
2018-03-09 Kim Alvefur mod_storage_xmlarchive: Add additional debug logging
2017-11-09 Kim Alvefur mod_storage_xmlarchive: Add a prosodyctl command for migrating to/from the internal storage format
2017-11-09 Kim Alvefur mod_storage_xmlarchive: Add a sanity check to prevent reading from internal storage archives
2017-11-09 Kim Alvefur mod_storage_xmlarchive: Pass the hostname into the archive object to make it more self-contained
2017-04-10 Kim Alvefur mod_storage_xmlarchive: Attempt to clean up orphaned files despite util.datamanager or internal storage having deleted the date index file (fixes #725)
2017-04-10 Kim Alvefur mod_storage_xmlarchive: Pass username to dates
2017-04-01 Kim Alvefur mod_storage_xmlarchive: Use the dates method in more places
2017-03-21 Kim Alvefur mod_storage_xmlarchive: Add some spacing to improve readability
2017-03-21 Kim Alvefur mod_storage_xmlarchive: Cache current date in a local
2017-03-21 Kim Alvefur mod_storage_xmlarchive: Break out XML file reading into a function
2017-03-05 Kim Alvefur mod_storage_xmlarchive: Rename variable, we can afford to use the full word 'session'
2017-03-05 Kim Alvefur mod_storage_xmlarchive: Move XML callback table into a variable to break long line [luacheck]
2017-03-05 Kim Alvefur mod_storage_xmlarchive: Break long line [luacheck]
2017-03-04 Kim Alvefur mod_storage_xmlarchive: Assume offset to be zero if not included (thanks pep.)
2017-02-20 Kim Alvefur mod_storage_xmlarchive: Raise error instead of warning if there's ever more than one stanza in a chunk (this indicates some kind of corruption)
2016-12-19 Kim Alvefur mod_storage_xmlarchive: Use util.stanza.is_stanza if available
2016-12-02 Kim Alvefur mod_storage_xmlarchive: Skip remaining dates correctly (fixes #790)
2016-11-25 Kim Alvefur mod_storage_xmlarchive: Update copyright year
2016-11-25 Kim Alvefur mod_storage_xmlarchive: Find item indices for 'before' or 'after' queries and behave as if they were excluded if the items don't exist (thanks MattJ)
2016-11-25 Kim Alvefur mod_storage_xmlarchive: Open XML file later, just before it is needed
2016-11-25 Kim Alvefur mod_storage_xmlarchive: Check if item exists before checking if its fields
2016-08-23 Kim Alvefur mod_storage_xmlarchive: Determine if a message is the first of day by checking if the list file exists before
2016-08-23 Kim Alvefur mod_storage_xmlarchive: Include the missing append_raw() for 0.9 compatibility
2016-08-13 Kim Alvefur mod_storage_xmlarchive: Fix date pattern in purge (related to #725)
2016-05-27 Kim Alvefur mod_storage_xmlarchive: Pass a default namespace to xmppstream so result items default to xmlns = nil (fixes non-mam use, like mod_mam_muc sending history)
2016-02-28 Kim Alvefur mod_storage_xmlarchive: Only try to close xmlfile if it has been opened (fixes traceback with limit=0)
2016-02-02 Kim Alvefur mod_storage_xmlarchive: Return earlier if attempting to delete messages older than the oldest existing
2016-02-02 Kim Alvefur mod_storage_xmlarchive: Return earlier if attempting to delete from empty archive
2016-02-02 Kim Alvefur mod_storage_xmlarchive: Collect return value when adding to date index
2015-12-12 Kim Alvefur mod_storage_xmlarchive: Use datamanager.append_raw (had that code duplicated here)
2015-09-07 Kim Alvefur mod_storage_xmlarchive: Expose method for getting a list of dates which do have messages
2015-09-02 Kim Alvefur mod_storage_xmlarchive: Add support for purging (used when deleting users)
2015-08-27 Kim Alvefur mod_storage_xmlarchive: Remove redundant stream header
2015-05-29 Kim Alvefur mod_storage_xmlarchive: Mistake in copypaste of copyright header :P
2015-05-29 Kim Alvefur mod_storage_xmlarchive: Add (c) header
2015-05-29 Kim Alvefur mod_storage_xmlarchive: Remove leftover debug code
2015-05-21 Kim Alvefur mod_storage_(various): Order swapping in 54c8a0cb2996 was backwards
2015-05-21 Kim Alvefur Fix for 54c8a0cb2996
2015-05-19 Kim Alvefur mod_storage_(archive-capable): Change order of arguments to :append to be the same as return values from :find iterator (see prosody 41725f3df3cc)
2015-05-19 Kim Alvefur mod_storage_xmlarchive: Return 'when' as number
2015-05-18 Kim Alvefur mod_storage_xmlarchive: Store timestamps in text form, I don't trust numeric timestamps in Lua
2015-05-18 Kim Alvefur mod_storage_xmlarchive: Optimize access to variables used in inner loop
2015-05-18 Kim Alvefur mod_storage_xmlarchive: Code is annoying to read when every other line is 'if not ok then return'
2015-05-18 Kim Alvefur mod_storage_xmlarchive: This module only supports storage of stanzas, log a warning about attempts to do otherwise
2015-05-18 Kim Alvefur mod_storage_xmlarchive: The last :seek() should return something truish, if not, don't ignore
2015-05-11 Kim Alvefur mod_storage_xmlarchive: Increase severity of log message regarding unexpected missing items
2015-05-11 Kim Alvefur mod_storage_xmlarchive: Remove overly verbose debug message
2015-05-11 Kim Alvefur mod_storage_xmlarchive: Adjust wording in log message
2015-05-11 Kim Alvefur mod_storage_xmlarchive: Attempt to recover after parse failures
2015-05-11 Kim Alvefur mod_storage_xmlarchive: Improve logging of parse errors
2015-05-03 Kim Alvefur mod_storage_xmlarchive: New stanza archive-only storage module backed by plain text files