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:
authorDenis Fomin <fominde@gmail.com>2013-01-27 21:38:10 +0400
committerDenis Fomin <fominde@gmail.com>2013-01-27 21:38:10 +0400
commite3b08b6cb7401a367f0eddf6508769f145bc2134 (patch)
treea39a13d4619959b5599ab32c0d4ecb71aa936716 /url_shortener
parentf4ad05a45abb47d6cfc8566ee650e146b3c39c2e (diff)
PluginInstallerPlugin.gtk3 support
Diffstat (limited to 'url_shortener')
-rw-r--r--url_shortener/manifest.ini4
-rw-r--r--url_shortener/url_shortener.py7
2 files changed, 4 insertions, 7 deletions
diff --git a/url_shortener/manifest.ini b/url_shortener/manifest.ini
index a2beb4c..2057a70 100644
--- a/url_shortener/manifest.ini
+++ b/url_shortener/manifest.ini
@@ -4,9 +4,9 @@ short_name: url_shortener
version: 0.3.1
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
+ https://trac.gajim.org/timeline
Into this link:
- http://bit.ly/CUjV
+ http://bit.ly/THy6ZK
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/UrlShortenerPlugin
max_gajim_version: 0.15.9
diff --git a/url_shortener/url_shortener.py b/url_shortener/url_shortener.py
index 27683ae..bc7a1f3 100644
--- a/url_shortener/url_shortener.py
+++ b/url_shortener/url_shortener.py
@@ -19,12 +19,9 @@ class UrlShortenerPlugin(GajimPlugin):
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'
+ 'https://trac.gajim.org/timeline\n'
'Into this link:\n'
- 'http://bit.ly/CUjV')
+ 'http://bit.ly/THy6ZK')
self.config_dialog = UrlShortenerPluginConfigDialog(self)
self.gui_extension_points = {
'chat_control_base': (self.connect_with_chat_control,