# HG changeset patch # User Richard Laager # Date 1136192512 0 # Node ID 2e4e02b72e438bcc33407c181314f792bde6faf4 # Parent 41cf9be297545e4c4203b885e60750e559df8194 [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 diff -r 41cf9be29754 -r 2e4e02b72e43 COPYRIGHT --- 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 diff -r 41cf9be29754 -r 2e4e02b72e43 src/gaim-remote.py --- 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)