Changeset 9762 for branches/plugin-system/src/plugins/plugin.py
- Timestamp:
- 06/07/08 19:28:34 (6 months ago)
- Files:
-
- 1 modified
-
branches/plugin-system/src/plugins/plugin.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin-system/src/plugins/plugin.py
r9745 r9762 31 31 Base class for implementing Gajim plugins. 32 32 ''' 33 name = ''33 name = u'' 34 34 ''' 35 35 Name of plugin. … … 39 39 :type: unicode 40 40 ''' 41 short_name = ''41 short_name = u'' 42 42 ''' 43 43 Short name of plugin. … … 50 50 module name) can act as such short name 51 51 ''' 52 version = ''52 version = u'' 53 53 ''' 54 54 Version of plugin. … … 62 62 one to be active - is such policy good? 63 63 ''' 64 description = ''64 description = u'' 65 65 ''' 66 66 Plugin description. … … 79 79 Especially: should we force format of giving author's e-mail? 80 80 ''' 81 homepage = u'' 82 ''' 83 URL to plug-in's homepage. 84 85 :type: unicode 86 87 :todo: should we check whether provided string is valid URI? (Maybe 88 using 'property') 89 ''' 81 90 gui_extension_points = {} 82 91 '''
