summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-04-27Remove some debug infomathieui
2012-04-27New Contact and Resource classmathieui
Changed from Resource: - __init__() takes as a parameter a reference to the sleek dict - No more setters, information is directly taken from the sleek roster Changed from Contact: - __init__() takes a sleek RosterItem for the contact - add_resource() → Ø - remove_resource() → Ø - get_resource_by_fulljid() → Ø - get_nb_resources() → __len__() - get_resource_by_fulljid() → __getitem__() or get() - No more setters, information is directly taken from the sleek roster
2012-04-27New Roster class and new RosterGroup classmathieui
Removes for Roster: - empty() → Ø - get_contact_len() → Ø - remove_contact_from_group() → Ø - add_contact_to_group() → Ø - add_contact() → add() - remove_contact() → __delitem__() - get_contact_by_jid() → __getitem__() - edit_groups_of_contact() → update_contact_groups() Removes for RosterGroup: - has_contact() → __contains__() - add_contact() → add() - remove_contact() → remove() - is_empty() → __len__()
2012-04-27Fix the get_nick issue correctly this time.Florent Le Coz
2012-04-26Avoid a traceback when getting the nick of a converstation with someone not ↵Florent Le Coz
in our roster. fixes #2356
2012-04-19Add an autofill for /name in the roster when 'n' is pressedmathieui
2012-04-19Do not quote the plugins on completionmathieui
2012-04-19Fixes #2355mathieui
2012-04-19Add a show_roster_jids optionmathieui
2012-04-19Show the current status in the ContactInfoWinmathieui
2012-04-19Show the contact info in the roster when 'i' is pressedmathieui
2012-04-18Add a 'v' keybind on the roster to get the version of the selectedmathieui
resource-s
2012-04-18Load xep_0092 even if send_poezio_info is falsemathieui
2012-04-18Add a /groupmove command. Fixes #2352mathieui
(based on a patch from gio)
2012-04-18Fix a small mistakemathieui
2012-04-18Add new options use_tab_nicks, show_tab_numbers, and show_tab_namesmathieui
(thanks gio)
2012-04-18Add a get_nick method to the tabsmathieui
2012-04-18Adda config.getl to return a lowercase valuemathieui
2012-04-18Do not quotify completions where it is not allowedmathieui
2012-04-18Quote everything that is completed by default, except commandsmathieui
2012-04-18Do not split on command_accept as it is unneededmathieui
2012-04-18Fix some completions accordingly (name/groupadd/groupremove)mathieui
2012-04-18Split correctly on command_groupremovemathieui
2012-04-18Split correctly on command_namemathieui
2012-04-18Do not split on command_deny as it is unneededmathieui
2012-04-18Do not split on command_unignore as it is unnecessarymathieui
2012-04-18Do not split on command_ignore as it is unnecessarymathieui
2012-04-18Remove a if not len(list) in command_kickmathieui
2012-04-18Do not split on command_part as it is unnecessarymathieui
2012-04-18Do not split on command_nick as it is unnecessarymathieui
2012-04-18Do not split on command_version as it is unnecessarymathieui
2012-04-18Do not split on command_recolor as it is unneededmathieui
2012-04-18Do not split args in command_info as it is not neededmathieui
2012-04-18Refactor command_win a bitmathieui
2012-04-18Remove if len(list) in command_thememathieui
2012-04-18Refactor command_list a bitmathieui
2012-04-18Replace arg.split with shell_split in command_messagemathieui
2012-04-18Remove if len(list) in command_helpmathieui
2012-04-15Add a way to bookmark all the rooms at oncemathieui
(/bookmark * or /bookmark_local *)
2012-04-02Fixes #2350 (reloading static resources on SIGHUP)mathieui
2012-04-02Fixes #2349mathieui
2012-03-31Do not show the traceback if unloading a plugin failedmathieui
2012-03-30Should fix the refresh issuemathieui
2012-03-28Fixes #2347mathieui
2012-03-26Remove some useless refreshsmathieui
2012-03-25Do not add stanzas to the xml_tab buffer unless there an is active onemathieui
2012-03-17Fixes #2343mathieui
2012-03-13Fix bookmarksmathieui
2012-03-13Fix /affiliationmathieui
2012-03-13Add a whitespace_interval optionmathieui