473,387 Members | 1,569 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Mozilla and Netscape

I have a page up trying to learn how to ID a browser and other info.

http://wyght.com/warren/testPos.html

here is the code
<script type = "text/javascript">
var space = ", ";
var name = navigator.appName;
var codename = navigator.appCodeName;
var version = navigator.appVersion.substring(0,4);
var platform = navigator.platform;
var MyjavaEnabled = navigator.javaEnabled();
var screenWidth = screen.width;
var screenHeight = screen.height;

document.writeln("<BR>"+name+space+codename+space+ "<BR>");
document.writeln("<BR>"+version+space+platform+spa ce+"<BR>");
document.writeln("<BR>"+MyjavaEnabled+"<BR>"+scree nWidth+space+"<BR>");
document.writeln("<BR>"+screenHeight+space+"<BR>") ;
</script>

I can see no way of knowing if it is a firefox or netscape browser is that
posible?

Also, when I print out the var "codename" in IE 6 it says Mozilla. What is
up with that?

--

Totus possum, totum Deum.
Totus ero, totum meum.
WSW
Feb 6 '06 #1
10 2326
News wrote:
I have a page up trying to learn how to ID a browser and other info.
Except for (not very accurate) statistical gathering purposes, this
information shouldn't be of any practical use to you. If you are planning
to branch JavaScript based on what different browsers are capable of, then
you should look at the much more reliable object detection.
http://www.quirksmode.org/js/support.html
I can see no way of knowing if it is a firefox or netscape browser is that
posible?
Not reliably. These days there is little to choose between them anyway.
Also, when I print out the var "codename" in IE 6 it says Mozilla. What is
up with that?


Netscape had better JavaScript support then IE. People wrote scripts to
detect this. Microsoft brought out a new version of IE with better
JavaScript support and stuck Mozilla in the agent string so that those
scripts wouldn't ignore IE.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Feb 6 '06 #2
News said the following on 2/6/2006 4:59 PM:
I have a page up trying to learn how to ID a browser and other info.
Unless it is a purely academical exercise it is a waste of time.
http://wyght.com/warren/testPos.html
Error:
BrowserInfo is undefined

here is the code
That is not the code you have on the page you gave the URL to.

<script type = "text/javascript">
var space = ", ";
var name = navigator.appName;
var codename = navigator.appCodeName;
var version = navigator.appVersion.substring(0,4);
var platform = navigator.platform;
var MyjavaEnabled = navigator.javaEnabled();
var screenWidth = screen.width;
var screenHeight = screen.height;

document.writeln("<BR>"+name+space+codename+space+ "<BR>");
document.writeln("<BR>"+version+space+platform+spa ce+"<BR>");
document.writeln("<BR>"+MyjavaEnabled+"<BR>"+scree nWidth+space+"<BR>");
document.writeln("<BR>"+screenHeight+space+"<BR>") ;
</script>

I can see no way of knowing if it is a firefox or netscape browser is that
posible?
Probably not but it shouldn't matter unless this is a purely academical
exercise.
Also, when I print out the var "codename" in IE 6 it says Mozilla. What is
up with that?


It's for people who mistakenly think that anything in the navigator
object means anything and that includes Thomas Lahn. It's useless for
anything but an academic exercise.

For what it's worth, this is what one of my browsers gives for that code:

Netscape, Mozilla,
5.0 , Win32,

What browser is it?
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 6 '06 #3
"David Dorward" <do*****@yahoo.com> wrote in message
news:ds*******************@news.demon.co.uk...
News wrote:
I have a page up trying to learn how to ID a browser and other info.


Except for (not very accurate) statistical gathering purposes, this
information shouldn't be of any practical use to you. If you are planning
to branch JavaScript based on what different browsers are capable of, then
you should look at the much more reliable object detection.
http://www.quirksmode.org/js/support.html
I can see no way of knowing if it is a firefox or netscape browser is
that
posible?


Not reliably. These days there is little to choose between them anyway.
Also, when I print out the var "codename" in IE 6 it says Mozilla. What
is
up with that?


Netscape had better JavaScript support then IE. People wrote scripts to
detect this. Microsoft brought out a new version of IE with better
JavaScript support and stuck Mozilla in the agent string so that those
scripts wouldn't ignore IE.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is


Thanks that URL was helpful
Totus possum, totum Deum.
Totus ero, totum meum.
WSW
Feb 7 '06 #4
David Dorward wrote:
News wrote:
Also, when I print out the var "codename" in IE 6 it says Mozilla. What
is up with that?


Netscape had better JavaScript support then IE.


