|
Thanks for providing HTML::Display. I know how to use it for IE on Windows, e.g.
#!perl -w
use LWP::Simple;
use HTML::Display;
$ENV{'PERL_HTML_DISPLAY_CLASS'}='HTML::Display::Win32::IE';
display get 'http://www.google.com/';
But I would like it to use my default browser, or specifically Firefox which is my default. (I hate to use anything by the Bill.) That is my feature request. The clue I offer that might be inspiring to you is that:
/cygdrive/c/Program\ Files/Mozilla\ Firefox/firefox.exe http://www.google.com
"works" in cygwin for firefox itself, and
rundll32 url.dll,FileProtocolHandler http://www.javaworld.com/
works in cygwin and CMD for the default browser,
and
"\Program Files\Mozilla Firefox\firefox.exe" http://www.google.com
works in CMD. They are not for a stream of HTML but a file, but is it a help?
|