summaryrefslogtreecommitdiff
path: root/src/tabs.py
AgeCommit message (Collapse)Author
2011-04-17idem etcFlorent Le Coz
2011-04-16IdemFlorent Le Coz
2011-04-16Fix some refresh issuesFlorent Le Coz
2011-04-16Optimize refresh by doing only when strictly required and on the concerned ↵Florent Le Coz
part of the screen. Also remove the \n at the end of /info when status message is empty
2011-04-16Fix a typo that made the ban messages not appear at allFlorent Le Coz
2011-04-10Fix the *args of timed eventsFlorent Le Coz
2011-04-10Implement paused chate state. fixed #2124Florent Le Coz
2011-04-05Save the last presence. Fix #2133Florent Le Coz
2011-04-04Fix that againFlorent Le Coz
2011-04-04Fix colors of reason in a kick messageFlorent Le Coz
2011-03-30Finish colors support with xhtml (clean the elinks dump, handle the input etc)Florent Le Coz
2011-03-29Remove the xhtml-im that was inserted for debug, add the start of a method ↵Florent Le Coz
to enter attributes in Inputs, convert \n to <br /> in xhtml_im bodies and put that body in a <p> element
2011-03-29Convert html markup received in xhtml_im elements to poezio colorsFlorent Le Coz
and use that as the body
2011-03-29Fix some colors, again...Florent Le Coz
2011-03-29Fix the color in join messageFlorent Le Coz
2011-03-29Cleanup some code not used anymoreFlorent Le Coz
2011-03-29Change how colors are handled. With \x19x etcFlorent Le Coz
Should work like before and be a little lighter on the RA
2011-03-21Florent Le Coz
2011-03-21Hix a crash on last word completionFlorent Le Coz
2011-03-11Send chatstate composing if we are starting our message with //Florent Le Coz
2011-03-10Fix the search (the enter key opens the conversation BEFORE restoring the ↵Florent Le Coz
roster list)
2011-03-09little fixes and (very little) optimizationFlorent Le Coz
2011-03-09Some optimizations in build_new_message. Also cleaned up. Added an optimized ↵Florent Le Coz
way to do "wcswidth(string) > n": wcsislonger. And should use less memory because the dict replacing Message and Lines object stores ONLY the needed attributes.
2011-03-08Have a single TextWin in common for each tab, reducing the needed memory, ↵Florent Le Coz
and simplifying its resize (F7 and F8 stuff)
2011-03-07Inputs are garbage collected, making MucListTab collectable.Florent Le Coz
Memory improvement issues.
2011-03-07TypoFlorent Le Coz
2011-03-07very little cleanupFlorent Le Coz
2011-03-05Move a lot of muc-only-related stuff insid the MucTab classFlorent Le Coz
instead of core. May break some stuff, maybe
2011-03-05Kind of big cleanup.Florent Le Coz
Core and Connection classes are now used as singletons, we do not need to pass them to each Tab and Win. This remove a lot of arguments to varius methods.
2011-02-26Send chatstates to MUC only if the room is joinedFlorent Le Coz
2011-02-24Display chatstates in the user list in MucTabsFlorent Le Coz
2011-02-24end and handle chatstates in privateconversationsFlorent Le Coz
2011-02-24Send chat states in muc and private conversations.Florent Le Coz
Also, do not send active/inactive states if we switch tab while we are composing a message
2011-02-24Send active/inactive if we are focused on the tab or not. And sendFlorent Le Coz
"gone" when we close the tab
2011-02-24Do not send chat states if send_chat_states = false in configFlorent Le Coz
2011-02-24Better handle the 'not composing, just typing a command',Florent Le Coz
the user cannot trick the system by doing (e.g), "w, ←, /, ENTER"
2011-02-24Do not send the composing chatstate if we are typing a commandFlorent Le Coz
2011-02-24In normal conversations: Send composing and active chat statesFlorent Le Coz
and display the state of the remote contact
2011-02-17Re-add the /configure commandFlorent Le Coz
2011-02-16Fix the info_win of the InfoTab (anon mode)Florent Le Coz
2011-02-15Remove ^J from the shortcuts triggering the Enter event, becauseFlorent Le Coz
we’ll use it to add a (real) \n into the input’s text. Also remove "\n" because it’s useless
2011-02-15Ctrl+up and down go to the next/previous group in the rosterFlorent Le Coz
2011-02-15PgUp and PgDown scroll one page in the rosterFlorent Le Coz
M-u, M-y Moves to the next/previous roster group
2011-02-15Make the resize faster by resizing each tabFlorent Le Coz
only at its next refresh
2011-02-14Make the number of lines and messages kept in memory configurableFlorent Le Coz
and lower (a lot) the number of lines kept in the info_win buffers This lower the memory usage.
2011-02-14Properly remove the info_win from the list of theFlorent Le Coz
global information_buffer to make it Garbage Collected when we close the tab
2011-02-13Make the tab collectable by remove self references when closingFlorent Le Coz
them.
2011-02-10/win completion and fix the return values of other completionsFlorent Le Coz
2011-02-10/unignore completionFlorent Le Coz
2011-02-10Topic completionFlorent Le Coz