Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-15Fix running make testYann Leboulanger
2017-08-18Rename gajim.common.gajim to avoid name conflictsAndré Apitzsch
2017-08-18Use absolute importsAndré Apitzsch
2016-09-02Modified source to work under python3Jeffrey Baitis
2011-09-03roster_buttons.do not translate buttons lebel.Denis Fomin
triggers.remove unused import,coding style
2011-09-02make plugins description translatableDenis Fomin
2011-09-02set new translation domaine for pluginsDenis Fomin
2010-09-19[Dicson] use manifest.ini files in plugins to have a separate file for ↵Yann Leboulanger
plugin's information. Fixes #5920
2010-04-08convert tabs to spaces in source code thanks to reindent.pyÉric Araujo
Also use sed to remove now unneeded Vim lines, 2to3 -f ws_comma to fix some whitespace, and fix some other madness manually.
2010-02-09merge from default branchYann Leboulanger
2008-08-03Improvements to GUI extension points handling - added method to remove these ↵Mateusz Biliński
from PluginManager (memory optimization). Removed logging from most of the code.
2008-06-19Added GajimPluginConfigDialog class - dialog that plugins should use to ↵Mateusz Biliński
present configuration to user. Now, 'Configure' button is invoked only for plug-ins that have config_dialog.
2008-06-19Added new 'init' method to Plugin class that plugins can implement to make ↵Mateusz Biliński
actions that need to be done only once - when plugin is added (not activated) to Gajim. In this method plugins should declare handlers for GUI extension points. This was created so that __init__ method doesn't have to be reimplemented in specific way (create config, load config) - it is all done by __init__ in Plugin class. If __init__ is reimplemented, it must call Plugin __init__ (eg. using super() ) to plugin work properly. Example plug-ins were modified to use init() instead of __init__(). Added new category in configuration - 'plugins'. It only holds one option for each plugin - 'active', which determines whether plugin should be activated on startup. Now, Gajim remembers which plugins are active on exit, and activates them on next startup.
2008-06-14Plugin can be a package (directory) now. Added example plugin that modifies ↵Mateusz Biliński
roster window (with glade file). Added activate and deactivate methods to Plugin (used in forementioned RosterButtonsPlugin).