Show
Ignore:
Timestamp:
06/07/08 19:28:34 (6 months ago)
Author:
vardo
Message:

Added first version of 'Plugins' window. It's accessible through 'Edit/Plugins' item in roster menu. It seems that you can successfully (de)activate plug-ins through GUI now.

Added 'homepage' attribute to Plugin class.

Added (commented out) calls of pycallgraph in src/gajim.py for later use.

[xbright] Changed 'python' to 'python2.5' because code uses modules not available in previous versions of Python.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/plugin-system/plugins/length_notifier.py

    r9754 r9762  
    3333 
    3434class LengthNotifierPlugin(GajimPlugin): 
    35         name = 'Message Length Notifier' 
    36         short_name = 'length_notifier' 
    37         version = '0.1' 
    38         description = '''Highlights message entry field in chat window when given  
    39 length of message is exceeded.''' 
    40         authors = ['Mateusz Biliński <mateusz@bilinski.it>'] 
     35        name = u'Message Length Notifier' 
     36        short_name = u'length_notifier' 
     37        version = u'0.1' 
     38        description = u'''Highlights message entry field in chat window when given length of message is exceeded.''' 
     39        authors = [u'Mateusz Biliński <mateusz@bilinski.it>'] 
     40        homepage = u'http://blog.bilinski.it' 
    4141 
    4242        @log_calls('LengthNotifierPlugin')