Author Topic: [SOLVED] Pidgin - Browser  (Read 653 times)

Online Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10665
  • MLUs Forever!
[SOLVED] Pidgin - Browser
« on: November 21, 2011, 10:41:27 AM »
Is there a simple means of directing Pidgin to use a specific browser to open links/videos/etc that are sent in an IM?

Thanks.


EDIT

ANS:
            Use the manual entry in Preferences - Browser rather than a selection from the drop-down box.
« Last Edit: November 21, 2011, 12:41:54 PM by Just18 »
MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Offline AS

  • Hero Member
  • *****
  • Posts: 4111
  • Have a nice ... night!
Re: Pidgin - Browser
« Reply #1 on: November 21, 2011, 10:48:07 AM »
Is there a simple means of directing Pidgin to use a specific browser to open links/videos/etc that are sent in an IM?

Thanks.

In Pidgin -> Tools -> Preferences you can choose Browser = [FF | Chromium | ... ]  and Open link in [ Browser default ]

Can work for you ?

AS

Online Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10665
  • MLUs Forever!
Re: Pidgin - Browser
« Reply #2 on: November 21, 2011, 11:01:00 AM »
Is there a simple means of directing Pidgin to use a specific browser to open links/videos/etc that are sent in an IM?

Thanks.

In Pidgin -> Tools -> Preferences you can choose Browser = [FF | Chromium | ... ]  and Open link in [ Browser default ]

Can work for you ?

AS

Browser is presently set as konqueror, but everything opens in Firefox .......  and I want to arrange it so everything opens in Iron  :D

I will try putting in a manual command to see if something will change .....  but it should be opening Konqueror at present and it is not.

Thanks  ;)

EDIT:
             Using Manual it now launches Iron Browser ......  thanks  ;)

But it does not open the link ......   what should be used after the command to open the link clicked? ......  have tries  %s .....  but doesn't seem to work .....
« Last Edit: November 21, 2011, 12:11:04 PM by Just18 »
MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Online Old-Polack

  • Administrator
  • Super Villain
  • *****
  • Posts: 11589
  • ----IOFLU----
Re: Pidgin - Browser
« Reply #3 on: November 21, 2011, 12:30:56 PM »
Just18:

I have mine set to Opera, and Open link in: Browser default. It works as expected for me.
Old-Polack

Of what use be there for joy, if not for the sharing thereof?



Lest we forget...

Online Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10665
  • MLUs Forever!
Re: Pidgin - Browser
« Reply #4 on: November 21, 2011, 12:36:39 PM »
For some reason here it does not work as anticipated.

I don't have Opera ......  I do have Konqueror and Firefox and Iron ......  the first two are listed in the drop-down box.

Have you tried a non-default browser?

Konqueror does not launch if selected there.

If I use the manual box Konqueror does launch as expected.

Iron launches also ......  but does not open the URL ......  I get the default page!

I have tried various commands to no avail.

I then notice that the same behaviour is exhibited by Iron when clicking links from anywhere, so the Iron problem is a separate thing.

I can mark the original problem solved ......  it now launches Iron, although for some reason it is not in the drop-down box, and Konqueror does not launch from there anyway, so probably Iron wouldn't even if it was there.

Regards.
MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Online Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10665
  • MLUs Forever!
Re: Pidgin - Browser
« Reply #5 on: November 21, 2011, 12:39:27 PM »
AS has passed me something to try ........  and it has worked!    ......  in all situations ...

I changed the command to the following ....

/usr/lib/iron-browser/iron %s

Now the URL opens in the browser when a link is clicked on -- in all situations I have tried.

So I have edited the menu entry for Iron and all is good


Thanks AS  ;)

MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT

Offline AS

  • Hero Member
  • *****
  • Posts: 4111
  • Have a nice ... night!
Re: Pidgin - Browser
« Reply #6 on: November 21, 2011, 12:44:32 PM »
You are welcome!  ;)

The problem with iron is that iron-browser is a shell script:

iron-browser:
Quote
#!/bin/sh
cd /usr/lib/iron-browser
exec ./iron

Although some parameter is passed to ' iron-browser ', this is actually ignored from the script  :(
Either it is possible to use the real binary: /usr/lib/iron-browser/iron [ URL ] or the script should be changed to process the arguments, as follow:
Quote
#!/bin/sh
cd /usr/lib/iron-browser
exec ./iron $*

AS

Online Just17

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 10665
  • MLUs Forever!
Re: [SOLVED] Pidgin - Browser
« Reply #7 on: November 21, 2011, 12:49:09 PM »
Thanks for the explanation ;)
MLUs rule the roost!

Linux XPS 3.4.38-pclos1.bfs  64 bit
Intel Core2 Quad CPU Q9450 @ 2.66GHz
4 GB RAM
MCP51 High Def Audio
GeForce GTX 550 Ti
PHILIPS  ‎DVD+-RW DVD8701
‎Logitech ‎BT Mini-Receiver
Afatech DTT