summaryrefslogtreecommitdiff
path: root/src/core/completions.py
AgeCommit message (Collapse)Author
2015-07-31Fix #3105 (/message completion is slow)mathieui
sorting things several times is slow, and our roster wrapper is even slower. remove the overly slow code until the roster wrapper is rewritten (do we even need this level of detailed sorting in the first place?)
2015-05-06Remove unreachable code.Emmanuel Gil Peyrot
2015-02-09Change the bookmark interfacemathieui
move the modulename to bookmark → boookmarks add a bookmarklist class with remove module-level variables do a features check on startup before trying to fetch the bookmarks
2014-12-18Fix a hidden traceback in /set completionmathieui
2014-12-10Allow the plugins to use a default configuration toomathieui
through overloading the class variable default_config. also fix a bug that would add meaningless sections to plugin configurations.
2014-12-10Do not list __init__.py in /theme completionmathieui
2014-12-09Fix #2842 (complete all existing options with /set-completion)mathieui
2014-12-05Add a set_default command.Eijebong
2014-10-31Merge branch 'master' of git.poez.io:poezio into slixmathieui
Conflicts: src/bookmark.py src/config.py src/connection.py src/core/commands.py src/core/core.py src/core/handlers.py src/windows/info_bar.py src/windows/muc.py src/windows/roster_win.py src/windows/text_win.py src/xhtml.py
2014-10-31Fix some tracebacks on /set completionmathieui
(introduced by the automated default arguments of config.get)
2014-10-29Fix two potential tracebacks on /set completionmathieui
2014-10-20Remove the (sometimes wrong) default values in the config.get() callsmathieui
2014-08-01Fix a few blocking iq, and remove all block=False function argumentsFlorent Le Coz
2014-04-30Remove Tab.get_name() and use Tab.name insteadmathieui
(keep a get_name() fallback just in case for now)
2014-04-26Fix #2514 (add a /toggle command)mathieui
2014-04-14Implement XEP-0249 (Direct MUC Invitations)mathieui
- fallback to mediated invitations if only the bare jid is given to the command or if the jid does not advertise support TODO: provide a way to send passwords
2014-04-11Fix #2428 (complete fulljids on /version in MUCs)mathieui
also clean up some newlines mess
2014-04-05Split the Core classmathieui
Although the logic stays the same, and everything is put back together in a single class.