summaryrefslogtreecommitdiff
path: root/src/tabs
AgeCommit message (Collapse)Author
2014-11-29Fix /namemathieui
2014-11-25fix wrong argument name (1/78)Florent Le Coz
2014-11-25Parse command arguments using a decorator and make things more consistentFlorent Le Coz
Avoid surprises with some commands accepting quoted arguments and some other not. fix #2555
2014-11-25Implement MUC self-ping to regularly check if we are still in the roomFlorent Le Coz
2014-11-13Merge branch 'master' of git.poez.io:poezio into slixmathieui
2014-11-13Fix a typo in /unlock helpmathieui
2014-11-12Merge branch 'master' of git.poez.io:poezio into slixmathieui
2014-11-12Don’t display a feature check of the remote party if it doesn’t support ↵mathieui
anything it’s confusing.
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-30Use a space instead of a cross while checking featuresmathieui
2014-10-25Make the features disco in chat more user-friendlymathieui
2014-10-22Typomathieui
2014-10-20Remove the (sometimes wrong) default values in the config.get() callsmathieui
2014-10-20Change the API of Config.get_by_tabnamemathieui
Make the "default" parameter optional and thus move it to the end of the command with the other optional parameters. And change all the calls.
2014-10-14Merge branch 'master' of git.poez.io:poezio into slixmathieui
Conflicts: src/core/handlers.py src/tabs/xmltab.py
2014-10-12Color the JID in locking/unlocking messagesmathieui
2014-10-12Output the result of the /info command in the MUC windowmathieui
and not the global info buffer
2014-10-11Add a /dump <filename> command to the XML tabmathieui
2014-10-10Fix /me display in delayed messagesmathieui
2014-08-08Fix a traceback on command_win: matchin_names() must return strings, not JIDsFlorent Le Coz
2014-08-01Entirely remove the g_lock (used to avoid a few race conditions with ncures)Florent Le Coz
2014-08-01Fix a few blocking iq, and remove all block=False function argumentsFlorent Le Coz
2014-08-01Little comments fixFlorent Le Coz
2014-08-01Fix the data form retrieval, by making it non-blockingFlorent Le Coz
2014-08-01Make the TimedEvents work with asyncioFlorent Le Coz
Improvements: events now occur precisely at the specified date. You don’t need to stop touching your keyboard to execute them.
2014-07-30Fix all the connect() reconnect() stuffFlorent Le Coz
The /reconnect command should now properly work everytime.
2014-07-24Use slixmppFlorent Le Coz
2014-07-09Fix #2520 (feedback on roster changes)mathieui
2014-07-06Fix #2534 (display who changed the topic)mathieui
2014-07-06Fix #2537 (crash on adhoc tab without items)mathieui
2014-07-06Fix #2554 (traceback on last activity in the roster)mathieui
2014-05-19Fix a wrong nick displayed in privatetab (our default one instead of the muc ↵mathieui
one)
2014-05-18Handle the case where the contact does not support anythingmathieui
2014-05-17Only display the supported features when they changemathieui
also, check the features every rejoin for PrivateTabs and refresh the window after displaying the features
2014-05-17Add an informative message about what the contact supports feature-wisemathieui
and add a handler for missing commands
2014-05-15Make detecting the features supported by the remote entity less awfulmathieui
no more stalling while waiting for a disco info while sending a message.
2014-05-08Fix a hidden traceback on error message outside MUCsmathieui
2014-05-06Provide our own (non-blocking) wrappers for room configuration functionsmathieui
2014-05-06Obsolete docstring in dataforms tabmathieui
2014-05-05Move the Windows from the DataFormsTab to the windows directorymathieui
2014-05-05Fix a traceback on the listtabmathieui
2014-05-05Revert "Fix #2072 (only resize a tab if the size changed since the last ↵mathieui
display)" This reverts commit b46f0f5e266c321632738ca40839759486b47a7e. Conflicts: src/tabs/muclisttab.py Doing this made the unresized elements refresh in the old subwins, causing glitches and weirdness. And anyway, the only problematic element is the TextWin (rebuilding all the lines of a buffer is expensive), but it already checks if the width changed.
2014-05-05Fix a traceback when creating a gaptabmathieui
2014-05-04Make the inputs bigger in DataForm, to be able to see long values more easilyFlorent Le Coz
2014-05-04Remove a useless copyright noticeFlorent Le Coz
2014-05-04Fix two tb in the DataFormTabFlorent Le Coz
- when list-multi doesn't have selected values at all - text-multi.options() provided by sleekxmpp is apparently a '\n' separated string, and not a list
2014-05-04Implement the execution of ad-hoc commands (#1832)Florent Le Coz
2014-05-04Add the /ad-hoc <jid> command to list commands of the given jidFlorent Le Coz
2014-05-04Create a more generic ListTab class, and make MucListTab inherite from itFlorent Le Coz
2014-05-03Fix #2072 (only resize a tab if the size changed since the last display)mathieui