Mozilla 1.2.1 Released 397
I shouldn't be allowed to work before coffee- I posted this at like 8:20 and must've forgotten to click that all important 'Save' button. Hey, Everyone's favorite web browser besides Chimera has released version 1.2.1. The fix includes security patches so it probably wouldn't hurt to snag it if you're running it.
I found the problem... (Score:3, Funny)
Well maybe that is the problem, editors keep accidently hitting the save button throughout the day... I am sure we will see this story yet again... =P
Glad to see... (Score:5, Interesting)
Re:Glad to see... (Score:5, Interesting)
Yeah, it almost seemed to big for them to miss. But when I was browsing the bug # referenced in Buzilla, it looks as if the patch for that issue and some other patches just didn't get committed for some reason.
Re:Glad to see... (Score:4, Interesting)
anyway, good job mozilla team, and keep up the great work!
DHTML Patch (Score:5, Informative)
security fixes? not really (Score:5, Informative)
Re:security fixes? not really (Score:5, Funny)
What I dont understand... (Score:3, Insightful)
Anyway I guess my point here is to say that I think that instead of relying 100% on submitted news items that
Afterall, isn't there more to "journalism" than reguritating content back to the viewers who told you about it in the first place? That seems logical enough to me. If you want a better browsing experience I suggest you take a trip to http://www.arstechnica.com - while they may not post as many stories - they are far more carefully choosen and presented in such a way that doesn't alienate 50% of viewers by the second sentence (Hint: Check out any Anti MS story here and then check out the browsing statistics for this site)
Thanks for your time,
J
Re:What I dont understand... (Score:3, Informative)
This is essentially the full release of 1.2, just patched and with an added
Cheers.
Re:What I dont understand... (Score:2)
In all honesty, I would normally agree with you. Point releases for nearly any software project aren't really deserving of front page Slashdot linkage.
However, in this case, it is deserving because the latest 1.2 release of Mozilla had a huge error that caused improper rendering of any Web page that contains DHTML-specific code.
Re:What I dont understand... (Score:2, Informative)
I belive they posted the story due to the story Saturday about the bug and the new release would fix it. AKA new release is out. Please refrence the older slashdot article. [slashdot.org]
Yea I know I'm probably feeding the trolls but what the hey....
From the horse's mouth (Score:5, Interesting)
Icing on the mornings cake: I got up on time, drove to work, posted a story, and then forgot to press *save* on the goddamn web form. So for hte next 2 hours I keep deleting submission after submission about Mozilla 1.2.1 thinking "geezus, are people blind?" and not realizing that no, I am in fact stupid. Of course, why so many people submit a bug fix release of a web browser is beyond me. Some stories I'd rather not post, but sheer volume of submissions really makes it impractical to ignore them
--
DTML... (Score:2, Interesting)
Re:DTML... (Score:5, Informative)
Dynamic HTML is a collective term for a combination of new Hypertext Markup Language (HTML) tags and options, that will let you create Web pages more animated and more responsive to user interaction than previous versions of HTML. Much of dynamic HTML is specified in HTML 4.0. Simple examples of dynamic HTML pages would include (1) having the color of a text heading change when a user passes a mouse over it or (2) allowing a user to "drag and drop" an image to another place on a Web page. Dynamic HTML can allow Web documents to look and act like desktop applications or multimedia productions.
The features that constitute dynamic HTML are included in Netscape Communications' latest Web browser, Navigator 4.0 (part of Netscape's Communicator suite), and by Microsoft's browser, Internet Explorer 4.0. While HTML 4.0 is supported by both Netscape and Microsoft browsers, some additional capabilities are supported by only one of the browsers. The biggest obstacle to the use of dynamic HTML is that, since many users are still using older browsers, a Web site must create two versions of each site and serve the pages appropriate to each user's browser version.
The Concepts and Features in Dynamic HTML
Both Netscape and Microsoft support:
* An object-oriented view of a Web page and its elements
* Cascading style sheets and the layering of content
* Programming that can address all or most page elements
* Dynamic fonts
Re:DTML... (Score:3, Informative)
Or for short:
DHTML = HTML + CSS + JavaScript
Lameness filter encountered. Post aborted!
Reason: Don't use so many caps. It's like YELLING.
??? I am not using "so many caps", I am using abreviation! What the heck...
Re:DTML... (Score:5, Informative)
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2) Gecko/20021126
Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2) Gecko/20021126
If an input filed with type set to hidden is not preceded by either the body
open tag or text it will be displayed as a text field, but will not have it's
default value set.
Reproducible: Always
Steps to Reproduce:
1. Save the following in a file:
<html>
<form action="/listings/update.php" method=post>
<input type=hidden name=test1 value=value1>
test2: <input type=hidden name=test2 value=value2><br>
</table>
</form>
</html>
2. Load the file in Mozilla
Actual Results:
An empty text input field apears before the test '
Expected Results:
the field should have been hidden and kept its value.
Workarounds are trivial, the <body> tag or any text, even a period, prior to the
hidden input will cause it to behave normaly.
Re:DTML... (Score:2, Insightful)
here's the fix, fire the ass who mistook your example for html.
Re:DTML... (Score:4, Informative)
This is a fix release. (Score:5, Insightful)
Re:This is a fix release. (Score:5, Informative)
Re:This is a fix release. (Score:5, Informative)
Re:This is a fix release. (Score:3, Informative)
Should be simple to fix?! Why isn't it?
Work before coffee! (Score:5, Funny)
That's ok, I'm sure we'd have seen the story the next two times it's going to run on Slashdot.
Why so much bigger than 1.2? (Score:5, Interesting)
Re:Why so much bigger than 1.2? (Score:5, Insightful)
And the word we are looking for here is indeed "slightly".
Re:Why so much bigger than 1.2? (Score:4, Informative)
To my (faint) understanding: Maybe
Looking at the bug page of bug #182500 on bugzilla.mozilla.org (sorry, direct links blocked from slashdot), the list of associated bugs has 32 entries, and is a result of an incorrect backout of way too much code at some point just before the 1.2 release.
Somebody closer to the mozilla project could surely give more detailed / accurate info on this though.
Re:Why so much bigger than 1.2? (Score:5, Informative)
The fix to bug 182500 was a single character. An 9 was changed to an 8. There was not a backout of way too much code.
The problem was that a checkin that added a value to an array was incorrectly backed out. The size of the array was written explicitly instead of using sizeof and preprocessor magic, and the change to the size wasn't backed out along with the value added to the end of the array. The incorrect size caused whatever random data was stored after the end of the array to be read. (The array was in the HTML parser, containing a list of the types of things that are valid children of the HEAD element. Thus, I think the bugs can be traced to things that should have been in the BODY ending up in the HEAD.) Depending on the compiler, this caused different behavior, so the bug was worse on Windows (with MSVC 6.0) or on gcc 3.2 (on x86 Linux) than it was with egcs 1.1.2 (on x86 Linux).
So, in other words, the size of the binaries shouldn't have changed. That's odd.
Re:Why so much bigger than 1.2? (Score:3, Informative)
The 1.2 release also had a build problem where some of the changes checked into the branch did not get pulled for the build.
Specifically, from an artical on www.mozillazine.org they say that "the 1.2 release tag was not complete so builds created from that tag may have additional problems"
I suspect that the difference may be due to this
Keep missing that save button please! (Score:5, Funny)
Re:Keep missing that save button please! (Score:2)
Seriously, I just downloaded the complete Windows Talkback build in a little less than 15 seconds a couple of minutes ago. Mozilla is hosted on fast servers.
Re:Keep missing that save button please! (Score:2)
A few solutions (Score:3, Informative)
1.2.1 does have better security than 1.1 or 1.0.1 (Score:5, Informative)
For the folks that just downloaded Mozilla 1.2 last week, if you're not having any problems (and it seems like the DHTML issue is a lot less visible on linux) then there's no pressing "security" reason to upgrade to 1.2.1 but you might as well get it for this DHTML fix which is likely to eventually cause you some pain at some site somewhere.
--Asa
Hmmm ... (Score:5, Insightful)
Re:Hmmm ... (Score:2, Insightful)
Besides, it's easy enough for IE users to find an update.
Re:Hmmm ... (Score:5, Funny)
Re:Hmmm ... (Score:5, Insightful)
Sure - but when was the last release? Way back in September. Have there been any bugs reported since then?
Do you follow the progress of IE? What are they working on now? Are you able to download beta code? Report bugs that get fixed in a timely manner?
That is the difference between a community and proprietary software. Maybe you can do these things with IE, I don't really know. I only use it when I am forced to, and more and more that is less often.
Re:Hmmm ... (Score:2)
Now if other browsers start re-gaining some share, expect IE 7 in a hurry, with nifty new features like tabs!
Re:Hmmm ... (Score:2)
New versions of IE are usually ... (Score:2)
Maybe... (Score:2)
Re:Hmmm ... (Score:5, Insightful)
Because MSIE is not a community project. There are many, many slashdot readers who contribute to mozilla in terms of code, bug reports, add-ons [mozdev.org] and so on. There's a whole community of people surrounding this project and many of them also congregate here.
You can't say that about IE. There is no development community. It's all privately developed by a corporation.
The mozilla updates are announced so much more than MSIE because they are important because they are developed and perpetuated by members of this community.
Threaded e-mail, wouldn't that be handy? (Score:4, Interesting)
Mozilla is a threaded e-mail client, eh? So far, so good. However, it doesn't actually remember the Expand All Threads state [mozilla.org].
So, suppose that you turn on threading and tell Mozilla to Expand All Threads. You now have a nice tree-like view of mail threads :). But, next time you load Mozilla, it'll be back to compressed view again (but still sorted by threads). If threaded mail sounds useful to you, you may want to vote for the bug [mozilla.org] (of course, you'll need a free Bugzilla account [mozilla.org] to vote).
Maybe it's just me... (Score:2)
And when are they going to fix the damn quick launch and the plethora of mail bugs that keep me tied to Communicator for mail.
I love Moz, but geez, this stuff has been pushed out since 1.0RC1 (which was a fine application EXCEPT THIS STUFF).
</rant>
Re:Maybe it's just me... (Score:4, Informative)
Annoyance (Score:4, Interesting)
Is there some way to preserve these plugins that I don't know about?
And why oh why do I have to be root to install mouse-gestures under linux?
Re:Annoyance (Score:3, Informative)
Re:Annoyance (Score:3, Funny)
Noooooooo! DON'T!!!!
I speak from experience.....
Re:Annoyance (Score:5, Informative)
The problem that I'm running into here is that the installer segfaults while it's trying to install the EN-US language pack. Anyone else have any idea what's going on here?
Re:Annoyance (Score:2)
Plug-ins such as Flash and Java can be restored as described above. Mozdev extensions such as mouse gestures tend to write their data to the ~mozillainstalldir~/chrome directory. You can try backing this up before the new install and then restoring it, it should work between 1.2 and 1.21 and is something I always do when installing a nightly release of Multizilla or similar.
Re:Annoyance (Score:3, Informative)
You can share bookmarks amoung all your installs of Mozilla, Phoenix, and probably other Gecko browsers (untested). All you do is add the following command to your prefs.js file:
user_pref("browser.bookmarks.file", "C:\\Documents and Settings\\userdude\\Application Data\\Mozilla\\Profiles\\default\\wx4vqyna.slt\\b
In addition, you can share plugins by adding the following line to your environment. Her is an example of what I did on my Windows box:
MOZ_PLUGIN_PATH = "C:\Program Files\mozilla.org\Share\Plugin" (in Environment Variables on Win2k)
Really helps so you don't have to redo plugins all the time and you can share one bookmark file for all!
Ack my Themes! (Score:3, Interesting)
has this always been true or is this new to 1.2... I don't remember my themes not working before but it may just be my memory that's not working
Re:Ack my Themes! (Score:3, Interesting)
This time the upgrade really sucked... I was running Mozilla 1.0.1, upgraded to 1.2 and everything worked.
Then I installed 1.2.1, and couldn't get mozilla to load. Uninstalled, deleted the c:\program files\mozilla.org, reinstalled, but Moz still frezes on install...
By reading other comments, it's probably still the themes that freeze Mozilla upon load. I need to find and remove some registry setting somewhere...
Now I'm back to 1.0.1, and it all seems to work just fine. Think I'll hold off on 1.2.1 for a bit...
So if there's just been one bug fix... (Score:4, Interesting)
... how come I now can't have both my mail and browser windows open at the same time? Worked fine in 1.2 final. Now the mozilla process won't even die when I close all the windows (well, all one of the windows, since now, in an obvious bid to Highlander fans, there can be only one).
Let me demonstrate where I am with Mozilla:
start of tether [----------------|--] end of tether
Don't tell me to bug it, I've already filed loads of bugs (very few of which have even been looked at, let alone fixed), and I haven't the time. 1.1 kept crashing on me, the 1.2 beta was worse, and you can forget about using the nightlies if you don't want to hit completely random regressions every other minute.
No, I know I'm not paying for it, and I know it's a community effort, whatever. Let me just have five minutes of rage. (Actually, let me have the original 1.2 final installer back, because at least that one seemed to work, and minor DHTML bugs are something I'll put up with if they let me read the web and my mail at the same time)
-- Yoz
Re:So if there's just been one bug fix... (Score:4, Informative)
No one ever took it from you. If you deleted it after the install just go back to ftp and download it again. I'd recommend that you do an uninstall and remove any traces of the Mozilla install directory then try a reinstall of 1.2.1. There should be no problems with a clean install. If that doesn't work then try creating a new profile and see if that works (you can copy your old profile data over to the new profile if necessary). I'm surprised you're having this difficulty and hope that one of the steps I suggested would fix it. The chances of 1.2.1 introducing a problem that didn't exist for you in 1.2 are about zero so I suspect that some other problem is at work here, possibly cruft left over from a beta install. Like I suggested above, removing the entire beta install directory should clear up any problems if it was a beta build problem that's manifesting in the final release. Good luck.
--Asa
Re:So if there's just been one bug fix... (Score:2)
Re:So if there's just been one bug fix... (Score:3, Interesting)
So now, being faced with having to rebuild my profile from scratch, I wasn't entirely happy, so I took a different route: Backed up my profile and thought about what I could delete that would solve the problem fastest while still keeping the majority of my data and preferences.
Most obvious was registry.dat, but it's over a meg and I probably have lots of important stuff in there. So after some looking around, I killed chrome/chrome.rdf.
Bingo! Works fine now.
How odd.
Still not entirely happy about the experience, but, as you suggested, I've been trying nightlies so that may have introduced the cruft. (I've a sneaky feeling it may have been the Orbit skin, though, in which case that's a nasty bug)
-- Yoz
Re:So if there's just been one bug fix... (Score:3, Funny)
"The UNIX philosophy basically involves giving you enough rope to hang yourself. And then a couple of feet more, just to be sure."
Re:So if there's just been one bug fix... (Score:2)
I do think the mozilla mail client is one of the most underrated part of the suite. It's IMAP compatability puts Notes and (to a lesser extent) Outlook and Outlook express to shame. The new filter after after the fact functionality is very useful, I have around 10,000 emails in an archived mailbox on my local machine which I have finally been able to quickly organise into useful categories. I even managed to find a UK english spellchecker for it the other day
Hey Taco... (Score:2)
Is Mozilla any faster than it used to be? (Score:2, Redundant)
So, give me the good word and maybe I will let the computer crunch away on Mozilla source for an hour or so
The Browser formerly known as Phoenix... (Score:2, Redundant)
Link to their project page [mozilla.org].
Just a General Tip (Score:5, Informative)
Woohoo, fixed OS X interface quirks! (Score:4, Informative)
font smoothing in KDE? (Score:2)
Re:font smoothing in KDE? (Score:2, Informative)
Re:font smoothing in KDE? (Score:3, Informative)
You can replace "xft" with "vanilla" if you want (to get the non-xft support), and RPMS with SRPMS if you want to build RPMS from source (perhaps for a different arch, remove the i386).
Note that Mozilla isn't exactly dependent directly on KDE. To get smoothing, you actually use XFT, with is unrelated to KDE (KDE uses it through QT, but neither are a part of each other).
Another poster mentioned the xft support is experimental. He's probably right, so ymmv. I've been running the RPMS I mentioned above for a few hours with 0 problems on RH8, and it looks absolutely gorgeous.
Minor release patches? (Score:5, Insightful)
Re:Minor release patches? (Score:2, Informative)
Re:Minor release patches? (Score:3, Informative)
Every time I get a new Mozilla, I have to uninstall and reinstall the entire thing. Trying to install on top inevitably leads to problems (not that I don't try to make it work.) For instance, this time, the Bookmark Sidebar couldn't load my bookmarks. When I uninstalled (and eliminated the resources) and reinstalled, they worked again.
Of course, this is under Windows. I never had problems like this undir Linux.
Anyway, I think that a Windows patch would probably leave enough alone that I'd be able to go along my merry way without this much hassle.
Use the Net Installer for smaller downloads (Score:3, Informative)
http://www.mozilla.org/releases/ [mozilla.org]
Scroll down looking for "Net Installer" .
DHTML bug @ ebgames.com? (Score:2)
Chimera... (Score:2)
Smart Bookmarks (searching from location bar very convenient, am using what I feel is a kludge of a javascript monstrosity set as my search page to search by selection or pop up a dialog if there is no selection, decent, but still not as cool).
Type-ahead find: very nifty feature.
Ability to have hrefs that request new windows open in tabs. I like tabs and don't like sites breaking my preferred usage paradigm.
Freaking close buttons on the tabs. I hate having to right click, control-click, or click and hold to close a tab that is not the active tab. Just annoying.
The first is to me the biggest issue. I just had to rant that Chimera is not 'all-that'. If it didn't crash so much and at *least* had smart bookmarks, then maybe. OmniWeb and IE are just too feature barren, Opera misrenders some important pages to me, and Mozilla is too slow. Phoenix has been decent, but middle-click doesn't work and sometimes it gets a bit confused in the MacOSX builds... Well, enough of my rant..
Moz 1.2.1 Destroys Palm User Accounts (Score:2, Interesting)
BEWARE---Installing 1.2.1 can destroy your Palm user account. [mozilla.org]
Aside from that, Palm address book sync is in... but there still seems to be lots of issues with it. Categores don't seem to sync well, it resets the "Show in list" field every time something changes, secondary address books don't always sync, etc.
Classify as Not Yet Ready for Prime Time(tm).
What a difference a character makes (Score:5, Interesting)
Ok, not exactly. It actually differs by 34 characters. The bug fix itself was a one character change (changed a '9' to an '8'). Changing the version string in various places from "1.2" to "1.2.1" took 33 characters.
Potential feature? (Score:2)
Re:Potential feature? (Score:2, Informative)
Re:Potential feature? (Score:5, Informative)
http://googlebar.mozdev.org/ [mozdev.org]
This seems to be having problems with the Linux build at present but two other projects linked from this page are Mycroft [mozdev.org] which has plug ins to allow you to search over 170 different search engines (check it out) and Easysearch [mozdev.org] which allows you to search google and others.
While exploring the mozdev site, check out Mouse Gestures, Pie Menus (both under Optimoz [mozdev.org]) and the Multizilla toolbar. These, for me, have made browsing fun and efficient once again.
If you are keen, there is an easy to follow tutorial on building your own toolbars at;
Building a toolbar for Netscape 7 (applies to Mozilla too) [netscape.com]. I used this to write a toolbar to search our Corporate Directory, Intranet and Google, It took me three days to write from scratch but is now quite widely used.
Re:Potential feature? (Score:3, Informative)
Do we really need this? (Score:2, Redundant)
Mozilla 1.2.1 Released [slashdot.org]
Mozilla 1.2 Unleashed [slashdot.org]
Mozilla 1.2 Beta Released [slashdot.org]
Mozilla 1.2 Betas Start Flowing [slashdot.org]
Mozilla 1.1 Hits The Street [slashdot.org]
Mozilla 1.1 Beta Out And About [slashdot.org]
And that's just from the first two pages of search results. I know we all love our Mozilla, but I'm sure there's something else a little more newsworthy [wired.com] going on today.
No source yet? (Score:2)
ftp://ftp.mozilla.org/pub/mozilla/releases/mozi
I really want to start this building whilst I'm at work but I can't find the source!
Anyone know which nightly this was built from? I can just download that one.
Re:No source yet? (Score:3, Informative)
In the meanwhile, get the source from CVS [mozilla.org] (The tag is MOZILLA_1_2_1_RELEASE)
My 2 big gripes about Mozilla (Score:3, Interesting)
1 - Tabbed browsing is cool, but you should get a confirmation that you'd like to close the main browser window when you have 23 tabs open
2 - CTRL-SHIFT-L to open a web address. Make it CTRL-O.
Re:FP (Score:4, Funny)
Re:Odd? (Score:3, Informative)
Give them a break, and if you want stability, never download ANYTHING in the first week.
Re:Odd? (Score:2)
Re:Chimera?! (Score:2, Informative)
Re:Chimera?! (Score:3, Interesting)
Now if I could just download OS X for x86.
Re:Solaris? HA! (Score:3, Funny)
Tick Tick Tick Tick Tick Tick.....
Re:Solaris? (Score:5, Informative)
mozilla.org makes binaries for Mac9, OSX, Linux, and Windows. All other builds (sometimes as many as a dozen or so platforms) are contributed builds.We release when we've got the four major platforms done and then the Solaris and FreeBSD and OS/2 and BeOS and all the other builds arrive later.
--Asa
Re:Strange shit... (Score:2, Informative)
Re:Strange shit... (Score:2)
gethostbyname() is good enough for me.
Re:Strange shit... (Score:2)
I saw what the problem is: they have it as "UNCONFIRMED". I didn't think it would be so hard to find a ThinkPad, but what do you know.
I tried to submit a notice that the bug still exists in 1.2.1, but I get the message from Bugzilla that only the owner, submitter or user with necessary privileges can do that. Strange again, since I am the submitter.
Too bad, because the behaviour is so irritating as to prevent me from using Mozilla on my laptop.
Re:I submitted it too! (Score:2)
I can't make it work with BBC News, but I can put up with that. But the jerky mousepointer on the ThinkPad is no go. Sorry Moz.
Re:Another victory for The People's Bugtracker! (Score:2, Funny)
But for some reason, this post sounds like something Mao would say if he were a 21st century geek. C'mon, doesn't it? =)
Re:Mozilla is the only product... (Score:5, Funny)
Ever heard of Windows?
Re:Where's the tarball?!? (Score:5, Insightful)
Mozilla source tarballs are _always_ a day or two later than the release binaries. We only have so many people working on this and so many machines to make this all happen. We release when we've got the four primary platforms built and a release tag created. That's usually late at night and when it's done we go home and the next day get to work on creating the source tarball. If you can't wait a day or two then pull MOZILLA_1_2_1_RELEASE from cvs.
--Asa
Re:Yay! Mozilla! (Score:2, Funny)
That is to say, it's like your mom, only prettier.
Re:Chimera (Score:2)
Re:will I be able to run it. (Score:2)