summaryrefslogtreecommitdiff
path: root/poezio/tabs
AgeCommit message (Collapse)Author
2017-11-12Remove unused variablesmathieui
2017-11-12yapf -irmathieui
2017-10-23Include the JID blocked instead of "Contact"Kim Alvefur
It's useful to see what JID you blocked. Any JID can be blocked, so "Contact" isn't always accurate.
2017-10-15Always refresh the MUC when setting or unsetting a user colormathieui
Fixes #3213
2017-10-14Fix a traceback when creating a conversation tabmathieui
2017-10-14Add a refresh wrapper on the methods for scrolling the userlistmathieui
2017-10-14Fix a bad indentationmathieui
2017-10-14Do not call poezio commands when we can call methodsmathieui
2017-10-14Split the muctab recolor codemathieui
2017-10-14Split command_topic in muctabmathieui
2017-10-14Split command_info in muctabmathieui
2017-10-14Fix error presence handlingmathieui
2017-10-14Refactor nick and affiliation changesmathieui
(and fix some small bugs that went unnoticed for years)
2017-10-14Reformat muctabmathieui
2017-10-14Remove unused is_muc propertymathieui
2017-10-14Remove some unused importsmathieui
2017-10-14Split command declaration from init in muctabmathieui
Make it slightly more declarative and readable (and longer), and put it at the end of the file.
2017-10-13Fix the last pylint error (do not set the roster contact filter to None)mathieui
2017-10-13Clean the presence buffer whenever we leave the roommathieui
2017-10-13Fix more pylint errorsmathieui
2017-10-12Fix some excepts (bare, useless, unused)mathieui
2017-10-12Actually fix what the previous commit should have fixedmathieui
2017-10-12Fix a pylint complaintmathieui
2017-10-11Handle PresenceError correctlymathieui
2017-10-10Avoid an exception when we receive a presence from unknown nicksmathieui
add a log because it should not happen
2017-10-10Micro-optimize MUC presence handlingmathieui
Keep all presence before status code=110 in a buffer, then batch-process them when receiving our initial join.
2017-10-08Fix #3056 (send inactive chatstate when leaving a tab)mathieui
2017-10-08rostertab: Increase the size of the contact_info and avatar.Emmanuel Gil Peyrot
2017-10-08Fix #3281 (alias /subject to /topic)mathieui
2017-10-08Change all “not … in …” into “… not in …”.Emmanuel Gil Peyrot
2017-10-07Display contact avatar in the roster.Emmanuel Gil Peyrot
Implements XEP-0084 and XEP-0153.
2017-10-07rostertab: Import shell_split globally.Emmanuel Gil Peyrot
2017-10-07contact: Remove now-unused alias of presence to show.Emmanuel Gil Peyrot
2017-10-07Fix #3334 (error when a service includes only the actor nick in a ban)mathieui
2017-10-07Fix #3332 (showing a join for a type="unavailable" presence)mathieui
When a user isn't in a room, but due to a component bug we receive a unavailable presence, we were showing a join.
2017-07-20Simplify /cycle as wellmathieui
2017-07-20Fix /server_cycle weirdnessmathieui
exit the rooms properly, call functions instead of full-blown commands, do not randomly focus stabs, etc
2017-05-16Remove extra colonmathieui
It creates a syntax error
2017-05-15Add /add in conversation tabs.Emmanuel Gil Peyrot
This is a quick shortcut to add someone to your roster when talking with them. Fixes #3313. Also fixes typos.
2017-05-15Send a <gone/> chatstate on /close.Emmanuel Gil Peyrot
Fixes #3296.
2017-05-15Merge /unquery and /close into OneToOneTab.Emmanuel Gil Peyrot
2017-04-09Fix #3149 (wipe xmltab messages for real with /clear)mathieui
2017-04-09Fix ssl warning tabmathieui
It wasn’t blocking because the asyncio api slightly changed in december which prevent us from running another event loop while a first one was already running. This bypasses asyncio completely, thus avoiding future problems (hopefully the select() API won’t change soon)
2017-03-28self-ping: consider 'feature-not-implemented' a valid ping responseGeorg Lukas
2017-02-24Force xmlns when parsing self-generated xhtml-im (Fix #3274)mathieui
2017-02-13Remove a useless lambdamathieui
2017-02-13Don't require parameters for the ignored args wrappermathieui
2016-12-26Add missing message types (fix #3271)mathieui
Which were being filtered by the information popup filter
2016-10-21pyflake fixesmathieui
unused variables, imports, name shadowing
2016-10-21Fill __all__ for tabs/ and windows/mathieui