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

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appindicator_integration/manifest.ini2
-rw-r--r--appindicator_integration/plugin.py7
-rw-r--r--banner_tweaks/plugin.py7
-rw-r--r--chatstate/chatstate.py9
-rw-r--r--chatstate/manifest.ini4
-rw-r--r--clients_icons/clients_icons.py3
-rw-r--r--clients_icons/manifest.ini4
-rw-r--r--gotr/manifest.ini2
-rw-r--r--gotr/otrmodule.py3
-rw-r--r--hamster/hamster.py7
-rw-r--r--hamster/manifest.ini6
-rw-r--r--image/image.py7
-rw-r--r--image/manifest.ini4
-rw-r--r--juick/manifest.ini2
-rw-r--r--juick/plugin.py2
-rw-r--r--latex/manifest.ini2
-rw-r--r--offline_bookmarks/manifest.ini2
-rw-r--r--offline_bookmarks/offline_bookmarks.py2
-rw-r--r--quick_replies/plugin.py2
-rw-r--r--regex_filter/regex_filter.py2
-rw-r--r--roster_tweaks/manifest.ini6
-rw-r--r--roster_tweaks/roster_tweaks.py9
-rw-r--r--server_status_icons/manifest.ini3
-rw-r--r--set_location/manifest.ini2
-rw-r--r--set_location/set_location.py2
-rw-r--r--snarl_notifications/manifest.ini5
-rw-r--r--snarl_notifications/plugin.py9
-rw-r--r--tictactoe/manifest.ini2
-rw-r--r--ubuntu_integration/manifest.ini6
-rw-r--r--ubuntu_integration/plugin.py4
-rw-r--r--url_image_preview/manifest.ini3
-rw-r--r--url_image_preview/url_image_preview.py6
-rw-r--r--url_shortener/manifest.ini10
-rw-r--r--url_shortener/url_shortener.py13
-rw-r--r--wicd_support/manifest.ini2
-rw-r--r--wicd_support/wicd_support.py2
-rw-r--r--wrong_layout/manifest.ini2
-rw-r--r--wrong_layout/plugin.py2
38 files changed, 83 insertions, 84 deletions
diff --git a/appindicator_integration/manifest.ini b/appindicator_integration/manifest.ini
index bb78722..5578da9 100644
--- a/appindicator_integration/manifest.ini
+++ b/appindicator_integration/manifest.ini
@@ -2,7 +2,7 @@
name: Appindicator integration
short_name: appindicator_integration
version: 0.1.5
-description: This plugin integrates Gajim with the appindicator. You must have python-appindicator (and Gajim obviously) installed to enable this plugin.
+description: This plugin integrates Gajim with the appindicator. You must have python-appindicator (and Gajim obviously) installed to enable this plugin.<br/>
Rewriten from Ubuntu Ayatana Integration plugin
homepage: http://trac-plugins.gajim.org/wiki/AppindicatorSupportPlugin
authors: Denis Borenko <borenko@rambler.ru>
diff --git a/appindicator_integration/plugin.py b/appindicator_integration/plugin.py
index 9b5b76d..2de69d6 100644
--- a/appindicator_integration/plugin.py
+++ b/appindicator_integration/plugin.py
@@ -28,7 +28,7 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
@log_calls("AppindicatorIntegrationPlugin")
def init(self):
- self.description = _('This plugin integrates Gajim with the appindicator.\n'
+ self.description = _('This plugin integrates Gajim with the appindicator.<br/>'
'You must have python-appindicator (and Gajim obviously) '
'installed to enable this plugin.\n')
self.config_dialog = None
@@ -40,8 +40,7 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
self.available_text = ''
if not appindicator:
self.activatable = False
- self.available_text += _('\n\n Error: python-appindicator is missing! \n'
- 'Please install it.\n')
+ self.available_text += _('<br/><br/> Error: python-appindicator is missing!<br/>Please install it.')
@log_calls("AppindicatorIntegrationPlugin")
def activate(self):
@@ -217,4 +216,4 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
self.event_raise, self.events[key]['events'][-1])
if len(self.events) == 0:
self.event_separator.hide()
- self.indicator.set_status(appindicator.STATUS_ACTIVE) \ No newline at end of file
+ self.indicator.set_status(appindicator.STATUS_ACTIVE)
diff --git a/banner_tweaks/plugin.py b/banner_tweaks/plugin.py
index 6439dd5..e252099 100644
--- a/banner_tweaks/plugin.py
+++ b/banner_tweaks/plugin.py
@@ -46,9 +46,10 @@ class BannerTweaksPlugin(GajimPlugin):
@log_calls('BannerTweaksPlugin')
def init(self):
self.description = _('Allows user to tweak chat window banner '
- 'appearance (eg. make it compact).\n'
- 'Based on patch by pb in ticket #4133:\n'
- 'http://trac.gajim.org/attachment/ticket/4133.')
+ 'appearance (eg. make it compact).<br/>'
+ 'Based on patch by pb in '
+ '<a href="http://trac.gajim.org/attachment/ticket/4133">ticket '
+ '#4133</a>.')
self.config_dialog = BannerTweaksPluginConfigDialog(self)
self.gui_extension_points = {
diff --git a/chatstate/chatstate.py b/chatstate/chatstate.py
index 274c6b7..64db695 100644
--- a/chatstate/chatstate.py
+++ b/chatstate/chatstate.py
@@ -31,10 +31,11 @@ class ChatstatePlugin(GajimPlugin):
@log_calls('ChatstatePlugin')
def init(self):
- self.description = _('Chat State Notifications in roster.'
-'Font color of the contact varies depending on the chat state.\n'
-'The plugin does not work if you use custom font color for contacts in roster.\n'
-'http://trac.gajim.org/ticket/3628.\nhttp://xmpp.org/extensions/xep-0085.html')
+ self.description = _('Chat State Notifications in roster.<br/>'
+'Font color of the contact varies depending on the chat state.<br/>'
+'The plugin does not work if you use custom font color for contacts in roster.'
+'<br/>See <a href="http://trac.gajim.org/ticket/3628">ticket #3628</a> and '
+'<a href="http://xmpp.org/extensions/xep-0085.html">XEP-0085</a>.')
self.config_dialog = None # ChatstatePluginConfigDialog(self)
self.events_handlers = {'chatstate-received':
(ged.GUI2, self.chatstate_received), }
diff --git a/chatstate/manifest.ini b/chatstate/manifest.ini
index b87b320..e615073 100644
--- a/chatstate/manifest.ini
+++ b/chatstate/manifest.ini
@@ -2,8 +2,8 @@
name: Chatstate in roster
short_name: chatstate
version: 0.5.2
-description: Chat State Notifications in roster.
- Font color of the contact varies depending on the chat state.
+description: Chat State Notifications in roster.<br/>
+ Font color of the contact varies depending on the chat state.<br/>
The plugin does not work if you use custom font color for contacts in roster.
authors = Denis Fomin <fominde@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki/ChatstatePlugin
diff --git a/clients_icons/clients_icons.py b/clients_icons/clients_icons.py
index 96019fe..25444aa 100644
--- a/clients_icons/clients_icons.py
+++ b/clients_icons/clients_icons.py
@@ -164,8 +164,7 @@ class ClientsIconsPlugin(GajimPlugin):
@log_calls('ClientsIconsPlugin')
def init(self):
self.description = _('Shows the client icons in the roster'
- ' and in groupchats.\nFor icons in tooltip support, '
- 'you need to install Gajim r14117 or above.')
+ ' and in groupchats.')
self.pos_list = [_('after statusicon'), _('before avatar')]
self.events_handlers = {'presence-received':
(ged.POSTGUI, self.presence_received),
diff --git a/clients_icons/manifest.ini b/clients_icons/manifest.ini
index 0bce1a0..f64351c 100644
--- a/clients_icons/manifest.ini
+++ b/clients_icons/manifest.ini
@@ -2,9 +2,7 @@
name: Clients icons
short_name: clients_icons
version: 4.5
-description: Shows the client icons in the roster
- and in groupchats.
- For icons in tooltip support, you need to install Gajim r14117 or above.
+description: Shows the client icons in the roster and in groupchats.
authors: Denis Fomin <fominde@gmail.com>
Artem Klyop <art.klyop@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki/ClientsIconsPlugin
diff --git a/gotr/manifest.ini b/gotr/manifest.ini
index c778037..6eae12b 100644
--- a/gotr/manifest.ini
+++ b/gotr/manifest.ini
@@ -2,7 +2,7 @@
name: Off-The-Record Encryption
short_name: gotr
version: 1.7.5
-description: Provide OTR encryption
+description: Provide OTR encryption. See <a href="http://www.cypherpunks.ca/otr/">Author website</a>
authors: Kjell Braden <afflux.gajim@pentabarf.de>
homepage: http://gajim-otr.pentabarf.de
max_gajim_version: 0.16.9
diff --git a/gotr/otrmodule.py b/gotr/otrmodule.py
index 2d99ad7..1526421 100644
--- a/gotr/otrmodule.py
+++ b/gotr/otrmodule.py
@@ -258,7 +258,8 @@ class OtrPlugin(GajimPlugin):
otr = None
def init(self):
- self.description = _('See http://www.cypherpunks.ca/otr/')
+ self.description = _('Provide OTR encryption. See <a href='
+ '"http://www.cypherpunks.ca/otr/">Author website</a>')
self.us = {}
diff --git a/hamster/hamster.py b/hamster/hamster.py
index 3daff27..8ff58f2 100644
--- a/hamster/hamster.py
+++ b/hamster/hamster.py
@@ -25,9 +25,10 @@ class HamsterIntegrationPlugin(GajimPlugin):
@log_calls('HamsterIntegrationPlugin')
def init(self):
- self.description = _('Integration with project hamster\n'
- 'see https://trac.gajim.org/ticket/6993\n'
- 'and http://projecthamster.wordpress.com/about/')
+ self.description = _('Integration with project hamster<br/>'
+ 'see <a href="https://trac.gajim.org/ticket/6993">ticket #6993</a>'
+ 'and <a href="http://projecthamster.wordpress.com/about/">hamster '
+ 'project</a>')
self.config_dialog = None
self.events_handlers = {}
if os.name == 'nt':
diff --git a/hamster/manifest.ini b/hamster/manifest.ini
index 1f80b29..126991a 100644
--- a/hamster/manifest.ini
+++ b/hamster/manifest.ini
@@ -2,9 +2,9 @@
name: Hamster integration
short_name: hamster_integration
version: 0.1.3
-description: Integration with project hamster
- see https://trac.gajim.org/ticket/6993
- and http://projecthamster.wordpress.com/about/
+description: Integration with project hamster<br/>
+ see see <a href="https://trac.gajim.org/ticket/6993">ticket #6993</a>
+ and <a href="http://projecthamster.wordpress.com/about/">hamster project</a>
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/
max_gajim_version: 0.16.9
diff --git a/image/image.py b/image/image.py
index 96f7170..87ee707 100644
--- a/image/image.py
+++ b/image/image.py
@@ -17,9 +17,10 @@ class ImagePlugin(GajimPlugin):
@log_calls('ImagePlugin')
def init(self):
self.description = _('This plugin is designed to send '
- 'a small(0 - 40 kb) graphic image to your contact.\n'
- 'Client on the other side must support XEP-0071: XHTML-IM'
- ' and maintain the scheme data: URI.\n'
+ 'a small(0 - 40 kb) graphic image to your contact.<br/>'
+ 'Client on the other side must support <a href='
+ '"http://xmpp.org/extensions/xep-0071.html">XEP-0071: XHTML-IM</a>'
+ ' and maintain the scheme data: URI.<br/>'
'Psi+ and Jabbim supported this.')
self.config_dialog = None # ImagePluginConfigDialog(self)
self.controls = []
diff --git a/image/manifest.ini b/image/manifest.ini
index d8a0b2b..e2de523 100644
--- a/image/manifest.ini
+++ b/image/manifest.ini
@@ -2,8 +2,8 @@
name: Image
short_name: image
version: 0.5.1
-description: This plugin is designed to send a small(0 - 40 kb) graphic image to your contact.
- Client on the other side must support XEP-0071: XHTML-IM and maintain the scheme data: URI.
+description: This plugin is designed to send a small(0 - 40 kb) graphic image to your contact.<br/>
+ Client on the other side must support <a href="http://xmpp.org/extensions/xep-0071.html">XEP-0071: XHTML-IM</a> and maintain the scheme data: URI.<br/>
Psi+ and Jabbim supported this.
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/ImagePlugin
diff --git a/juick/manifest.ini b/juick/manifest.ini
index 42a9fca..0e8a160 100644
--- a/juick/manifest.ini
+++ b/juick/manifest.ini
@@ -2,7 +2,7 @@
name: Juick
short_name: Juick
version: 0.9.5
-description: Clickable Juick links , Juick nicks, preview Juick picturs.
+description: Clickable Juick links , Juick nicks, preview Juick picturs.<br/>
The key combination alt + up in the textbox allow insert the number of last message (comment or topic).
authors: Denis Fomin <fominde@gmail.com>
evgen <drujebober@gmail.com>
diff --git a/juick/plugin.py b/juick/plugin.py
index ca551f1..1ad76e7 100644
--- a/juick/plugin.py
+++ b/juick/plugin.py
@@ -32,7 +32,7 @@ class JuickPlugin(GajimPlugin):
@log_calls('JuickPlugin')
def init(self):
self.description = _('Clickable Juick links , Juick nicks, '
- 'preview Juick picturs.\nThe key combination alt + up in the '
+ 'preview Juick picturs.<br/>The key combination alt + up in the '
'textbox allow insert the number of last message '
'(comment or topic).')
self.config_dialog = JuickPluginConfigDialog(self)
diff --git a/latex/manifest.ini b/latex/manifest.ini
index 100ae53..7e7c4db 100644
--- a/latex/manifest.ini
+++ b/latex/manifest.ini
@@ -2,7 +2,7 @@
name: Latex
short_name: latex
version: 0.2.2
-description: render received latex code
+description: Invoke Latex to render $$foobar$$ sourrounded Latex equations. Needs latex and dvipng or ImageMagick.
authors: Yves Fischer <yvesf@xapek.org>
Yann Leboulanger <asterix@lagaule.org>
homepage: http://trac-plugins.gajim.org/wiki/LatexPlugin
diff --git a/offline_bookmarks/manifest.ini b/offline_bookmarks/manifest.ini
index d9e776d..0b9e829 100644
--- a/offline_bookmarks/manifest.ini
+++ b/offline_bookmarks/manifest.ini
@@ -2,7 +2,7 @@
name: Offline Bookmarks
short_name: offline_bookmarks
version: 0.2.1
-description: Saving bookmarks inside the plugin configuration file. Allows the use of locally stored bookmarks if the server does not support the storage of bookmarks (eg talk.google.com).
+description: Saving bookmarks inside the plugin configuration file. Allows the use of locally stored bookmarks if the server does not support the storage of bookmarks (eg talk.google.com).<br/>
Support to import bookmarks from one account to another.
authors = Denis Fomin <fominde@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki/OfflineBookmarksPlugin
diff --git a/offline_bookmarks/offline_bookmarks.py b/offline_bookmarks/offline_bookmarks.py
index ed5bda3..bcdcde2 100644
--- a/offline_bookmarks/offline_bookmarks.py
+++ b/offline_bookmarks/offline_bookmarks.py
@@ -19,7 +19,7 @@ class OfflineBookmarksPlugin(GajimPlugin):
def init(self):
self.description = _('Saving bookmarks inside the plugin configuration '
'file. Allows the use of locally stored bookmarks if the server '
- 'does not support the storage of bookmarks (eg talk.google.com).\n'
+ 'does not support the storage of bookmarks (eg talk.google.com).<br/>'
'Support to import bookmarks from one account to another.')
self.events_handlers = {
diff --git a/quick_replies/plugin.py b/quick_replies/plugin.py
index e146474..e866d98 100644
--- a/quick_replies/plugin.py
+++ b/quick_replies/plugin.py
@@ -12,7 +12,7 @@ class QuickRepliesPlugin(GajimPlugin):
@log_calls('QuickRepliesPlugin')
def init(self):
- self.description = _('Plugin for quick replies')
+ self.description = _('Plugin for quick insert template message and add your own template messages')
self.config_dialog = QuickRepliesPluginConfigDialog(self)
self.chat_control = None
self.gui_extension_points = {
diff --git a/regex_filter/regex_filter.py b/regex_filter/regex_filter.py
index 69e19dd..b25130d 100644
--- a/regex_filter/regex_filter.py
+++ b/regex_filter/regex_filter.py
@@ -38,7 +38,7 @@ class RegexFilterPlugin(GajimPlugin):
@log_calls('RegexFilterPlugin')
def init(self):
- self.description = _('Regex Filter Plugin.')
+ self.description = _('Filter incoming messages using regex.')
self.config_dialog = None
self.events_handlers = {
diff --git a/roster_tweaks/manifest.ini b/roster_tweaks/manifest.ini
index 015c42b..2f9928f 100644
--- a/roster_tweaks/manifest.ini
+++ b/roster_tweaks/manifest.ini
@@ -2,8 +2,10 @@
name: Roster Tweaks
short_name: roster_tweaks
version: 0.6.3
-description: Allows user to tweak roster window appearance (eg. make it compact).
- Added ability to quickly change the status message to all connected accounts.
+description: Allows user to tweak roster window appearance (eg. make it compact).<br/>
+ Based on <a href="http://trac.gajim.org/ticket/3340">ticket #3340</a>.<br/>
+ Added ability to quickly change the status message to all connected accounts.<br/>
+ Based on <a href="http://trac.gajim.org/ticket/5085">ticket #5085</a>.
authors = Denis Fomin <fominde@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki/RosterTweaksPlugin
max_gajim_version: 0.16.9
diff --git a/roster_tweaks/roster_tweaks.py b/roster_tweaks/roster_tweaks.py
index 20ac8b3..d83722f 100644
--- a/roster_tweaks/roster_tweaks.py
+++ b/roster_tweaks/roster_tweaks.py
@@ -17,12 +17,11 @@ class RosterTweaksPlugin(GajimPlugin):
@log_calls('RosterTweaksPlugin')
def init(self):
self.description = _('Allows user to tweak roster window appearance '
- '(eg. make it compact).\nBased on ticket #3340:\n'
- 'http://trac.gajim.org/ticket/3340.\n'
+ '(eg. make it compact).<br/>Based on <a href='
+ '"http://trac.gajim.org/ticket/3340">ticket #3340</a>.<br/>'
'Added ability to quickly change the status message '
- 'to all connected accounts.\n'
- 'Based on ticket #5085:\n'
- 'http://trac.gajim.org/ticket/5085.')
+ 'to all connected accounts.<br/>Based on <a href='
+ '"http://trac.gajim.org/ticket/5085">ticket #5085</a>.')
self.config_default_values = {'hide_status_combo': (False, ''),
'use_ctr_m': (False, ''),
'menu_visible': (True, ''),
diff --git a/server_status_icons/manifest.ini b/server_status_icons/manifest.ini
index 645b489..eb7fc6e 100644
--- a/server_status_icons/manifest.ini
+++ b/server_status_icons/manifest.ini
@@ -2,8 +2,7 @@
name: Server Status Icons
short_name: server_status_icons
version: 0.1.3
-description: Replace standard Gajim status icons with server
- specific for known XMPP server accounts (vk.com, ...)
+description: Replace standard Gajim status icons with server specific for known XMPP server accounts (vk.com, ...)
authors = Denis Fomin <fominde@gmail.com>
Pavel Suslov
homepage = http://trac-plugins.gajim.org/wiki/ServerStatusIconsPlugin
diff --git a/set_location/manifest.ini b/set_location/manifest.ini
index ec3d71f..1ab059f 100644
--- a/set_location/manifest.ini
+++ b/set_location/manifest.ini
@@ -2,7 +2,7 @@
name: Set Location
short_name: set_location
version: 0.7.2
-description: Set information about the current geographical or physical location.
+description: Set information about the current geographical or physical location.<br/>
To be able to specify a location on the built-in card, you must install python-osmgpsmap > 0.5
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/SetLocalitionPlugin
diff --git a/set_location/set_location.py b/set_location/set_location.py
index 1111cb9..8b240e9 100644
--- a/set_location/set_location.py
+++ b/set_location/set_location.py
@@ -19,7 +19,7 @@ class SetLocationPlugin(GajimPlugin):
@log_calls('SetLocationPlugin')
def init(self):
self.description = _('Set information about the current geographical '
- 'or physical location.\n'
+ 'or physical location.<br/>'
'To be able to specify a location on the built-in card, '
'you must install python-osmgpsmap > 0.5')
self.config_dialog = SetLocationPluginConfigDialog(self)
diff --git a/snarl_notifications/manifest.ini b/snarl_notifications/manifest.ini
index 1ea1544..794fc78 100644
--- a/snarl_notifications/manifest.ini
+++ b/snarl_notifications/manifest.ini
@@ -2,8 +2,9 @@
name: Snarl Notifications
short_name: snarl_notifications
version: 0.1.2
-description: Shows events notification using Snarl (http://www.fullphat.net/) under Windows. Snarl needs to be installed in system.
- PySnarl bindings are used (http://sourceforge.net/projects/pysnarl/).
+description: Shows events notification using <a href="http://www.fullphat.net/">Snarl</a> under Windows.
+ Snarl needs to be installed in system.<br/>'
+ <a href="http://code.google.com/p/pysnarl/">PySnarl bindings</a> are used.
authors = Yann Leboulanger <asterix@lagaule.org>
homepage = http://trac-plugins.gajim.org/wiki/SnarlNotificationsPlugin
max_gajim_version: 0.16.9
diff --git a/snarl_notifications/plugin.py b/snarl_notifications/plugin.py
index 659fdf3..1748373 100644
--- a/snarl_notifications/plugin.py
+++ b/snarl_notifications/plugin.py
@@ -44,10 +44,11 @@ class SnarlNotificationsPlugin(GajimPlugin):
@log_calls('SnarlNotificationsPlugin')
def init(self):
- self.description = _('Shows events notification using Snarl '
- '(http://www.fullphat.net/) under Windows. '
- 'Snarl needs to be installed in system.\n'
- 'PySnarl bindings are used (http://code.google.com/p/pysnarl/).')
+ self.description = _('Shows events notification using <a href='
+ '"http://www.fullphat.net/">Snarl</a> under Windows. '
+ 'Snarl needs to be installed in system.<br/>'
+ '<a href="http://code.google.com/p/pysnarl/">PySnarl bindings</a> '
+ 'are used.')
self.config_dialog = None
self.h = SnarlActionHandler
self.snarl_win = pySnarl.SnarlApp(
diff --git a/tictactoe/manifest.ini b/tictactoe/manifest.ini
index a2113a2..d0debd2 100644
--- a/tictactoe/manifest.ini
+++ b/tictactoe/manifest.ini
@@ -2,7 +2,7 @@
name: Tic tac toe
short_name: Tic tac toe
version: 0.2.3
-description: Play tic tac toe
+description: Play Tictactoe.
authors = Yann Leboulanger <asterix@lagaule.org>
homepage = http://trac-plugins.gajim.org/wiki/TictactoePlugin
max_gajim_version: 0.16.9
diff --git a/ubuntu_integration/manifest.ini b/ubuntu_integration/manifest.ini
index c72caa3..c3fa599 100644
--- a/ubuntu_integration/manifest.ini
+++ b/ubuntu_integration/manifest.ini
@@ -2,10 +2,8 @@
name: Ubuntu Ayatana Integration
short_name: ubuntu_integration
version: 0.1.4
-description: This plugin integrates Gajim with the Ubuntu Messaging Menu.
-
- You must have python-indicate and python-xdg (and Gajim obviously) installed to enable this plugin.
-
+description: This plugin integrates Gajim with the Ubuntu Messaging Menu.<br/><br/>
+ You must have python-indicate and python-xdg (and Gajim obviously) installed to enable this plugin.<br/><br/>
Many thanks to the guys from gajim@conference.gajim.org for answering my questions :)
authors: Michael Kainer <kaini@linuxlovers.at>
homepage: http://trac-plugins.gajim.org/wiki/UbuntuIntegrationPlugin
diff --git a/ubuntu_integration/plugin.py b/ubuntu_integration/plugin.py
index 185e8d9..5fb22a6 100644
--- a/ubuntu_integration/plugin.py
+++ b/ubuntu_integration/plugin.py
@@ -43,9 +43,9 @@ class UbuntuIntegrationPlugin(GajimPlugin):
Does nothing.
"""
self.description = _('This plugin integrates Gajim '
- 'with the Ubuntu Messaging Menu.\n\n'
+ 'with the Ubuntu Messaging Menu.<br/><br/>'
'You must have python-indicate and python-xdg (and Gajim obviously)'
- ' installed to enable this plugin.\n\n'
+ ' installed to enable this plugin.<br/><br/>'
'Many thanks to the guys from gajim@conference.gajim.org for '
'answering my questions :)')
self.config_dialog = None
diff --git a/url_image_preview/manifest.ini b/url_image_preview/manifest.ini
index 5f1f3ab..0960ae6 100644
--- a/url_image_preview/manifest.ini
+++ b/url_image_preview/manifest.ini
@@ -2,7 +2,8 @@
name: Url image preview
short_name: url_image_preview
version: 0.5.3
-description: Url image preview in chatbox.
+description: Url image preview in chatbox.<br/>
+ Based on patch in <a href="http://trac.gajim.org/attachment/ticket/5300">ticket #5300</a>.
authors = Denis Fomin <fominde@gmail.com>
Yann Leboulanger <asterix@lagaule.org>
homepage = http://trac-plugins.gajim.org/wiki/UrlImagePreviewPlugin
diff --git a/url_image_preview/url_image_preview.py b/url_image_preview/url_image_preview.py
index 329d6f3..7b8c7ea 100644
--- a/url_image_preview/url_image_preview.py
+++ b/url_image_preview/url_image_preview.py
@@ -17,9 +17,9 @@ EXTENSIONS = ('.png','.jpg','.jpeg','.gif','.raw','.svg')
class UrlImagePreviewPlugin(GajimPlugin):
@log_calls('UrlImagePreviewPlugin')
def init(self):
- self.description = _('Url image preview in chatbox.\n'
- 'Based on patch in ticket #5300:\n'
- 'http://trac.gajim.org/attachment/ticket/5300.')
+ self.description = _('Url image preview in chatbox.<br/>'
+ 'Based on patch in <a href='
+ '"http://trac.gajim.org/attachment/ticket/5300">ticket #5300</a>.')
self.config_dialog = UrlImagePreviewPluginConfigDialog(self)
self.gui_extension_points = {
'chat_control_base': (self.connect_with_chat_control,
diff --git a/url_shortener/manifest.ini b/url_shortener/manifest.ini
index 90a1183..ed61ccf 100644
--- a/url_shortener/manifest.ini
+++ b/url_shortener/manifest.ini
@@ -2,11 +2,11 @@
name: Url Shortener
short_name: url_shortener
version: 0.3.3
-description: Plugin that allows users to shorten a long URL in messages.
- For example, you can turn this link:
- http://maps.google.com/maps?f=d&saddr=New+York+Penn+Station&daddr=9th+Ave+%26+14th+St,+New+York,+NY&hl=en&geocode=&mra=ls&dirflg=r&date=11%2F12%2F08&time=4:13pm&ttype=dep&noexp=0&noal=0&sort=&sll=40.746175,-73.998395&sspn=0.014468,0.036392&ie=UTF8&z=14
- Into this link:
- http://bit.ly/CUjV
+description: Plugin that allows users to shorten a long URL in messages.<br/>
+ For example, you can turn this link:<br/>
+ <a href="http://maps.google.com/maps?f=d&amp;saddr=New+York+Penn+Station&amp;daddr=9th+Ave+%26+14th+St,+New+York,+NY&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=r&amp;date=11%2F12%2F08&amp;time=4:13pm&amp;ttype=dep&amp;noexp=0&amp;noal=0&amp;sort=&amp;sll=40.746175,-73.998395&amp;sspn=0.014468,0.036392&amp;ie=UTF8&amp;z=14">http://maps.google.com/maps?f=d&amp;saddr=New+York+Penn+Station&amp;daddr=9th+Ave+%26+14th+St,+New+York,+NY&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=r&amp;date=11%2F12%2F08&amp;time=4:13pm&amp;ttype=dep&amp;noexp=0&amp;noal=0&amp;sort=&amp;sll=40.746175,-73.998395&amp;sspn=0.014468,0.036392&amp;ie=UTF8&amp;z=14</a><br/>
+ Into this link:<br/>
+ <a href="http://bit.ly/CUjV">http://bit.ly/CUjV</a>
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/UrlShortenerPlugin
max_gajim_version: 0.16.9
diff --git a/url_shortener/url_shortener.py b/url_shortener/url_shortener.py
index 0e0c9f6..4a74f10 100644
--- a/url_shortener/url_shortener.py
+++ b/url_shortener/url_shortener.py
@@ -17,14 +17,11 @@ class UrlShortenerPlugin(GajimPlugin):
@log_calls('UrlShortenerPlugin')
def init(self):
self.description = _('Plugin that allows users to shorten a long URL '
- 'in received messages.\n'
- 'For example, you can turn this link:\n'
- 'http://maps.google.com/maps?f=d&saddr=New+York+Penn+Station&daddr='
- '9th+Ave+%26+14th+St,+New+York,+NY&hl=en&geocode=&mra=ls&dirflg=r&date='
- '11%2F12%2F08&time=4:13pm&ttype=dep&noexp=0&noal=0&sort=&sll='
- '40.746175,-73.998395&sspn=0.014468,0.036392&ie=UTF8&z=14\n'
- 'Into this link:\n'
- 'http://bit.ly/CUjV')
+ 'in received messages.<br/>'
+ 'For example, you can turn this link:<br/>'
+ '<a href="%s">%s</a><br/>'
+ 'Into this link:<br/>'
+ '<a href="http://bit.ly/CUjV">http://bit.ly/CUjV</a>') % ('http://maps.google.com/maps?f=d&amp;saddr=New+York+Penn+Station&amp;daddr=9th+Ave+%26+14th+St,+New+York,+NY&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=r&amp;date=11%2F12%2F08&amp;time=4:13pm&amp;ttype=dep&amp;noexp=0&amp;noal=0&amp;sort=&amp;sll=40.746175,-73.998395&amp;sspn=0.014468,0.036392&amp;ie=UTF8&amp;z=14', 'http://maps.google.com/maps?f=d&amp;saddr=New+York+Penn+Station&amp;daddr=9th+Ave+%26+14th+St,+New+York,+NY&amp;hl=en&amp;geocode=&amp;mra=ls&amp;dirflg=r&amp;date=11%2F12%2F08&amp;time=4:13pm&amp;ttype=dep&amp;noexp=0&amp;noal=0&amp;sort=&amp;sll=40.746175,-73.998395&amp;sspn=0.014468,0.036392&amp;ie=UTF8&amp;z=14')
self.config_dialog = UrlShortenerPluginConfigDialog(self)
self.gui_extension_points = {
'chat_control_base': (self.connect_with_chat_control,
diff --git a/wicd_support/manifest.ini b/wicd_support/manifest.ini
index 6f0b8f9..8f1c044 100644
--- a/wicd_support/manifest.ini
+++ b/wicd_support/manifest.ini
@@ -2,7 +2,7 @@
name: Wicd support
short_name: wicd_support
version: 0.1.2
-description: Support for autodetection of network status for Wicd Network Manager.
+description: Support for autodetection of network status for Wicd Network Manager.<br/>
Requires wicd and python-dbus.
authors = Denis Fomin <fominde@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki/WicdSupportPlugin
diff --git a/wicd_support/wicd_support.py b/wicd_support/wicd_support.py
index f8ee86d..73a256b 100644
--- a/wicd_support/wicd_support.py
+++ b/wicd_support/wicd_support.py
@@ -13,7 +13,7 @@ class WicdPlugin(GajimPlugin):
@log_calls('WicdPlugin')
def init(self):
self.description = _('Support for autodetection of network status '
- 'for Wicd Network Manager.\nRequires wicd and python-dbus.')
+ 'for Wicd Network Manager.<br/>Requires wicd and python-dbus.')
self.config_dialog = None
self.test_activatable()
diff --git a/wrong_layout/manifest.ini b/wrong_layout/manifest.ini
index 5c12ee4..9a07e4f 100644
--- a/wrong_layout/manifest.ini
+++ b/wrong_layout/manifest.ini
@@ -2,7 +2,7 @@
name: Wrong Layout
short_name: Wrong Layout
version: 0.1.3
-description: Press alt+r to convert chars typed in wrong layout Rus<>Eng
+description: Press alt+r to convert chars typed in wrong layout Rus&lt;&gt;Eng
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/WrongLayoutPlugin
max_gajim_version: 0.16.9
diff --git a/wrong_layout/plugin.py b/wrong_layout/plugin.py
index e013db2..4edc243 100644
--- a/wrong_layout/plugin.py
+++ b/wrong_layout/plugin.py
@@ -12,7 +12,7 @@ class WrongLayoutPlugin(GajimPlugin):
@log_calls('WrongLayoutPlugin')
def init(self):
self.description = _('Press alt+r to convert chars typed in '
- 'wrong layout Rus<>Eng')
+ 'wrong layout Rus&lt;&gt;Eng')
self.config_dialog = None
self.gui_extension_points = {
'chat_control_base': (self.connect_with_chat_control,