changeset 12684:2e4e02b72e43

[gaim-migrate @ 15027] SF Patch #1393857 from Steve Cavilia 'This will make gaim-remote accept "aim" as a protocol name as an alias for "oscar," so the traditional aim:goim?... links will work' I also special-cased ICQ. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 02 Jan 2006 09:01:52 +0000
parents 41cf9be29754
children e9f279f0ef02
files COPYRIGHT src/gaim-remote.py
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/COPYRIGHT	Sun Jan 01 16:25:17 2006 +0000
+++ b/COPYRIGHT	Mon Jan 02 09:01:52 2006 +0000
@@ -39,6 +39,7 @@
 Sean Burke
 Thomas Butter
 Michael Carlson
+Steve Cavilia
 Julien Cegarra
 Cerulean Studios, LLC
 Jonathan Champ
--- a/src/gaim-remote.py	Sun Jan 01 16:25:17 2006 +0000
+++ b/src/gaim-remote.py	Mon Jan 02 09:01:52 2006 +0000
@@ -63,6 +63,8 @@
 def execute(uri):
     match = re.match(urlregexp, uri)
     protocol = match.group(2)
+    if protocol == "aim" or protocol == "icq":
+        protocol = "oscar"
     if protocol is not None:
         protocol = "prpl-" + protocol
     command = match.group(5)