That is an interesting (false) statement, considering that IE has no
JavaScript support at all and it never had (IE supports and supported
JScript and VBScript). Maybe you meant to say that Netscape had better
ways for scripting HTML documents, while you would be confusing
programming language and AOM/DOM (unfortunately a mistake Netscape made
too until JavaScript 1.3).
PointedEars
Feb 7 '06 #5
VK

News wrote:
Also, when I print out the var "codename" in IE 6 it says Mozilla. What is
up with that?


In the beginning Tim Berners-Lee created the Web and HTTP

Then National Center for Supercomputing Applications (NSCA) created the
first GUI browser called NSCA Mosaic. And it was good ans so lasted
many years.

Then Netscape, Inc. created a much more powerful version and called it
"Mozilla". What was a play around the word "Mosaic" => "Mosaic" +
"Godzilla", thus Mosaic but having obtained the power of Godzilla. They
even created a logo with a funny little dragon.

But browser production appreared to be a very profitable no-fun
business so the next version has been already called very seriously
"Netscape Navigator". At the same time "Mozilla" has been left in the
browser ID string (which finally become a property of the navigator
object).

So deeply and truly each GUI browser is Mozilla, *including* IE. In
Help > About it still says: "Based on NCSA Mosaic."

Currently "Mozilla" word in userAgent string became equivalent of the
cross sign at the beginning of mediaeval manuscripts :-) It just shows
that authors of this particular browser remember and respect their
great ancestors.

Besides that "Mozilla" in userAgent doesn't contain any technical info;
it doesn't indicate anyhow to the current relation with Mozilla
Foundation <http://www.mozilla.org>

Feb 7 '06 #6
VK wrote:
News wrote:
Also, when I print out the var "codename" in IE 6 it says Mozilla.
What is up with that?
In the beginning Tim Berners-Lee created the Web and HTTP


And I thought that in the beginning was the word.
And the word was text/plain.[1] :)
Then National Center for Supercomputing Applications (NSCA) created the
first GUI browser called NSCA Mosaic. And it was good ans so lasted
many years.
So far, so good.
Then Netscape, Inc. created a much more powerful version and called it
"Mozilla". What was a play around the word "Mosaic" => "Mosaic" +
"Godzilla", thus Mosaic but having obtained the power of Godzilla. They
even created a logo with a funny little dragon.

But browser production appreared to be a very profitable no-fun
business so the next version has been already called very seriously
"Netscape Navigator". At the same time "Mozilla" has been left in the
browser ID string (which finally become a property of the navigator
object).


Wrong as it is. The (internal) _codename_ of Netscape's Web browser,
Netscape Navigator (and later, the Netscape Communicator suite) was
Mozilla (for the reasons you mentioned) ever since.

<URL:http://en.wikipedia.org/wiki/Netscape_Navigator>

Hence the logo, navigator.userAgent and later the name of the (non-profit)
Mozilla Organization (an Open Source community with Netscape support) which
took over development of the Mozilla codebase when Netscape decided (due to
the no longer maintainable codebase produced to far) to make the Mozilla
code Open Source (resulting in releasing NN versions 6.x and 7.x as
Netscape Gecko-based, parallel to Mozilla Suite releases from mozilla.org).

Shortly after the merger with (or rather hostile takeover by) AOL/TW,
the Netscape browser division was shut down, and what was the Mozilla
Organization with many payed Netscape employees became the Mozilla
Foundation <URL:http://www.mozilla.org/> (still non-profit) led by the
hard core of ex-Netscapers. (Current Netscape browser versions [8+]
are developed by Mercurial Communications for AOL/TW and are based on
Mozilla Firefox.)

<URL:http://en.wikipedia.org/wiki/Netscape>

Recently, with the release of Firefox 1.5, the Mozilla Foundation
produced a (commercial) subsidiary named Mozilla Corporation
(<URL:http://www.mozilla.com/>) to "[oversee] the development and
distribution of Mozilla technologies and products, including the
popular and award-winning Firefox Web browser and Thunderbird email
client."
PointedEars
___________
[1] <URL:http://www.rfc-editor.org/rfc/rfc1.txt>
Feb 7 '06 #7
VK
> VK wrote:
Then National Center for Supercomputing Applications (NSCA) created the
first GUI browser called NSCA Mosaic. And it was good ans so lasted
many years.
Thomas 'PointedEars' Lahn wrote:
So far, so good.


Actually not as good as it should. I did not mention other GUI web
browsers created mainly in different universities, some of which were
rather good for that time. The history did not preserve their names but
they were :-) I may look in old brochures for details. So NSCA Mosaic
was *not* the first GUI browser, but it was the *first milestone* in
web-browsers evolution. Browsing history, bookmark collection, link
underlining (still optional) etc. etc.

