aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ejabberdsql2prosody.lua
Commit message (Collapse)AuthorAgeFilesLines
* tools: Update imports to use new prosody.* namespaceKim Alvefur2023-06-081-5/+8
|
* ejabberdsql2prosody: rename variable 't' to prevent shadowing upvalues ↵Anton Shestakov2016-08-121-9/+9
| | | | | | [luacheck] Let's make the result of parseFile() have a more descriptive name.
* ejabberdsql2prosody: rename variable 'host' to prevent shadowing upvalue ↵Anton Shestakov2016-08-121-15/+15
| | | | | | | | | | | [luacheck] Functions roster(), roster_pending(), roster_group(), private_storage() and offline_msg() have argument named "host", which used to shadow upvalue of this variable before this change. Instead of renaming this argument, let's rename the variable to match what the script says in usage: Usage: ejabberdsql2prosody.lua filename.txt hostname
* ejabberdsql2prosody: remove unused one-letter loop variables [luacheck]Anton Shestakov2016-08-121-6/+6
|
* ejabberdsql2prosody: remove unused function pushback() [luacheck]Anton Shestakov2016-08-121-4/+0
| | | | The same function seems to exist in tools/erlparse.lua, also unused.
* Merge 0.9->0.10Matthew Wild2014-01-181-10/+24
|\
| * tools/ejabberdsql2prosody: Skip invalid XML in data, and print out errors.Waqas Hussain2014-01-161-10/+24
| |
| * package{,c}path fixes for migration toolsVadim Misbakh-Soloviov2013-06-141-0/+8
| |
* | Remove all trailing whitespaceFlorian Zeitz2013-08-091-1/+1
| |
* | package{,c}path fixes for migration toolsVadim Misbakh-Soloviov2013-06-141-0/+8
|/
* tools/ejabberdsql2prosody: Use util.xml.Waqas Hussain2012-12-031-52/+1
|
* tools/ejabberdsql2prosody: Handle INSERT statement form where column list is ↵Waqas Hussain2012-02-051-1/+6
| | | | specified (by skipping the column list).
* tools/ejabberdsql2prosody: Track current line for error reportingMatthew Wild2011-09-201-2/+6
|
* ejabberdsql2prosody: Added a global 'prosody' table to fix a traceback.Waqas Hussain2010-10-201-0/+2
|
* Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
|
* ejabberdsql2prosody: Don't print password of imported accounts (thanks azerttyu)Matthew Wild2010-02-211-1/+1
|
* ejabberdsql2prosody: Removed unnecessary stanza reserialization for private ↵Waqas Hussain2009-08-081-1/+1
| | | | storage
* ejabberdsql2prosody: Added support for offline messagesWaqas Hussain2009-08-081-0/+21
|
* ejabberdsql2prosody: Fix access of undefined globalWaqas Hussain2009-08-081-2/+2
|
* ejabberdsql2prosody: Added support for Private XML StorageWaqas Hussain2009-08-021-0/+9
|
* ejabberdsql2prosody: Added support for vCardsWaqas Hussain2009-08-021-0/+4
|
* ejabberdsql2prosody: Added an XML parserWaqas Hussain2009-08-021-0/+52
|
* ejabberdsql2prosody: Allow for multiple INSERTs to the same tableWaqas Hussain2009-07-281-1/+8
|
* ejabberdsql2prosody: Fixed a nil global access errorWaqas Hussain2009-07-261-1/+1
|
* ejabberdsql2prosody: Add support for rosterusers.ask == "B" (both pending in ↵Waqas Hussain2009-07-261-0/+3
| | | | and out subscriptions)
* ejabberdsql2prosody: Fix typo, and improve the warning messageWaqas Hussain2009-07-261-6/+6
|
* ejabberdsql2prosody: Display a warning if a row has more columns than expectedWaqas Hussain2009-07-261-2/+5
|
* ejabberdsql2prosody: Added support for all mysql escape sequencesWaqas Hussain2009-07-261-4/+14
|
* ejabberdsql2prosody: Added support for the escape sequence '\\' in stringsWaqas Hussain2009-07-261-0/+1
|
* ejabberdsql2prosody: Fixed: 'ask' value should be nil for pending-in ↵Waqas Hussain2009-07-261-0/+1
| | | | subscriptions
* ejabberdsql2prosody: Fixed: pending-in subscriptions could halt processingWaqas Hussain2009-07-261-3/+2
|
* ejabberdsql2prosody: Added support for rostersWaqas Hussain2009-07-261-4/+51
|
* ejabberdsql2prosody: Added a second required command line parameter: hostnameWaqas Hussain2009-07-251-12/+5
|
* ejabberdsql2prosody: Improved help messageWaqas Hussain2009-07-251-5/+4
|
* ejabberdsql2prosody: Initial commitWaqas Hussain2009-07-251-0/+197
- full parser - only exports account data at the moment