Domain: mozilla.org
Stories and comments across the archive that link to mozilla.org.
Stories · 1,238
-
Mozilla Thunderbird 0.6 Released
KonijnenBunny writes "May 3rd sees the release of the 0.6 version of Mozilla's Thunderbird e-mail and newsgroup client, featuring improved junk-mail controls and a new brand identity, including a new Firefox-style icon. I switched from some murky client which didn't exactly have a bright outlook regarding spam to Thunderbird a while back and was not dissapointed. Grab this latest version at Mozilla.org." Mac OS X users can also enjoy the new Pinstripe theme, which matches the previous theme of the same name applied to Firefox. -
First Ten Programs on New Install?
reddigitaldragon asks: "Some people re-install once a year, but if you're anything like me your machine is formatted at least once a month. After the OS is in, then come the favorite/must have/most used programs to install. My first installations for Windows (I use it; get over it): Trillian, Winrar, Firefox, Winamp, SmartFTP, Azureus, NMap, GKrellM, PowerDVD. What are your First 10 installed programs?" What are the first 10 programs you would install on a Windows machine? How about for a Unix machine? -
Mozilla Foundation Meets The GNOME Foundation
An anonymous reader writes "The board of directors of the GNOME foundation recently met with a few representatives of the Mozilla foundation - discussing how they could collaborate a little closer in future. A number of interesting things were discussed, including XAML/Avalon and the future of Firefox in GNOME/Linux. Check out the minutes of the meeting on the Gnome mailing list." -
DCC2 Protocol for IRC file transfers
Joe_Hypnol writes "I just noticed this bit of news over at IRC Junkie. Looks like a bunch of irc client authors (and even more) are putting their heads together to come up with DCC2, a replacement for the the poorly designed DCC IRC file transfer specification. The old protocol was basically based on a usenet post, but this new one is looking like it'll be a full-blown standard. It's currently an IETF internet working draft. Read the press release at DCC2.org." -
Rapid Application Development with Mozilla
Matthew Morgan writes "Mozilla's strengths as an application platform often go unrecognized for lack of good documentation. Nigel McFarlane sets out to change that in Rapid Application Development with Mozilla. McFarlane describes his book as "a conceptual overview, reference, and tutorial" for building applications on the Mozilla platform. But does he have room for all three in one book?" Read on for Morgan's answer to that question. Rapid Application Development with Mozilla author Nigel McFarlane pages 770 publisher Prentice Hall PTR rating 7 reviewer Matthew Morgan ISBN 0131423436 summary A good overview and tutorial for building applications atop Mozilla, though not a comprehensive reference.
The Basics Rapid Application Development with Mozilla (hereafter RADM) centers on XUL, Mozilla's XML dialect for describing GUIs. Other Mozilla components, like XBL and RDF, are described mainly in terms of how they plug into XUL. Each chapter presents and explains a component, then shows it in action by using it in an example application (a web-page annotator) developed throughout the book. Chapter conclusions take the form of debugging hints; as McFarlane ruefully notes, most errors cause Mozilla to silently do nothing, making debugging a chore.The first half of RADM covers basic XUL use -- the usual complement of widgets with CSS to style them and JavaScript to manipulate them. McFarlane does assume previous exposure to basic HTML, JavaScript, and CSS, but extensive experience isn't required. At each step McFarlane does a good job explaining what's similar to HTML (e.g. most DOM stuff) and what isn't (e.g. the layout model). A few components have no real analog in the HTML model, like Mozilla's command dispatch system, so they're presented from the ground up.
The Back EndThe second half of the book leans more toward the back end: using RDF for registries and template data; piping data into XUL with overlays, templates, and XBL; using and implementing XPCOM components; and deploying applications built on Mozilla.
McFarlane's RDF tutorial is one of the best I've seen. He starts off on the right foot by introducing things in terms of a directed graph, with lots of examples and diagrams. Only after eighteen pages of that does he introduce the RDF/XML syntax. His explanation of RDF/XML is unusually lucid, quite a feat considering how hairy RDF/XML gets. (Disclaimer: I've had past experience with RDF, so I wasn't reading this as a beginner -- in other words, YMMV.)
In the succeeding chapters, RDF is applied within the various Mozilla arenas, like XUL overlays and package installation, where it's used to store config information. The centerpiece of RDF in Mozilla, though, is in its use to create data-driven XUL files through XUL templates.
The chapter on templates runs to sixty-plus pages, and it's worth it. McFarlane covers things I haven't seen covered anywhere else. For instance, he describes the algorithm the RDF query engine uses to evaluate queries, so that you can better understand what kind of queries you can construct. This is crucial information because the query syntax allows a lot of queries that are logically reasonable, but won't actually work.
This points to a strength of RADM: McFarlane doesn't hesitate to criticize Mozilla where necessary. Throughout the book, he flags incomplete features, buggy implementations, and other gotchas, such as security restrictions surrounding RDF that make it all but useless for remote scenarios.
(Incidentally, McFarlane explicitly disclaims coverage of Phoenix/Firebird/Firefox, sticking to Mozilla 1.4, but in practice everything I've tried has worked fine in Firefox 0.8.)
Two Out Of Three Ain't BadSo, does RADM manage to accomplish its goals of being a conceptual overview, tutorial, and reference? I'd give it two out of three.
As a conceptual overview, RADM shines. McFarlane is at his best when comparing and contrasting closely related components, like overlays, templates, and XBL, all of which extend XUL but do it in different ways. I was left with a good picture of what can and can't be done in Mozilla.
As a tutorial, RADM is solidly useful. The example-application sections cover a surprisingly large amount of ground -- more than enough to get a developer new to Mozilla up and running. McFarlane chose a good subset to present as examples; still, all of his clear writing can't paper over the fact that Mozilla is really complicated, not just internally, but in the interface it presents to developers using it as a platform.
As a reference, RADM stumbles. The index is slim -- a mere eighteen pages after 752 pages of content -- which makes small chunks of information hard to find. This is mitigated by a detailed and well-organized table of contents. After a few weeks of use, I find myself turning to the contents first, and only trying the index if I have to.
Fundamentally, though, RADM isn't really a reference book, and definitely not a "quick reference." You'd be better off using a good site like XULPlanet for quick what-arguments-does-that-method-take checks, and reserving RADM for in-depth explanations.
ConclusionRADM is published in Bruce Perens' Open Source Series at Prentice Hall under the Open Publication License. After a few months of letting the book sell on its own, they'll post the PDF of the entire book online. Is it worth buying in print? Given that it's more of a sit-down-and-read book than a quick-reference guide, I'd say so.
If you're considering Mozilla as a platform, I'd recommend RADM for its reasonable balance that shows Mozilla's strengths and weaknesses. If you're already sold on Mozilla and just want to wrap your head around it and start building an app on it, RADM is the book for you.
You can purchase Rapid Application Development with Mozilla from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page -
Rapid Application Development with Mozilla
Matthew Morgan writes "Mozilla's strengths as an application platform often go unrecognized for lack of good documentation. Nigel McFarlane sets out to change that in Rapid Application Development with Mozilla. McFarlane describes his book as "a conceptual overview, reference, and tutorial" for building applications on the Mozilla platform. But does he have room for all three in one book?" Read on for Morgan's answer to that question. Rapid Application Development with Mozilla author Nigel McFarlane pages 770 publisher Prentice Hall PTR rating 7 reviewer Matthew Morgan ISBN 0131423436 summary A good overview and tutorial for building applications atop Mozilla, though not a comprehensive reference.
The Basics Rapid Application Development with Mozilla (hereafter RADM) centers on XUL, Mozilla's XML dialect for describing GUIs. Other Mozilla components, like XBL and RDF, are described mainly in terms of how they plug into XUL. Each chapter presents and explains a component, then shows it in action by using it in an example application (a web-page annotator) developed throughout the book. Chapter conclusions take the form of debugging hints; as McFarlane ruefully notes, most errors cause Mozilla to silently do nothing, making debugging a chore.The first half of RADM covers basic XUL use -- the usual complement of widgets with CSS to style them and JavaScript to manipulate them. McFarlane does assume previous exposure to basic HTML, JavaScript, and CSS, but extensive experience isn't required. At each step McFarlane does a good job explaining what's similar to HTML (e.g. most DOM stuff) and what isn't (e.g. the layout model). A few components have no real analog in the HTML model, like Mozilla's command dispatch system, so they're presented from the ground up.
The Back EndThe second half of the book leans more toward the back end: using RDF for registries and template data; piping data into XUL with overlays, templates, and XBL; using and implementing XPCOM components; and deploying applications built on Mozilla.
McFarlane's RDF tutorial is one of the best I've seen. He starts off on the right foot by introducing things in terms of a directed graph, with lots of examples and diagrams. Only after eighteen pages of that does he introduce the RDF/XML syntax. His explanation of RDF/XML is unusually lucid, quite a feat considering how hairy RDF/XML gets. (Disclaimer: I've had past experience with RDF, so I wasn't reading this as a beginner -- in other words, YMMV.)
In the succeeding chapters, RDF is applied within the various Mozilla arenas, like XUL overlays and package installation, where it's used to store config information. The centerpiece of RDF in Mozilla, though, is in its use to create data-driven XUL files through XUL templates.
The chapter on templates runs to sixty-plus pages, and it's worth it. McFarlane covers things I haven't seen covered anywhere else. For instance, he describes the algorithm the RDF query engine uses to evaluate queries, so that you can better understand what kind of queries you can construct. This is crucial information because the query syntax allows a lot of queries that are logically reasonable, but won't actually work.
This points to a strength of RADM: McFarlane doesn't hesitate to criticize Mozilla where necessary. Throughout the book, he flags incomplete features, buggy implementations, and other gotchas, such as security restrictions surrounding RDF that make it all but useless for remote scenarios.
(Incidentally, McFarlane explicitly disclaims coverage of Phoenix/Firebird/Firefox, sticking to Mozilla 1.4, but in practice everything I've tried has worked fine in Firefox 0.8.)
Two Out Of Three Ain't BadSo, does RADM manage to accomplish its goals of being a conceptual overview, tutorial, and reference? I'd give it two out of three.
As a conceptual overview, RADM shines. McFarlane is at his best when comparing and contrasting closely related components, like overlays, templates, and XBL, all of which extend XUL but do it in different ways. I was left with a good picture of what can and can't be done in Mozilla.
As a tutorial, RADM is solidly useful. The example-application sections cover a surprisingly large amount of ground -- more than enough to get a developer new to Mozilla up and running. McFarlane chose a good subset to present as examples; still, all of his clear writing can't paper over the fact that Mozilla is really complicated, not just internally, but in the interface it presents to developers using it as a platform.
As a reference, RADM stumbles. The index is slim -- a mere eighteen pages after 752 pages of content -- which makes small chunks of information hard to find. This is mitigated by a detailed and well-organized table of contents. After a few weeks of use, I find myself turning to the contents first, and only trying the index if I have to.
Fundamentally, though, RADM isn't really a reference book, and definitely not a "quick reference." You'd be better off using a good site like XULPlanet for quick what-arguments-does-that-method-take checks, and reserving RADM for in-depth explanations.
ConclusionRADM is published in Bruce Perens' Open Source Series at Prentice Hall under the Open Publication License. After a few months of letting the book sell on its own, they'll post the PDF of the entire book online. Is it worth buying in print? Given that it's more of a sit-down-and-read book than a quick-reference guide, I'd say so.
If you're considering Mozilla as a platform, I'd recommend RADM for its reasonable balance that shows Mozilla's strengths and weaknesses. If you're already sold on Mozilla and just want to wrap your head around it and start building an app on it, RADM is the book for you.
You can purchase Rapid Application Development with Mozilla from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page -
Rapid Application Development with Mozilla
Matthew Morgan writes "Mozilla's strengths as an application platform often go unrecognized for lack of good documentation. Nigel McFarlane sets out to change that in Rapid Application Development with Mozilla. McFarlane describes his book as "a conceptual overview, reference, and tutorial" for building applications on the Mozilla platform. But does he have room for all three in one book?" Read on for Morgan's answer to that question. Rapid Application Development with Mozilla author Nigel McFarlane pages 770 publisher Prentice Hall PTR rating 7 reviewer Matthew Morgan ISBN 0131423436 summary A good overview and tutorial for building applications atop Mozilla, though not a comprehensive reference.
The Basics Rapid Application Development with Mozilla (hereafter RADM) centers on XUL, Mozilla's XML dialect for describing GUIs. Other Mozilla components, like XBL and RDF, are described mainly in terms of how they plug into XUL. Each chapter presents and explains a component, then shows it in action by using it in an example application (a web-page annotator) developed throughout the book. Chapter conclusions take the form of debugging hints; as McFarlane ruefully notes, most errors cause Mozilla to silently do nothing, making debugging a chore.The first half of RADM covers basic XUL use -- the usual complement of widgets with CSS to style them and JavaScript to manipulate them. McFarlane does assume previous exposure to basic HTML, JavaScript, and CSS, but extensive experience isn't required. At each step McFarlane does a good job explaining what's similar to HTML (e.g. most DOM stuff) and what isn't (e.g. the layout model). A few components have no real analog in the HTML model, like Mozilla's command dispatch system, so they're presented from the ground up.
The Back EndThe second half of the book leans more toward the back end: using RDF for registries and template data; piping data into XUL with overlays, templates, and XBL; using and implementing XPCOM components; and deploying applications built on Mozilla.
McFarlane's RDF tutorial is one of the best I've seen. He starts off on the right foot by introducing things in terms of a directed graph, with lots of examples and diagrams. Only after eighteen pages of that does he introduce the RDF/XML syntax. His explanation of RDF/XML is unusually lucid, quite a feat considering how hairy RDF/XML gets. (Disclaimer: I've had past experience with RDF, so I wasn't reading this as a beginner -- in other words, YMMV.)
In the succeeding chapters, RDF is applied within the various Mozilla arenas, like XUL overlays and package installation, where it's used to store config information. The centerpiece of RDF in Mozilla, though, is in its use to create data-driven XUL files through XUL templates.
The chapter on templates runs to sixty-plus pages, and it's worth it. McFarlane covers things I haven't seen covered anywhere else. For instance, he describes the algorithm the RDF query engine uses to evaluate queries, so that you can better understand what kind of queries you can construct. This is crucial information because the query syntax allows a lot of queries that are logically reasonable, but won't actually work.
This points to a strength of RADM: McFarlane doesn't hesitate to criticize Mozilla where necessary. Throughout the book, he flags incomplete features, buggy implementations, and other gotchas, such as security restrictions surrounding RDF that make it all but useless for remote scenarios.
(Incidentally, McFarlane explicitly disclaims coverage of Phoenix/Firebird/Firefox, sticking to Mozilla 1.4, but in practice everything I've tried has worked fine in Firefox 0.8.)
Two Out Of Three Ain't BadSo, does RADM manage to accomplish its goals of being a conceptual overview, tutorial, and reference? I'd give it two out of three.
As a conceptual overview, RADM shines. McFarlane is at his best when comparing and contrasting closely related components, like overlays, templates, and XBL, all of which extend XUL but do it in different ways. I was left with a good picture of what can and can't be done in Mozilla.
As a tutorial, RADM is solidly useful. The example-application sections cover a surprisingly large amount of ground -- more than enough to get a developer new to Mozilla up and running. McFarlane chose a good subset to present as examples; still, all of his clear writing can't paper over the fact that Mozilla is really complicated, not just internally, but in the interface it presents to developers using it as a platform.
As a reference, RADM stumbles. The index is slim -- a mere eighteen pages after 752 pages of content -- which makes small chunks of information hard to find. This is mitigated by a detailed and well-organized table of contents. After a few weeks of use, I find myself turning to the contents first, and only trying the index if I have to.
Fundamentally, though, RADM isn't really a reference book, and definitely not a "quick reference." You'd be better off using a good site like XULPlanet for quick what-arguments-does-that-method-take checks, and reserving RADM for in-depth explanations.
ConclusionRADM is published in Bruce Perens' Open Source Series at Prentice Hall under the Open Publication License. After a few months of letting the book sell on its own, they'll post the PDF of the entire book online. Is it worth buying in print? Given that it's more of a sit-down-and-read book than a quick-reference guide, I'd say so.
If you're considering Mozilla as a platform, I'd recommend RADM for its reasonable balance that shows Mozilla's strengths and weaknesses. If you're already sold on Mozilla and just want to wrap your head around it and start building an app on it, RADM is the book for you.
You can purchase Rapid Application Development with Mozilla from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page -
Rapid Application Development with Mozilla
Matthew Morgan writes "Mozilla's strengths as an application platform often go unrecognized for lack of good documentation. Nigel McFarlane sets out to change that in Rapid Application Development with Mozilla. McFarlane describes his book as "a conceptual overview, reference, and tutorial" for building applications on the Mozilla platform. But does he have room for all three in one book?" Read on for Morgan's answer to that question. Rapid Application Development with Mozilla author Nigel McFarlane pages 770 publisher Prentice Hall PTR rating 7 reviewer Matthew Morgan ISBN 0131423436 summary A good overview and tutorial for building applications atop Mozilla, though not a comprehensive reference.
The Basics Rapid Application Development with Mozilla (hereafter RADM) centers on XUL, Mozilla's XML dialect for describing GUIs. Other Mozilla components, like XBL and RDF, are described mainly in terms of how they plug into XUL. Each chapter presents and explains a component, then shows it in action by using it in an example application (a web-page annotator) developed throughout the book. Chapter conclusions take the form of debugging hints; as McFarlane ruefully notes, most errors cause Mozilla to silently do nothing, making debugging a chore.The first half of RADM covers basic XUL use -- the usual complement of widgets with CSS to style them and JavaScript to manipulate them. McFarlane does assume previous exposure to basic HTML, JavaScript, and CSS, but extensive experience isn't required. At each step McFarlane does a good job explaining what's similar to HTML (e.g. most DOM stuff) and what isn't (e.g. the layout model). A few components have no real analog in the HTML model, like Mozilla's command dispatch system, so they're presented from the ground up.
The Back EndThe second half of the book leans more toward the back end: using RDF for registries and template data; piping data into XUL with overlays, templates, and XBL; using and implementing XPCOM components; and deploying applications built on Mozilla.
McFarlane's RDF tutorial is one of the best I've seen. He starts off on the right foot by introducing things in terms of a directed graph, with lots of examples and diagrams. Only after eighteen pages of that does he introduce the RDF/XML syntax. His explanation of RDF/XML is unusually lucid, quite a feat considering how hairy RDF/XML gets. (Disclaimer: I've had past experience with RDF, so I wasn't reading this as a beginner -- in other words, YMMV.)
In the succeeding chapters, RDF is applied within the various Mozilla arenas, like XUL overlays and package installation, where it's used to store config information. The centerpiece of RDF in Mozilla, though, is in its use to create data-driven XUL files through XUL templates.
The chapter on templates runs to sixty-plus pages, and it's worth it. McFarlane covers things I haven't seen covered anywhere else. For instance, he describes the algorithm the RDF query engine uses to evaluate queries, so that you can better understand what kind of queries you can construct. This is crucial information because the query syntax allows a lot of queries that are logically reasonable, but won't actually work.
This points to a strength of RADM: McFarlane doesn't hesitate to criticize Mozilla where necessary. Throughout the book, he flags incomplete features, buggy implementations, and other gotchas, such as security restrictions surrounding RDF that make it all but useless for remote scenarios.
(Incidentally, McFarlane explicitly disclaims coverage of Phoenix/Firebird/Firefox, sticking to Mozilla 1.4, but in practice everything I've tried has worked fine in Firefox 0.8.)
Two Out Of Three Ain't BadSo, does RADM manage to accomplish its goals of being a conceptual overview, tutorial, and reference? I'd give it two out of three.
As a conceptual overview, RADM shines. McFarlane is at his best when comparing and contrasting closely related components, like overlays, templates, and XBL, all of which extend XUL but do it in different ways. I was left with a good picture of what can and can't be done in Mozilla.
As a tutorial, RADM is solidly useful. The example-application sections cover a surprisingly large amount of ground -- more than enough to get a developer new to Mozilla up and running. McFarlane chose a good subset to present as examples; still, all of his clear writing can't paper over the fact that Mozilla is really complicated, not just internally, but in the interface it presents to developers using it as a platform.
As a reference, RADM stumbles. The index is slim -- a mere eighteen pages after 752 pages of content -- which makes small chunks of information hard to find. This is mitigated by a detailed and well-organized table of contents. After a few weeks of use, I find myself turning to the contents first, and only trying the index if I have to.
Fundamentally, though, RADM isn't really a reference book, and definitely not a "quick reference." You'd be better off using a good site like XULPlanet for quick what-arguments-does-that-method-take checks, and reserving RADM for in-depth explanations.
ConclusionRADM is published in Bruce Perens' Open Source Series at Prentice Hall under the Open Publication License. After a few months of letting the book sell on its own, they'll post the PDF of the entire book online. Is it worth buying in print? Given that it's more of a sit-down-and-read book than a quick-reference guide, I'd say so.
If you're considering Mozilla as a platform, I'd recommend RADM for its reasonable balance that shows Mozilla's strengths and weaknesses. If you're already sold on Mozilla and just want to wrap your head around it and start building an app on it, RADM is the book for you.
You can purchase Rapid Application Development with Mozilla from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page -
Mozilla 1.7 to Become New Long-Lived Branch
iswm writes "MozillaZine has announced that the Mozilla 1.7 branch will become the new long-lived stable branch, replacing 1.4. The stable branch is intended to act as a baseline for developers building Mozilla-based products, with critical bugs fixed on the branch as well as the trunk. Mozilla Firefox 1.0, a new milestone of Mozilla Thunderbird, a new Camino release and several third party Mozilla based products will be based on Mozilla 1.7, so the Foundation is making efforts to ensure that it is high quality." -
Mozilla 1.7 to Become New Long-Lived Branch
iswm writes "MozillaZine has announced that the Mozilla 1.7 branch will become the new long-lived stable branch, replacing 1.4. The stable branch is intended to act as a baseline for developers building Mozilla-based products, with critical bugs fixed on the branch as well as the trunk. Mozilla Firefox 1.0, a new milestone of Mozilla Thunderbird, a new Camino release and several third party Mozilla based products will be based on Mozilla 1.7, so the Foundation is making efforts to ensure that it is high quality." -
Political Pop-ups, and Follow the Money
finelinebob writes "Now we know why Bush wants broadband for everyone: The Republican National Committee plans on bringing the campaign to Internet pop-up ads. From the article: 'Internet experts said that Republicans have entered a new realm of campaigning. Pop-up and pop-under ads of any variety haven't been around long, and little data exist to suggest how voters might respond to uninvited interruptions.' Okay, folks -- get your pop-up blocking browsers now!" While you're waiting for your first pop-up, pop on over to a website that tracks campaign contributions: vVF4N writes "Fundrace 2004 lets you enter any street address and see what people at or near that location have contributed to a presidential candidate, along with their addresses and occupations. The data is based on reports that campaigns regularly file with the Federal Election Commission. You can also look up a name and get the same information. The Washington Post (registration required) has more. Find out who your friends and neighbors are contributing to." -
Firefox Extension Lets You Pick the Name
Rovaedne writes "Mozilla Firefox , the web browser formerly known as Firebird, formerly known as Phoenix, has a new extension which allows you to change the name to something palatable. The extension called Firesomething lets users change the name seen in the browser titlebar, Help menu, and About dialog, thus erradicating all traces of "Firefox" in Firefox (currently version 0.8). There is a name change FAQ, but it currently does not mention this extension. This extension should hopefully help curb some of the criticism that Mozilla has received from its most recent choice of name." -
Firefox Extension Lets You Pick the Name
Rovaedne writes "Mozilla Firefox , the web browser formerly known as Firebird, formerly known as Phoenix, has a new extension which allows you to change the name to something palatable. The extension called Firesomething lets users change the name seen in the browser titlebar, Help menu, and About dialog, thus erradicating all traces of "Firefox" in Firefox (currently version 0.8). There is a name change FAQ, but it currently does not mention this extension. This extension should hopefully help curb some of the criticism that Mozilla has received from its most recent choice of name." -
Firefox Extension Lets You Pick the Name
Rovaedne writes "Mozilla Firefox , the web browser formerly known as Firebird, formerly known as Phoenix, has a new extension which allows you to change the name to something palatable. The extension called Firesomething lets users change the name seen in the browser titlebar, Help menu, and About dialog, thus erradicating all traces of "Firefox" in Firefox (currently version 0.8). There is a name change FAQ, but it currently does not mention this extension. This extension should hopefully help curb some of the criticism that Mozilla has received from its most recent choice of name." -
Firefox Extension Lets You Pick the Name
Rovaedne writes "Mozilla Firefox , the web browser formerly known as Firebird, formerly known as Phoenix, has a new extension which allows you to change the name to something palatable. The extension called Firesomething lets users change the name seen in the browser titlebar, Help menu, and About dialog, thus erradicating all traces of "Firefox" in Firefox (currently version 0.8). There is a name change FAQ, but it currently does not mention this extension. This extension should hopefully help curb some of the criticism that Mozilla has received from its most recent choice of name." -
Firefox Extension Lets You Pick the Name
Rovaedne writes "Mozilla Firefox , the web browser formerly known as Firebird, formerly known as Phoenix, has a new extension which allows you to change the name to something palatable. The extension called Firesomething lets users change the name seen in the browser titlebar, Help menu, and About dialog, thus erradicating all traces of "Firefox" in Firefox (currently version 0.8). There is a name change FAQ, but it currently does not mention this extension. This extension should hopefully help curb some of the criticism that Mozilla has received from its most recent choice of name." -
Mozilla 1.7 Beta Is Faster And Smaller
ccady writes "Mozilla 1.7 beta is out. Not too many new features, but "Mozilla 1.7 size and performance have improved dramatically with this release. When compared to Mozilla 1.6, Mozilla 1.7 Beta is 7% faster at startup, is 8% faster at window open time, has 9% faster pageloading times, and is 5% smaller in binary size." I'll be downloading it." -
Mozilla Cracks Down On Merchandise Sellers
An anonymous reader writes "MozillaZine reports that the Mozilla Foundation is cracking down on those selling unofficial Mozilla-branded merchandise. This takes the form of an open letter addressed to retailers of goods that bear the Mozilla name or logos. The letter suggests that the Foundation are willing to work with those selling Mozilla wares, as long as they get a cut and the retailer isn't operating in the US, Canada or Mexico, where they would be competing with the Foundation's own Mozilla Store. Threats of legal action for non-compliance are issued, albeit with friendly overtones. This open letter is part of the Mozilla Foundation's campaign to better enforce its trademarks, an effort that began when the Foundation was launched in July. In a related move, the Foundation announced that the new Firefox artwork is not open-source and can only be used in official builds or those sanctioned by the Foundation - this has led to debates about whether Firefox is free enough to be included in the Debian Linux distribution." -
Mozilla Firebird gets .8 Release, and New Name
Yage writes "Firebird, the lightweight version of Mozilla gets release 0.8 and changes its name again (remember Phoenix?) to avoid confusion with another OSS project. The new name is Firefox. There's a press release out about the name change and new version. And, as usual, download it from mozilla.org." Worth noting that ThunderBird .5 has been released as well. Update: 02/09 14:55 GMT by H : Thanks to Steve Garrity for pointing out the name change FAQ. -
Mozilla Firebird gets .8 Release, and New Name
Yage writes "Firebird, the lightweight version of Mozilla gets release 0.8 and changes its name again (remember Phoenix?) to avoid confusion with another OSS project. The new name is Firefox. There's a press release out about the name change and new version. And, as usual, download it from mozilla.org." Worth noting that ThunderBird .5 has been released as well. Update: 02/09 14:55 GMT by H : Thanks to Steve Garrity for pointing out the name change FAQ. -
Mozilla Firebird gets .8 Release, and New Name
Yage writes "Firebird, the lightweight version of Mozilla gets release 0.8 and changes its name again (remember Phoenix?) to avoid confusion with another OSS project. The new name is Firefox. There's a press release out about the name change and new version. And, as usual, download it from mozilla.org." Worth noting that ThunderBird .5 has been released as well. Update: 02/09 14:55 GMT by H : Thanks to Steve Garrity for pointing out the name change FAQ. -
Introducing Nvu, A Web-Authoring Application
An anonymous reader writes "MozillaZine is reporting that the first public beta of Nvu has been released. "What's that?", I hear you cry. Well, Nvu (pronounced 'N-View', short for 'New View') is a new open source WYSIWYG Web page creator/editor with FTP facilities that produces standards-compliant code. It is based on Mozilla Composer and is being developed by ex-Netscape employee Daniel Glazman's new company, Disruptive Innovations, under licence for Lindows.com. All the code for Nvu will be released back into the wild under the MPL/LGPL/GPL tri-licence. More information is available in the Nvu FAQ. Users of LindowsOS, other Linux distributions and Windows 98 and later can download Nvu 0.1 now." TheWanderingHermit writes points out that the feature list includes "(finally!) the ability to include and edit forms." -
Mozilla 1.6 Released
Jack Comics writes "Asa Dotzler of the Mozilla Foundation has announced this evening the release of Mozilla 1.6. The Mozilla 1.6 release notes can be found here." -
Mozilla 1.6 Released
Jack Comics writes "Asa Dotzler of the Mozilla Foundation has announced this evening the release of Mozilla 1.6. The Mozilla 1.6 release notes can be found here." -
Microsoft Wins HTML App Patent
crataegus writes "'Microsoft on Tuesday won a patent for launching a certain kind of HTML application within Windows. The patent, "Method and apparatus for writing a Windows application in HTML" (Hypertext Markup Language), describes Microsoft's way of opening up HTML applications in a window free of navigation and other interface elements, known as "chrome," and browser security restrictions.' Why does this sound vaguely familiar?" -
Mozilla 1.6 Beta Released
Sick Boy writes "As reported on Mozillazine, the Mozilla Foundation today released Mozilla 1.6 Beta. This latest milestone adds support for NTLM authentication on all platforms and improves the implementation on Windows. The automatic page translation feature has been restored (now powered by Google Language Tools) and a new version of ChatZilla, 0.9.48, is now included. In addition, several security and crash bugs have been fixed during the beta release cycle. Builds can be downloaded from the Mozilla Releases page or directly from the mozilla1.6b directory on ftp.mozilla.org. The Mozilla 1.6 Beta Release Notes have more detailed information about what's new and known issues to watch out for." -
Mozilla 1.6 Beta Released
Sick Boy writes "As reported on Mozillazine, the Mozilla Foundation today released Mozilla 1.6 Beta. This latest milestone adds support for NTLM authentication on all platforms and improves the implementation on Windows. The automatic page translation feature has been restored (now powered by Google Language Tools) and a new version of ChatZilla, 0.9.48, is now included. In addition, several security and crash bugs have been fixed during the beta release cycle. Builds can be downloaded from the Mozilla Releases page or directly from the mozilla1.6b directory on ftp.mozilla.org. The Mozilla 1.6 Beta Release Notes have more detailed information about what's new and known issues to watch out for." -
Mozilla 1.6 Beta Released
Sick Boy writes "As reported on Mozillazine, the Mozilla Foundation today released Mozilla 1.6 Beta. This latest milestone adds support for NTLM authentication on all platforms and improves the implementation on Windows. The automatic page translation feature has been restored (now powered by Google Language Tools) and a new version of ChatZilla, 0.9.48, is now included. In addition, several security and crash bugs have been fixed during the beta release cycle. Builds can be downloaded from the Mozilla Releases page or directly from the mozilla1.6b directory on ftp.mozilla.org. The Mozilla 1.6 Beta Release Notes have more detailed information about what's new and known issues to watch out for." -
Mozilla Thunderbird 0.4 Released
Random BedHead Ed writes "The latest release of Mozilla Thunderbird, the standalone Mozilla mail program, has been released and is available for download here. A quick scan of the release notes shows some new improvements and features, including a new look, bug fixes, and for Linux users the ability to click on a URL in an e-mail and have it actually launch in your default web browser (how novel). Download and enjoy..." -
Mozilla Thunderbird 0.4 Released
Random BedHead Ed writes "The latest release of Mozilla Thunderbird, the standalone Mozilla mail program, has been released and is available for download here. A quick scan of the release notes shows some new improvements and features, including a new look, bug fixes, and for Linux users the ability to click on a URL in an e-mail and have it actually launch in your default web browser (how novel). Download and enjoy..." -
Mozilla Thunderbird 0.4 Released
Random BedHead Ed writes "The latest release of Mozilla Thunderbird, the standalone Mozilla mail program, has been released and is available for download here. A quick scan of the release notes shows some new improvements and features, including a new look, bug fixes, and for Linux users the ability to click on a URL in an e-mail and have it actually launch in your default web browser (how novel). Download and enjoy..." -
After The GNOME Bounties, It's Mozilla's Turn
MikeCapone writes "Slashdot had an article about the GNOME bounties a few days ago, but now, thanks to the Shuttleworth Foundation (created by Mark Shuttleworth, the guy who went into the ISS as a Soyuz cosmonaut a couple of years ago), the Mozilla project also has some monetary incentives. The budget for 2004 is USD$100,000." -
Life After Netscape For Mozilla Developers
An anonymous reader submits "MozillaZine has an article up on life after Netscape for Mozilla developers formerly employed there. Several developers are now employed by the non-profit Mozilla Foundation in full or part-time positions, others have been hired by IBM and Daniel Glazman was contracted by Lindows to write web publishing application Nvu. Another group of developers have joined together to form Mozilla Consulting to work on customized Mozilla enhancements. The amount of interest by non-Netscape companies in Mozilla is surely a positive sign for the future of the project." -
Sun Gets Open Source Into NSW Government
lplatypus writes "ZDNet Australia reports that Sun Microsystems has "has cleared a place for its Java Enterprise System on the NSW government's software shelf, continuing its campaign to weaken Microsoft's monopoly over the desktop." The Age clarifies that Sun's offering includes open source components such as Linux, Gnome, Mozilla and Evolution. Another article is at Australian IT, or see Sun's press release." -
Linux in Movies?
chicagoan asks: "Last weekend I, like many other people across the US, saw Scary Movie 3. During the movie an actress gets on the web to help her in her quest. Looking closer I noticed that the Desktop environment she was using was GNOME and the Web Browser was Mozilla's Firebird. Where have you spotted actor's using Linux in movies or on TV shows?" -
Mozilla Firebird 0.7.1 Released For Mac OS X
An anonymous reader writes "MozillaZine is reporting that Mozilla Firebird 0.7.1 has been released for Mac OS X only. The release - coming just over a week since the last one - fixes a number of bugs that made 0.7 frankly unusable on Macs. There's more info in the release notes. All MacBeards should upgrade immediately." -
Mozilla Firebird 0.7.1 Released For Mac OS X
An anonymous reader writes "MozillaZine is reporting that Mozilla Firebird 0.7.1 has been released for Mac OS X only. The release - coming just over a week since the last one - fixes a number of bugs that made 0.7 frankly unusable on Macs. There's more info in the release notes. All MacBeards should upgrade immediately." -
P2P Contact Info Service From Napster Co-Founder
scrm writes "Plaxo is an interesting new service from Sean Parker, co-founder of Napster. It's a P2P-based add-on to Outlook that confronts the old problem of keeping contact lists up-to-date. Mozilla mail support is on the cards, and yes, the company does 'take privacy very seriously'. Check the press here(1), here(2) and here(3). You can also access your contact list over the web." -
Slashback: Diebold, Peroxide, Comdex
Slashback brings you updates tonight on Diebold's attempts to bring undisclosed-source, unauditable black-box voting to a ballot box near you, John Carmack's search for (rocket-fuel, not hair) peroxide, AT&T's (withdrawn) request for its customers' mail server addresses, open source goings on at Comdex, and more -- read on for the details.Diebold Election Systems Round 2 in MD zznate writes "Looks like Diebold is not going to get off the hook so easily in Maryland after all. For anyone local, feel free to contact delegates Hixson or Hollinger to express your support. Perhaps they could even receive a copy or two (or fifty ;-) of the documents listed here."
Diebold is having an easier time at Swarthmore. yoshi_mon writes "Previously reported on /. was the Swarthmore Students Effort to keep the Diebold leaked memo's online. However that effort has been quashed by one Dean Bob Gross. To quote the dean, "We can?t get out in front in this fight against Diebold." BlackBoxVoting.com reports that '[Swarthmore College] is not willing to take a strong stand against Diebold, and is systematically disabling the network access of any student who hosts the files.'"
AT&T says Ha, just kidding! An anonymous reader writes "In an update to an earlier Slashdot article, Telco giant AT&T rushed to withdraw two notices sent to business partners and customers asking for the IP addresses of all outbound SMTP servers because of a 'human error' gaffe."
All this and cheap shrimp cocktail. blackbearnh writes "While the topic has been raised, I thought I'd mention a few other things going on at COMDEX Open-Source wise.
First off, the Open Source and Linux track has been expanded from a half-dozen sessions last year to nearly twenty this year. These will cover everything from the basics of Open Source (taught by folks like Ken Coar of Apache) to an intro to PHP led by Rasmus Lerdorf.
On the show floor, a massive 2500 sq foot Open Source Innovation Center will serve as the site for hourly talks by Open Source evangelists on business-related topics such as case studios proving the benefits of Open Source. There will also be a staffed "clinic" area where attendees can get advice on what Open Source technologies would work well in their business. There will also be install parties held at noon each day, where attendees can bring their laptops to get help installing MySQL or Debian. And lastly, a .ORG village inside the center will host representitives from more than a dozen prominent Open Source organizations, including OpenOffice and Mozilla.
Also, the COMDEX/ApacheCon exchange program continues this year. COMDEX members can get access to the ApacheCon expo floor and BOF sessions, while ApacheCon member can visit the COMDEX show floor and the Open Source keynotes. Shuttle service will link the two conventions.
James Turner
Co-Chair, Open Source, Fall 2003 COMDEX"It's a crapshoot, eh. Dick Faze writes " Royal Bank of Canada is part of a $50 Million investment in SCO: Has our communist neighbor to the north finally flipped completely?" (We know Mr. Faze is being facetious, here ... don't we?) This is the same $50,000,000 investment deal in which some people suspected Microsoft's involvment.
Patent Office Cancels Swing Patent An anonymous reader writes "Remember the swing patent issued last year covering the method of swinging a swing? Well, the Patent Office must've taken offense at the amount of criticism it received over this patent. It initiated a reexam proceeding and after a year's worth of reexamination, they cancelled the patent on July 1, 2003."
But all the other patents are up to snuff, don't worry.
Carmack's Peroxide Troubles Over? Rob Jellinghaus writes "John Carmack's aerospace company has had problems getting enough concentrated 90% peroxide for their engines. So they have been working on mixed monoprop engines that would need only 50% peroxide, which would pretty much end their fuel troubles for good. They have had many failures, but they may have just succeeded. In his words: 'This is Very Good.'"
Remember, most of the world is still dial-up, at best. Anothermouse Cowered writes "It's a router, it's a firewall, it's a home gateway it's a... In another giant leap for the Open Source community, you can now hack on your own embedded Linux system for under $70. The source code for the ActionTEC Dual modem previously mentioned on Slashdot ('Hacking the Actiontec 56k Modem/Gateway') in September has now been released under the GPL. Downloads available here."
-
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Three New Releases (And Other News) From Mozilla
An anonymous reader writes "A couple of interesting releases by mozilla.org. First of all Mozilla 1.5 was released. This is supposed to be the last version of the old Mozilla suite. Mozilla Firebird 0.7, the stand-alone browser by mozilla.org was also released today. It includes many new features, e.g. Web Panels. For more information see the newly designed product page for Firebird. A third release is the stand-alone version of the Mozilla mail-program Thunderbird , which has now reached version 0.3. The Mozilla Foundation also launched new end user services, like CD Sales and Telephone Support. As an effort to target more end-users, a redesigned website was also created. As always MozillaZine has all of the stories, too. Give these new releases a try, but please use a mirror if possible." -
Microsoft Wins Browser War, Abandons 'Innovation'
rocketjam writes "Web developers are expressing frustration with Microsoft's apparent abandonment of its 'operating-system-integrated' Internet Explorer web browser. An article on C-Net points up the efforts of the Web Standards Project as well as Adobe Systems to prompt Microsoft to fix long-standing Cascading Style Sheet bugs in IE as well as continuing to add other improvements which have virtually ceased since Microsoft won the browser war. While alternatives such as the Mozilla Project and the Opera browser still exist, their marketshare is miniscule." In a related story, an anonymous reader points out that the bugs aren't just in rendering, they're security holes as well: "iDefense and eEye have basically said that Internet Explorer is full of holes and just surfing the Web using it is "unsafe". There's 31 un-patched holes in IE, but MS won't talk about it... It took them nearly a month to roll out a new patch after this one was found to be more or less useless." -
Microsoft Plans IE Changes Due to Plugin Patent
aWalrus writes "Microsoft has outlined some of the strategies they may pursue for modifying the way Internet Explorer handles plugins (annoying the user may circumvent the patent) if they lose their legal battle against Eolas Technologies (which claims they invented the seamless procedure for running plugins). There has already been a previous ruling against MS which they continue to appeal. This is likely to have repercussions in the Open Source Community too. If MS is found to be infringing the patent, that ruling could be extended to other browsers like Opera and Mozilla. Usability expert Jeffrey Zeldman provides an in-depth commentary on this issue and its implications." -
Mozilla Thunderbird 0.2 Released
An anonymous reader writes "Mozilla Thunderbird 0.2 is out! For those who haven't heard about it yet, Mozilla Thunderbird is mozilla.org's new standalone mail client and sister product to Mozilla Firebird. According to MozillaZine's article on the release, new features include 'a redesigned Options dialogue, spell checker improvements, enhancements to the default theme and better performance and stability'. More information can be found at the Mozilla Thunderbird Project Page and in the release notes (which include the important information that a clean install is vital). Builds are available for Windows (7.3Mb), Mac OS (11.1Mb) and Linux (9.5Mb) or you can download the source (29.1Mb) and build it yourself for extra geek points." -
Mozilla Thunderbird 0.2 Released
An anonymous reader writes "Mozilla Thunderbird 0.2 is out! For those who haven't heard about it yet, Mozilla Thunderbird is mozilla.org's new standalone mail client and sister product to Mozilla Firebird. According to MozillaZine's article on the release, new features include 'a redesigned Options dialogue, spell checker improvements, enhancements to the default theme and better performance and stability'. More information can be found at the Mozilla Thunderbird Project Page and in the release notes (which include the important information that a clean install is vital). Builds are available for Windows (7.3Mb), Mac OS (11.1Mb) and Linux (9.5Mb) or you can download the source (29.1Mb) and build it yourself for extra geek points."