Roger Oberholtzer wrote:
> On Wed, 30 Jan 2002 09:13:39 -0500
> Tim Wunder <[EMAIL PROTECTED]> wrote:
>
> | Roger Oberholtzer wrote:
> | > Has anyone tried this for Linux?
> | >
> | > http://www.musicmatch.com/home/
> | >
> | > It is CD/DVD ripper/burner software that claims to do alot.
> | >
> | > There is a Linux version. The basic version is a free (big) download.
> | > The pro costs a bit but seems to do alot.
> | >
> | > So, before I download, I thought I would ask.
> |
> | All I know about them is their website doesn't play nice with the
> | current Mozilla nightly I'm using.
>
> I still use 0.94 (or 0.91 - I can't remember and it is at home) and
> it worked fine. As this has usually been the case, I have not
> upgraded Mozilla for a while. Any suggestions as to the latest
> greatest version?
>
>
0.9.4 is the same base code as Netscape 6.2. For a more stable version
of the same code base, you could download 0.9.4.1 (Netscape 6.2.1), but
I believe you'd need to compile it. Moz is currently at 0.9.7, but 0.9.8
is very close... they're working on a few crasher bugs. There is a
significant performance boost with recent versions over 0.9.4. So, that
being said, wait a week and grab 0.9.8.
Regarding MusicMatch's web site, I believe they're pages have some
fancy-ass browser sniffing code that I don't completely understand that
causes the problem:
var isMac = (bP.indexOf("Mac") != -1) ? true : false;
var isPC = (bP.indexOf("Win") != -1) ? true : false;
var isLinux = (bP.indexOf("Linux") != -1) ? true : false;
var isIE4 = (bP.indexOf("MSIE 4") != -1) ? true : false;
var isIE45 = (bP.indexOf("MSIE 4.5") != -1) ? true : false;
var isNav3 = (bV == 3 && bN == "Netscape") ? true : false;
var isNav4 = (bV == 4 && bN == "Netscape") ? true : false;
var isNav6 = (bV > 4 && bN == "Netscape") ? true : false;
var isIE = (bN.indexOf("Microsoft") != -1) ? true : false;
var isDHTML = (bV > 3) ? true : false;
This is telling my untrained eye that they test for linux first and
present a different web page based on that, so it would make sense that
it works correctly under linux (I haven't tried it there, yet). It will
not work properly with the Mozilla nightly I'm currently using under
Win2K. I'm guessing that had I been using Netscape 6, it would work. My
problem could also be a bug in Mozilla. I'll persue that angle a little
further...
Regards,
Tim
_______________________________________________
Linux-users mailing list - http://linux.nf/mailman/listinfo/linux-users
Subscribe/Unsubscribe info, Archives,and Digests are located at the above URL.