The rest can go by your text. I see your variant is more Mozilla
Foundation - centric imitating a "corporate success history" article
style :-)
I don't see a reason to make it bitter though.

Feb 7 '06 #8
VK wrote:
VK wrote:
> Then National Center for Supercomputing Applications (NSCA) created the
> first GUI browser called NSCA Mosaic. And it was good ans so lasted
> many years.
Thomas 'PointedEars' Lahn wrote:


Learn to quote. NOW.
So far, so good.


[...]
The rest can go by your text. I see your variant is more Mozilla
Foundation - centric imitating a "corporate success history" article
style :-)
I don't see a reason to make it bitter though.


If you think it was, so be it. I have no problem pointing out that despite
all obstacles the Mozilla project is still going strong -- I welcome that.

However, this section of my article was rather intended to point out the
connection between Netscape, Mozilla and the Mozilla Organization /
Foundation / Corporation which you told it did not exist.
PointedEars
Feb 7 '06 #9
Thomas 'PointedEars' Lahn said the following on 2/7/2006 2:24 AM:
David Dorward wrote:
News wrote:
Also, when I print out the var "codename" in IE 6 it says Mozilla. What
is up with that? Netscape had better JavaScript support then IE.


That is an interesting (false) statement, considering that IE has no
JavaScript support at all and it never had (IE supports and supported
JScript and VBScript).


Then how can the statement be false? It reads, with your pedantic
interpretation, as something along the lines of:

Netscape had better JavaScript support than a browser that didn't have
JavaScript support.

And that statement is *true*.

But, just to pedant your pedant, MS used the term JScript as its
"Javascript implementation" because NS had a bitch fit about MS using
its name.
Maybe you meant to say that Netscape had better
ways for scripting HTML documents, while you would be confusing
programming language and AOM/DOM (unfortunately a mistake Netscape made
too until JavaScript 1.3).


No, He probably meant to say exactly what he said and in your desire to
be pedantically correct you inserted your foot into your mouth.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 7 '06 #10
Thomas 'PointedEars' Lahn said the following on 2/7/2006 12:46 PM:
VK wrote:
VK wrote:
Then National Center for Supercomputing Applications (NSCA) created the
first GUI browser called NSCA Mosaic. And it was good ans so lasted
many years.
Thomas 'PointedEars' Lahn wrote:


Learn to quote. NOW.


Are you associated with the National Organization for Women or do you
think that typing in CAPS makes you more dominating?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 7 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Sims | last post by:
Hi, if i use... // php $info = getenv("HTTP_USER_AGENT"); // I noticed that Mozzila and Netscape <6(?) both use the same Agent. // so i was thinking of if...
15
by: Peter Bremer | last post by:
Hi all, I've written this little piece of code, which doesn't seem to work in Mozilla 1.5. I haven't tried it on other Gecko browsers, but I've found some indication that Netscape 6+ has the...
3
by: Simba | last post by:
Hi, I've written some javascript routines for Internet Explorer and Opera. Could you tell me the Netscape and Mozilla equivalents? Thanks ------------------------- //this works with...
4
by: Scott Navarre | last post by:
Hi, I have Red Hat 8.0 and have the default Mozilla browser that comes with it. I am programming in javascript and have come across something problematic. Given the following code: <HTML>...
5
by: Roman Blöth | last post by:
Hello out there, pls excuse if my xposting might fall into a false group - this is a quick problem which I should solve soon... Why the heck would Mozilla 1.2.1 on a Mac (OS 9.x) render a...
3
by: Parrot | last post by:
Does anyone else have a problem with the Mozilla browser not expanding a multi-line textbox to its proper size? My textboxes are all small and do not display mu;tiple lines in Mozilla or Netscape...
3
by: kj | last post by:
This problem is driving me nuts. The code at the end of this post below works fine with IE, but fails with Mozilla. You can see it in action at http://tinyurl.com/2jvo3 With Mozilla 1.4 and...
4
by: Nariak | last post by:
Dear friends of programming! the script below only works with MSI and Opera but not with Netscape 7.x and Mozilla 1.x! What is wrong? Please help me! Thanks Ralf
49
by: Aidan | last post by:
I rely heavily on MSDN for documentation when it comes to HTML/DHTML/JavaScript/CSS but as a result I often have problems getting my stuff to work in Netscape/Mozilla/Firefox. I like the MSDN...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.