Slashdot Mirror


Mozilla.org Relaunched

mpeach writes "Mozilla Organization has launched its new Web site and it's looking a fair bit sleeker than it used to. No new product releases to go with the new look unfortunately, but, according to the Firefox 1.0 Roadmap, release candidates of the latest browser are getting closer by the day."

427 comments

  1. It's free.. by Creepy+Crawler · · Score: 0

    How'd they relaunch? Change HTML code?

    Big whoop

    --
    1. Re:It's free.. by Nos. · · Score: 3, Funny

      I didn't realize that a new template was front page news here on slashdot... either that or its a VERY slow news day.

    2. Re:It's free.. by Creepy+Crawler · · Score: 2, Funny

      And I get -1'ed for it. It's a new fucking template.

      --
  2. Hrmph... by Anonymous Coward · · Score: 0

    Slicker != Sleeker

    1. Re:Hrmph... by Rei · · Score: 3, Funny

      What I found amusing was that when I clicked on their new website in Konqueror, it crashed. Subtle coding ploy? ;)

      It worked the second time... I got a grin out of it, though.

      --
      I just invaded Grammar Czechoslovakia and duped Grammar Neville Chamberlain; now it's on to Grammar Poland.
    2. Re:Hrmph... by RWerp · · Score: 1

      My konqueror displayed it properly at once. Time for an upgrade?

      --
      "Long run is a misleading guide to current affairs. In the long run we are all dead." (John Maynard Keynes)
    3. Re:Hrmph... by supun · · Score: 1

      Works for me with KDE 3.2. The page does check out as 4.01 Strict, however the CSS has an error and warning.

      For fun validate Microsoft web pages :)

      --
      :w!
    4. Re:Hrmph... by tarquin_fim_bim · · Score: 0

      "For fun validate Microsoft web pages"
      Can't be that much fun, otherwise the designers would have done it.
      Oh, and the Mozilla page doesn't render correctly in Lynx, is this a conspiracy?

    5. Re:Hrmph... by CmdrGravy · · Score: 1

      The Firefox themes page ( http://update.mozilla.org/themes/ is a complete mess in Konqueror ( at least in 3.2 )

      Does anyone else see that ?

    6. Re:Hrmph... by Richard+Dick+Head · · Score: 2, Funny

      huh? I think you need to go to kde-look.org to get your themes buckaroo!

      Jeez, next you'll be going to Windows Update to patch your distro!

  3. Latest nightly is already called by acariquara · · Score: 5, Informative

    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040901 Firefox/1.0 PR (NOT FINAL)
    as of 09/01/2004... Broke some extensions BTW!

    --
    Dear aunt, let's set so double the killer delete select all
    1. Re:Latest nightly is already called by Anonymous Coward · · Score: 1, Informative

      If you check the extensions page you can filter by 1.0PR and it's set to that by Default. Pissed me off trying to get the gmail notifier for 0.9.3

    2. Re:Latest nightly is already called by BrynM · · Score: 1
      Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040901 Firefox/1.0 PR (NOT FINAL) as of 09/01/2004... Broke some extensions BTW!
      I'm not a developer - Just a user... Where do you see a 1.0 in the Firefox nightlies?
      --
      US Democracy:The best person for the job (among These pre-selected choices...)
    3. Re:Latest nightly is already called by ernstp · · Score: 3, Informative

      Asa Dotzler (Mozilla.org's QA guy!) says:

      Last night our champion hackers got a new update infrastructure landed into Firefox 0.9 branch builds and set up the new server and the new server-side code, moving away from the slow Java based stuff to some much faster not-Java based stuff. Grab today's branch builds and go hammer on this new stuff. Update should be working better and everything should be faster, hopefully.

      http://ftp24moz.newaol.com/pub/mozilla.org/firef ox /nightly/latest-0.9/

    4. Re:Latest nightly is already called by acariquara · · Score: 1

      Help | About Mozilla Firefox... read the fine print!

      --
      Dear aunt, let's set so double the killer delete select all
    5. Re:Latest nightly is already called by BrynM · · Score: 1
      Help | About Mozilla Firefox... read the fine print!
      Interesting... Thanks!
      --
      US Democracy:The best person for the job (among These pre-selected choices...)
    6. Re:Latest nightly is already called by samhalliday · · Score: 3, Interesting
      Mozilla/5.0 (Windows

      why is the latest version of firefox so hard to find for windows? all the download links are for gnu/linux! (or is this new page so "smart" that it detects what OS you are on and only print a link for that?)

    7. Re:Latest nightly is already called by Hooded+One · · Score: 3, Interesting
      It looks like they do check your system to provide the relevant download link. Interestingly, changing your UA doesn't affect this. The relevant code is this:
      function getPlatform()
      {
      if (navigator.platform.indexOf("Win32") != -1)
      return "Windows";
      else if (navigator.platform.indexOf("Linux") != -1)
      return "Linux";
      else if (navigator.userAgent.indexOf("Mac OS X") != -1)
      return "MacOSX";
      else if (navigator.platform.indexOf("Mac") != -1)
      return "Mac";
      return "Other";
      }
      I guess navigator.platform is independent of UA string. What doesn't make sense is why they use userAgent for OSX.

      What also doesn't make sense is why they used client-side Javascript for the rotating screenshot image, when they're already doing server-side scripting to include the latest RSS information, or why they have the screenshot as the background image for a DIV instead of an inline IMG.

      It's still a lovely layout though.
    8. Re:Latest nightly is already called by mini+me · · Score: 2, Interesting
      What doesn't make sense is why they use userAgent for OSX.

      OSX returns "Mac" I assume. So that code allos them to identify between OSX and OS<=9.

      What also doesn't make sense is why they used client-side Javascript for the rotating screenshot image, when they're already doing server-side scripting to include the latest RSS information, or why they have the screenshot as the background image for a DIV instead of an inline IMG.

      Perhaps the page is generated by a cronjob so it wouldn't be random until the next time the page is updated. And the image is a background image because you can't insert inline images with CSS. If you look at the page without style-sheets you'll see why you'd want that image in the CSS file as opposed to the HTML.
    9. Re:Latest nightly is already called by Hooded+One · · Score: 1

      Hmm... I see what you mean about the page without styles. I still think it's an ugly hack though.

    10. Re:Latest nightly is already called by elemental23 · · Score: 2, Insightful

      On the contrary, placing images with CSS is extremely useful, especially for excluding images from print versions or providing pages that degrade to nothing but the most basic layout (the way the new Mozilla site does). Positioning can also be a lot easier this way.

      Personally, I think it's much more elegant than a bunch of inline floated or, god forbid, align="right"ed image tags.

      --
      I like my women like my coffee... pale and bitter.
    11. Re:Latest nightly is already called by Hooded+One · · Score: 2, Insightful

      That's what generated content is for. Unfortunately, since IE does not and may not ever support it, ugly hacks such as background images are used instead.

      Background images should be used for background images only. Anything else breaks most of the normal user operations that can be performed on content images.

      Honestly, I'm not sure it's even necessary to take this step on the Mozilla website anyway. I imagine that most of the users browsing without CSS would be browsing without images as well, i.e. text browsers such as Lynx.

      Having said that, I wouldn't be surprised if I got a flood of indignant responses to the effect of "I use graphical browsing without CSS all the time, you insensitive clod!"

    12. Re:Latest nightly is already called by FLEB · · Score: 1

      What also doesn't make sense is why they used client-side Javascript for the rotating screenshot image, when they're already doing server-side scripting to include the latest RSS information, or why they have the screenshot as the background image for a DIV instead of an inline IMG.

      It's just a shot in the dark, but I imagine it's the same reason you mentioned about the UA string. If you change your UA string, it will change the UA header getting sent to the server, and server-side scripting would get the modified info.

      By using client-side Javascript, and the fact that JavaScript still knows what OS it's on, they can more accurately post the right picture, deftly getting by even a modified UA string.

      Of course, it might be something else entirely, but it's a decent explanation.

      --
      Information wants to be free.
      Entertainment wants to be paid.
      You just want to be cheap.
    13. Re:Latest nightly is already called by samhalliday · · Score: 1
      It looks like they do check your system to provide the relevant download link

      and it still has oversights... such as it points me to linux-i686 even though i am on linux-ppc

      the most annoying thing is if i want to find a download for an alternative OS; its not on the main page. perhaps they would have been best off with a list of downloads and just moving your detected OS to the top of the list.

    14. Re:Latest nightly is already called by Anonymous Coward · · Score: 0
      (or is this new page so "smart" that it detects what OS you are on and only print a link for that?)

      Yeah, that's right. On my Windows machine, I can't see the download for Linux, but there is no way I can miss the download for Windows.

  4. Great new look! Same old shit... by Anonymous Coward · · Score: 4, Interesting

    So /. renders really poorly in Gecko, as do a myriad of other sites.

    Is that Firefox's problem for not gracefully accepting broken HTML? Or is it those web developers who write the broken HTML?

  5. Finally sheesh by (54)T-Dub · · Score: 3, Insightful

    I'm glad that the creative designers behind the firefox look finally got a crack at the homepage. IMO it gives the browser much better more credibility if it has a professional looking website. Not just like some hodge-podge browser. *warning ... blatant plug to get me free stuff following

    --

    "I can not bring myself to believe that if knowledge presents danger, the solution is ignorance" - Isaac Asimov
    1. Re:Finally sheesh by darrylo · · Score: 0

      ... but the current page fails Usability 101.

      If you go to the main Firefox page (e.g., Products->Firefox), there is no download link. All the hype, and no download link (yes, it's so intuitive to click on "Release notes" to get to the actual download links ...). Sheesh. ;-) How are the Firefox zealots-in-training supposed to get their very first copy?

      I'm sure they'll fix this, but you'd think they would have gotten the obvious stuff right ....

    2. Re:Finally sheesh by randyest · · Score: 3, Insightful

      I'll second that, and not even anonymously.

      The free ipod thing, which has been joined by the new "free flatscreen" thing is turning every part of the internet that didn't totally suck (like slasdot and fatwallet and . . ) into a spamfest.

      Frankly, I'd like to see /. handle the "free *" spam sigs and posts the same way that the SomethingAwful forums do -- permaban.

      Now mod me as offtopic, overrated, trolling flamebait. I know you want to because you want a free ipod too, and you're in so late in this pyramid scheme that you have no chance to get one, so you have to lash out somewhere . . . .

      --
      everything in moderation
    3. Re:Finally sheesh by NeoThermic · · Score: 2, Informative

      Not sure what you see, but when I go to the firefox page, I see a huge div on the right, saying:
      `Download Now!`

      Seriously, are you on the right page?
      http://www.mozilla.org/products/firefox/

      NeoThermic

      --
      Use my link above, or to view my server, NeoThermic.com
    4. Re:Finally sheesh by jelwell · · Score: 3, Insightful

      I'll third that, also not anonymously. The problem isn't the links themselves. It's that the content of the message posted is so hastily written to try to get moderation points quickly.

      Is the new Mozilla site actually more professional looking? No. Maybe compared to the link in the article from 1998, but not compared to how mozilla.org looked a month ago.

      It just seems like this kind of ill-informed comment only serves the purpose of promoting said website.
      Joseph Elwell.

    5. Re:Finally sheesh by anaesthetica · · Score: 1

      I don't know what you're looking at, but there's a big green "Download Now!" button on the top right.

    6. Re:Finally sheesh by darrylo · · Score: 1

      Never mind -- I was on the right page, but my ad blocker was killing the download link by somehow corrupting the download javascript. Bah. Maybe it's time to switch to AdBlock full time.

    7. Re:Finally sheesh by darrylo · · Score: 1

      (double bah -- can't edit posts)

      Forgot to add: my apologies to the Firefox folks. They've done a great job.

      (And I've just killed my ad blocker, and switched to Adblock, full-time.)

    8. Re:Finally sheesh by therealtroff · · Score: 1

      Actually I loved the look of the old site. It was above all clean, which is something you can't say about many websites these days. That by itself meant it stood out as a unique site. The organisation of the site left a lot to wish for however. Some projects you couldn't find unless you googled for them. A cursory examination suggests that this has improved although how much I can't say at this stage. The new look isn't too horrible but it is less clean and it has the ubiquitous butt ugly fake tabs. If the great unwashed like it and it drives downloads - fine.

    9. Re:Finally sheesh by Anonymous Coward · · Score: 0

      i mod them troll or overrated every time i see that shit. its the only thing i can do, and it is worth 'wasting' mod points on the negative.

    10. Re:Finally sheesh by RasputinAXP · · Score: 2, Funny

      There are sigs on /.?

      Really?

      Good thing I can filter them out in my user prefs panel!

  6. The Previous Design by adam+mcmaster · · Score: 5, Insightful

    Why not actually compare it to the previous design they had?

    1. Re:The Previous Design by Neophytus · · Score: 1

      The new design isn't a poor excuse to show off CSS positioning effects, it uses them to it's advantage. Everything joe blogs needs is clear to show, anything else is much more clearly displayed due to the lack of clutter.

    2. Re:The Previous Design by YetAnotherName · · Score: 1

      Compared. The older design's bold black and intense orangish yellow, combined with serif fonts, make it look amateurish compared with the previous design's Verdana font and soft colors.

      But now ... now they've gone corporate!

      But I guess beauty's in the eye of the beholder ...

    3. Re:The Previous Design by Curtman · · Score: 3, Informative

      Or the hideous one before that.

    4. Re:The Previous Design by aka.Daniel'Z · · Score: 3, Interesting

      Not that I care, but did anyone notice that they're using some mozilla-only CSS stuff?

      So when an IE user goes to the site, some stuff appear to be broken (like the green box that says "Free Download" doesn't have rounded corners on IE)... Small details, but still...

      On the other hand, looks very good on mozilla. :D

    5. Re:The Previous Design by ptlis · · Score: 2, Informative

      It's not mozilla-only, it is infact w3c standards compliant and as such renders fine in all standards-complient browsers; as such it renders fine in Opera 7.x

      --
      There's mischief and malarkies but no queers or yids or darkies within this bastard's carnival, this vicious cabaret.
    6. Re:The Previous Design by asa · · Score: 5, Insightful

      So when an IE user goes to the site, some stuff appear to be broken (like the green box that says "Free Download" doesn't have rounded corners on IE)... Small details, but still...

      "broken"? What's broken? Everything degrades well. Different is not "broken".

      --Asa

    7. Re:The Previous Design by builderbob_nz · · Score: 1

      So when IE gives you one rounded corner and three square ones (I just did a little test) does it mean that they only support 25% of the w3c standards?

      --

      Karma? Hey I just call it as I see it.
    8. Re:The Previous Design by beakburke · · Score: 1

      Works fine on Safari, I don't think it's Mozilla specific, but rather that IE is the only one that renders it wrong. (with fewer features)

      --
      ----- Question authority, but not ours. Hate the man, but we're not him.
    9. Re:The Previous Design by aka.Daniel'Z · · Score: 1

      Just to be more specific, broken as "only one corner appears to be round because that corner has an image instead of the CSS keyword".

      I would think it is broken (to degrade nicely would require all 4 corners to use the same mechanism). But maybe it was intentional? Whatever...

  7. Duh by over_exposed · · Score: 5, Funny

    ...release candidates of the latest browser are getting closer by the day.

    Isn't that kind of how time works?

    --
    "The object of war is not to die for your country, but to make the other bastard die for his." - Patton
    1. Re:Duh by sploo22 · · Score: 5, Funny

      Normally, yes, but not always. For example, take Duke Nukem Forever...

      *rimshot*

      --
      Karma: Segmentation fault (tried to dereference a null post)
    2. Re:Duh by someguy456 · · Score: 2, Funny
      Isn't that kind of how time works?

      Not if its Duke Nukem Forever, in which case the release date actually gets a little farther away every day

    3. Re:Duh by Phroggy · · Score: 5, Funny

      Isn't that kind of how time works?

      Yeah, that's a bug. They're working on it.
      http://bugzilla.mozilla.org/show_bug.cgi?id=60455

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    4. Re:Duh by LoudMusic · · Score: 1

      ...release candidates of the latest browser are getting closer by the day.

      Isn't that kind of how time works?


      It may depend on who's time you're refering to. But yeah, I laughed at that too.

      --
      No sig for you. YOU GET NO SIG!
    5. Re:Duh by mailtomomo · · Score: 0

      .build testing a running not are you least At

    6. Re:Duh by Anonymous Coward · · Score: 1, Funny

      Why didn't we get a new name for FireFox with this update?

    7. Re:Duh by mpeach · · Score: 1

      Hah! It's a fairly common expression here on Earth meaning that a given event is nearing. ;)

    8. Re:Duh by gstoddart · · Score: 1
      take Duke Nukem Forever


      Yes Kimosabe. Apparently.

      =)
      --
      Lost at C:>. Found at C.
  8. Woot by Commander+Trollco · · Score: 2, Interesting
    Nice.

    Sorta OT, is anyone else irritated with how they are hiding the zipped binaries for windows now? You used to be able to get them as easily as the installer, and before that there was no installer. I just don't trust it...

    --
    http://persianews.on.nimp.org/?u=Tar_Baby
    1. Re:Woot by PReDiToR · · Score: 2, Informative

      They stopped showing the Zips on the main page because they wanted to test the installer properly.

      There were still problems with it on 0.9, I don't know if they are fixed yet.

      --

      Do not meddle in the affairs of geeks for they are subtle and quick to anger
    2. Re:Woot by InfiniteWisdom · · Score: 1

      So you trust Windows but won't trust the Firefox installer?

    3. Re:Woot by Anonymous Coward · · Score: 0

      Hopefully by the time Firefox hits 1.0, the installer will respect the checkboxes for desktop, start menu, and quick launch icons, instead of installing them regardless of the settings.

      Sheesh.

  9. Firefox by danormsby · · Score: 3, Insightful
    I'm a big fan of Firefox. Only bit I don't like is upgrading the software where "installing over the top of an older version may cause unpredictable problems."

    Soon as that is fixed I'll recommend it to my mother.

    --
    Omnis amans amens
    1. Re:Firefox by DaScribbler · · Score: 1

      Pretty typical, and to be expected while it's still in beta though.

    2. Re:Firefox by harumscarum · · Score: 0

      ditto. I have copied over a couple of versions and it is always something, but it is beta so fuck it. When 1.0 hits though they better get that fixed or I will have to uninstall it and then I will stick it to them by reinstalling it.

    3. Re:Firefox by Jim+Hall · · Score: 1

      I'm a big fan of Firefox. Only bit I don't like is upgrading the software where "installing over the top of an older version may cause unpredictable problems."

      The beta versions of Mozilla had this problem. Not sure if this is still the case, though. (Back when I ran Windows) I installed each release in a separate (new) directory under C:\Program_Files.

      In this case, let's say I installed a version of Firefox under C:\Program_Files\Firefox_0.9.2. When the new version comes out, I dump that in the Trash (or rename the directory) and install the new version in C:\Program_Files\Firefox_0.9.3.

      This has several advantages: (1) I know what version I have installed, just by looking at the directory name. Yes, I could check the version by doing "Help - About", but maybe I don't have the browser open. And (2) I'm never installing over top an existing version.

      Just an idea. Even my mom understands that! :-)

    4. Re:Firefox by mpeach · · Score: 1

      Nah, it's been out a few weeks. It was a release to fix some minor security issues from memory. (Like 0.9.2, although that could merely be patched.)

    5. Re:Firefox by anakog · · Score: 4, Interesting
      Frankly, I am not much worried about that, because I am sure the distros will take care of packaging it nicely to avoid these kinds of problems.

      What worries me though is that very old and critical bugs like Bug 115174 are not considered important enough as to be release blockers. For the lazy to look this up, this bug manifests in realoading a dynamically generated page in certain cases, which may result in double-charging your credit card when you have just made a purchase and simply want to save your receipt. This bug is present in both Mozilla and Firefox and has been an issue since 2002!

      I have been using Mozilla and Firefox exclusively for the past couple of years and have to say that this is a PITA. I got used to it and know which sites I regularly visit are problematic and how to get around it (save as text or print to file). But a lot of users might get hit by this bug if Firefox becomes more widespread and they would rightfully be pissed.

      Another problem I have is that since about version 1.3 (or earlier?), Mozilla, and later Firefox, have been unstable and crashing a lot (e.g. once or twice a week under heavy load). I don't know is this is a Linux-only issue (I only use Red Hat 9 and Fedora core 2), but they seem to have a memory leak and that's not good if it creeps into the 1.0 release. I would gladly submit a bug report for this if I only knew how to reproduce it...

    6. Re:Firefox by maxume · · Score: 1

      Do you do the same with your profile? I believe that quite a few of the 'over the top' problems are a result of reusing the profile from the last version...

      --
      Nerd rage is the funniest rage.
    7. Re:Firefox by DrSkwid · · Score: 1

      firefox 0.8, freebsd 4.9

      just keeps going and going, never crashed once iirc

      PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND
      78661 matt 2 0 134M 124M poll 376:45 12.84% 12.84% firefox-bin

      --
      There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    8. Re:Firefox by abischof · · Score: 1

      Feel free to recommend it to your mother (Bug 237727 - Fixed - "Installer should delete certain files if we install over an existing firefox installation"). You'll have to copy-n-paste the URL as Bugzilla declines referers from Slashdot.

      --

      Alex Bischoff
      HTML/CSS coder for hire

    9. Re:Firefox by Anonymous Coward · · Score: 1, Insightful

      Frankly, I am not much worried about that, because I am sure the distros will take care of packaging it nicely to avoid these kinds of problems.

      Distros? This is an end-user application that is provided for multiple operating systems, not simply a component of a Linux distro. That's a real problem that end-users get burned by, every Firefox release is a release to the public, not just to Linux distros.

    10. Re:Firefox by roystgnr · · Score: 1
      Another problem I have is that since about version 1.3 (or earlier?), Mozilla, and later Firefox, have been unstable and crashing a lot (e.g. once or twice a week under heavy load). I don't know is this is a Linux-only issue (I only use Red Hat 9 and Fedora core 2), but they seem to have a memory leak and that's not good if it creeps into the 1.0 release.

      It's not just a Linux issue; a friend of mine sees it on Windows XP, too. He sent these instructions which made it fairly consistently reproduceable on both our systems:
      Go to http://cgi.fark.com/cgi/fark/newuser.pl

      Next start filling out the form as if you were getting a new account, using the tab button to maneuver around the boxes using the tab button. Then once you get to the box where it says password again, type out a few letters, then shift tab back to the password box and delete a few characters from the end of it using the keyboard only.

      I intended to file this in bugzilla at one point, but got interrupted while trying to make sure it wasn't a dupe of an existing bug entry and never got back around to it. Now (assuming it still crashes the current release) I ought to write this up and submit it; you've made me feel guilty. ;-)
    11. Re:Firefox by HerbieStone · · Score: 1

      I can reproduce my Firefox crash anytime on my WinXP machine. Just install Linky Extension. Browse to a pornthumbnail page. Open 6 Pages and load all pictures from them with Linky. This worked without a crash with Firefox 8.0,

    12. Re:Firefox by Jack9 · · Score: 1

      The number one reason my grandparents dont use new software that I recommend, is that they are afraid it will break what they have and leave them with 2 broken installations (my words) and nothing left. Smooth install is #1 to gaining acceptance. Windows Update had to be related to high profile issues before it was accepted, arguably, for it's lack of useability and unreliability in patching correctly (often leaving things broken in the late 90's).

      --

      Often wrong but never in doubt.
      I am Jack9.
      Everyone knows me.
    13. Re:Firefox by StevenHenderson · · Score: 1

      Seems youre right - see that it was like 8/6 or something. Thanks.

    14. Re:Firefox by HawkingMattress · · Score: 1

      Noticed the crash problem also, but i think i didn't happened since i upgraded to 0.9.2 two weeks ago (not too sure...). I'm on XP
      But i also suspect a memory leak... the memory footprint is huge when there are lot of tabs. Seems strange to me that each tab consumes so much memory, i frequently have to close firebird because it's eating 80 or more MB and it behaves more and more slowly (yes, i often have 15 or 20 opened tabs). In fact i just tried something : had 5 opened tabs ->40.660 megs
      opened another empty one ->40.668 megs
      loaded slashdot into it ->41.284
      loaded a flash site into it -> 44.200
      loaded google into it -> 44.400
      reloaded slashdot -> 44.700
      closed the tab -> 44.500

      Retried the same thing with another tab, and didn't get the same results at all (much better), but the leaked memory from the previous tab was still here, and firefox now tops at 46 megs while all the tabs that have been opened since i started the test have been closed. That makes about 6 megs leaked with only 2 tabs that visited about 4 sites each...

      I also wish they slowed down a little and take the time to squeeze those things. There's no need to hurry, give us a rock solid 1.0 and let it wait as long as it needs to, please.

    15. Re:Firefox by mrchaotica · · Score: 1

      I agree, Firefox 0.8 is the most stable (and best in general) version (I use it with Mac OS X.3.5, though).

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    16. Re:Firefox by urmensch · · Score: 1

      check your cache setting and get back to us

    17. Re:Firefox by Dynedain · · Score: 1

      They're just covering their asses here. Remember that it is still a beta. Do you really expect them to try to install each build over every previous build on every single OS they release for?

      Please.

      --
      I'm out of my mind right now, but feel free to leave a message.....
    18. Re:Firefox by damiam · · Score: 1

      I'd say it's extremely likely that's a linky bug, not a Firefox bug.

      --
      It's hard to be religious when certain people are never incinerated by bolts of lightning.
    19. Re:Firefox by damiam · · Score: 1

      It doesn't seem to crash 0.9.3 on Win2k3.

      --
      It's hard to be religious when certain people are never incinerated by bolts of lightning.
    20. Re:Firefox by sharkey · · Score: 1

      Such as 0.9.1 bitching at you daily to upgrade to 0.9.2, and 0.9.2 bitching at you daily to upgrade to 0.9.1?

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    21. Re:Firefox by lab16 · · Score: 1
      Another problem I have is that since about version 1.3 (or earlier?), Mozilla, and later Firefox, have been unstable and crashing a lot (e.g. once or twice a week under heavy load). I don't know is this is a Linux-only issue (I only use Red Hat 9 and Fedora core 2), but they seem to have a memory leak and that's not good if it creeps into the 1.0 release.
      It's not just a Linux issue; a friend of mine sees it on Windows XP, too.


      Keep in mind that these are two different bugs. His is crashing under heavy load (which, incedently, has happened to me several times), while what your describing probably isn't even a memory leak. And btw, this textbox glitch is fixed in the latest firefox release.
    22. Re:Firefox by lab16 · · Score: 1

      It doesn't seem to crash 0.9.3 on Win2k3.

      Firefox is immune to it. It only crashes when I try it in mozilla.

    23. Re:Firefox by Eil · · Score: 1


      I'm a big fan of Firefox. Only bit I don't like is upgrading the software where "installing over the top of an older version may cause unpredictable problems."

      Soon as that is fixed I'll recommend it to my mother.


      Did you happen to notice that Firefox isn't finished yet? Developing any software, let alone a web browser, takes time. Anybody posting here should know that. If you're using any software for production purposes that hasn't seen a 1.0 release yet, you're an infidel.

      Until Firefox hits 1.0, there's still the full-featured and highly stable Mozilla suite.

  10. "Sleeker" == "more sleek". by Anonymous Coward · · Score: 1, Informative

    What planet did YOUR dictionary come from, Beavis? It's a clumsy word, but it's perfectly legitimate modern English. I applaud anybody who does grammar/spelling/usage flames/complaints on Slashdot, but in this case there's nothing to complain about.

    1. Re:"Sleeker" == "more sleek". by FLEB · · Score: 1

      Yes, but "More Slick" still ne "More Sleek", which was the point which (I'm pretty sure) the GPP was trying to make.

      The first steps in this whole process involves reading, processing, and understanding the post. Then you hit "Reply" and take it from there.

      --
      Information wants to be free.
      Entertainment wants to be paid.
      You just want to be cheap.
  11. Great UI Improvements by grape+jelly · · Score: 5, Insightful

    I, for one, think they have made some great UI improvements. Most people don't hit moz.org seeking news and whatnot about the project. Instead, they just want to know where to get The Better Browser(TM). More than once, I've had to hold a few slower-than-I'd-like hands in finding where to download the latest and greatest version of Moz and variants. I just wonder why they featured FireFox so prominently and put the full version of Moz in the "bottom" row.

    1. Re:Great UI Improvements by Anonymous Coward · · Score: 0

      Mozilla Firefox is a newer better browser that is more constantly updated than Mozilla. Everyone wants Firefox at the moment so you have to look for Mozilla "The browser that nobody wanted"(TM)

    2. Re:Great UI Improvements by Lispy · · Score: 4, Interesting

      Try Firefox and you'll know.

      Honestly. Mozilla includes everything and the kitchen sink. That's overkill for most users. As the Gnome folks learned the hard way a few good options are much more welcome than every little tidbit of configurability.

      Firefox is lean, fast forward, and one tool for the job. Just what mom needs. And what I need. The features can be added with extensions, if you really have to. Most people love Firefox from day one because they "get it".

      Mozillas default interface also resembles the old Netscape Navigator interface wich feels kinda old to the people that switched over to IE back in 1996.

    3. Re:Great UI Improvements by Gooba42 · · Score: 1

      Wasn't it official that Mozilla was going to be unsupported? Like, bugfixes but no new development?

      Firefox is their flagship product now. Mozilla in its previous incarnation was a bloated hulk which many of us are trying to forget.

      --
      I just found out there's no such thing as the real world. It's just a lie you've got to rise above. - John Mayer
    4. Re:Great UI Improvements by LnxAddct · · Score: 1

      All major development is done on firefox now. I believe the end goal is to still have an internet suite, but of all separate apps. Mozilla, as far as I know, will still continue to be released but it will be composed of its new counterparts. It also appears the Nvu has completely taken over devleopment of the web page designer.
      Regards,
      Steve

    5. Re:Great UI Improvements by Spad · · Score: 1

      Despite the zeal with which Firefox advocates push it, I still prefer Mozilla. I don't like Firefox. It lacks features I use like encrypted password storage and it's buggier than Mozilla. I've tried every milestone since 0.6 and it still hasn't won me over.

      People seem locked in this belief that Mozilla Browser (Seamonkey) = Mozilla Suite and therefore it's bad if you don't want email et al.

      OK, so the download is larger - big whoop - I've got broadband and it doesn't bother me. The browser components are essentially indentical performance-wise, at least on my PC.

      Finally, everyone I know who pushes Firefox always add the caveat "Oh, and download these 20 extensions too so that you can do what you used to be able to in IE". Mozilla just works - the only plugins I install are adblock (because it's essential) and prefbar (because I'm lazy - although the latest build breaks Seamonkey because it's designed for Firefox, bastards).

    6. Re:Great UI Improvements by GnuAge · · Score: 1

      I can't say I'm wild about the changes. Too cartoony, XPy, for my tastes, and it seems like it takes me an extra click or two to get stuff I want (like Mozilla). I use both browsers and like them both. Mozilla comes with an option to preload it in Windows, so it starts up faster. It has always seemed to me that Mozilla is a bit less buggy and unstable than Firefox, both in Windows and Linux, in part, at least because it is more configurable. Also, I like having an integrated html editor and email client, particularly since the 1.8RCs have an option to dump multiple email accounts in to a single Inbox (Jeez, that was long overdue). No more Evolution or Kmail for me.

    7. Re:Great UI Improvements by legirons · · Score: 1

      "Mozilla includes everything and the kitchen sink. That's overkill for most users."

      Including a great HTML editor, which I often use as a full word-processor... it seems a pity not to have this installable on its own like FireFox

      (I know a separate composer is being worked-on, but at the moment, you have to download the whole Mozilla)

    8. Re:Great UI Improvements by RichM · · Score: 2, Insightful
      Mozillas default interface also resembles the old Netscape Navigator interface wich feels kinda old to the people that switched over to IE back in 1996.
      I know, they are really holding themselves back over this one - a lot of people don't actually realise that they can change to another theme. IIRC, the only reason why this is the default theme is because the "modern" theme doesn't display properly in 256 colours on certain systems. I know, it's a bit silly really.
    9. Re:Great UI Improvements by Anonymous Coward · · Score: 3, Insightful

      Try Firefox and you'll know.

      I use Firefox as my primary browser, and I'm equally confused as to why it suddenly has centre stage. It's not ready for primetime. The current release version has got a half-assed incomplete default theme, there are still problems upgrading from version to version, there's still filler text where there should be text that is actually useful... it's not a finished product. That's why it isn't 1.0 yet.

      Seeing as 1.0 is not too far away, why couldn't they have postponed pushing Firefox over the Mozilla suite until 1.0 is released? As it is, newbies are going to be downloading this incomplete version and being put-off permanently. Once a user has a bad experience with an application, it's damn hard to convince them to give it another shot. When 1.0 is released and the press machine goes into action, a substantial number of people are going to think "Firefox? I tried that not long ago and it was unfinished crap!" and not give it a second thought.

      The previous design, while it wasn't as pretty as this new one, clearly labelled Firefox as a "technology preview". I just wish they had kept it that way until Firefox is ready for prime-time.

    10. Re:Great UI Improvements by cortana · · Score: 1

      All fair enough; two points though:

      Firefox can encrypt your passwords with a master password; it's under Preferences, Advanced, Certificates, Manage Security Devices, Software Security Device, Change Password. Don't blame you for not finding it though, the advanced preferences UI really needs to be fixed before 1.0 is released. Although personally I'd just as soon see them (optionally!) remove it and integrate with the Gnome Keyring service instead.

      I am unsure what a stock installation of Firefox can't do that IE can do though? Please, no jokes about getting one's machine cracked into quicker!

    11. Re:Great UI Improvements by Anonymous Coward · · Score: 1, Interesting

      I am unsure what a stock installation of Firefox can't do that IE can do though?

      How about a sane interface to set up a user stylesheet? Relying on the user to know a magic file path and making them restart the browser every time it is changed is hideously user-unfriendly (and it's the same in the normal Mozilla suite as well).

    12. Re:Great UI Improvements by cyxxon · · Score: 1

      I know a separate composer is being worked-on, but at the moment, you have to download the whole Mozilla

      No, you don't, try Nvu. Based on the Mozilla Composer source and maintained/developed by the Moz Composer dude. Funded by Lindows, because they want to have a Frontpage/Dreamweaver competitor on Linux, but works on windows as well.

    13. Re:Great UI Improvements by Anonymous Coward · · Score: 0

      Wish the gnome folks still included [Advanced] buttons to pop up all the old options, hunting around in what can only be likened to windows registery to change a rather blatently obvious setting is just painful.

    14. Re:Great UI Improvements by zemoo · · Score: 1

      It's unfortunately the sad truth.
      On the Network Computers we use, the Classic Theme just steals all the colors from the other applications, but Modern makes browsing look like one big acid trip.

    15. Re:Great UI Improvements by Anonymous Coward · · Score: 0

      Thanks for the link, cyxxon. I'm downloading it now.

    16. Re:Great UI Improvements by FuzzyBad-Mofo · · Score: 1

      Firefox is getting all the good extensions these days. Plus, I kind of prefer the UI. Plus, it's not as bloated. Plus, reload is on F5, where it belongs.

    17. Re:Great UI Improvements by FuzzyBad-Mofo · · Score: 1

      the people that switched over to IE back in 1996

      Woah there cowboy! In 1996, you're talking about IE 3.0, which sucked honking donkey balls. Netscape 3.2 was clearly superior to that steaming pile. Microsoft didn't outshine Netscape (in my opinion) until 1998, with IE 5.0 vs NS 4.whatever.

    18. Re:Great UI Improvements by NutscrapeSucks · · Score: 1

      IIRC, the only reason why this is the default theme is because the "modern" theme doesn't display properly in 256 colours on certain systems

      "Modern" also does not respect the Windows Appearance settings, which is an accesibility problem for people with poor eyesight etc. (Or it didn't -- maybe someone fixed it.)

      Not that Modern is particularly nice looking either. It's sorta a shame that they spent so much time building a themeable app and the main themes are Netscape 4 and Internet Explorer clones.

      --
      Whenever I hear the word 'Innovation', I reach for my pistol.
    19. Re:Great UI Improvements by sharkey · · Score: 1
      Mozilla includes everything and the kitchen sink.

      Not yet. Check out - http://bugzilla.mozilla.org/show_bug.cgi?id=122411

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    20. Re:Great UI Improvements by Lispy · · Score: 1

      Its done.
      http://bugzilla.mozilla.org/attachment.cgi? id=6705 6&action=view
      (Copy and paste link, remove blank, etc. since linking from /. is disabled.) ;-)

    21. Re:Great UI Improvements by SenseiLeNoir · · Score: 1

      Actually in 1996, the "cream of the crop" of IE was IE 1.0/2.0! (yes i know IE 3 was realsed towards the end of 1996, but it wasnt until late 1997 it was adopted widely).. and IE 1/2 was SO bad it coudlnt even suck, and was laughed at by ANY seasoned web surfer! (Even Mosaic had more features at the time)

      --
      Have a nice day!
  12. Camino? by wtmcgee · · Score: 2, Interesting

    camino is barely mentioned on this site...

    sad.

    --
    *** For a better tommorow, change your life today ***
    1. Re:Camino? by theKinkyRabbit · · Score: 2, Informative

      Not on the homepage, but it's not really hidden either.

      --
      Life isn't a bitch. Life is a virgin. A bitch is easy.
    2. Re:Camino? by Anonymous Coward · · Score: 0

      Tell it to Apple.

    3. Re:Camino? by kikta · · Score: 1

      If you click on the "Products" tab, you'll see the link for Camino. I'm assuming they've decided to include the big three products on the main page and relegate the lesser requested ones (like Camino & Bugzilla) to the Products tab to lessen confusion for newcomers.

      Just out of curiosity, what does Camino give you that Firefox doesn't?

    4. Re:Camino? by Juanvaldes · · Score: 1

      Camino offers the feel of a real OS X app. Cocoa GUI, mac like toolbar, preferences, etc and was meant to be a simple browser (unlike the bloated beast Mozilla). Firefox (in my view) always seemed to be the windows/Linux equivalent of Camino, a slimed down browser.

      The developer who founded Camino was later hired by apple to head up development of safari so it's no wonder the two are very similar.

    5. Re:Camino? by wtmcgee · · Score: 1

      yea ... kind of what he said.

      camino is a native OS X app, whereas firefox does not feel as if it is. firefox is a great app, but it's got a ways to go before it unseats camino as my main browser. with forms autofill, a new tab system, and OS X spell check all on the way in the next camino, i'm really excited about what the future holds for this app.

      --
      *** For a better tommorow, change your life today ***
    6. Re:Camino? by berkut7 · · Score: 1

      That's the way it should be, anyone who doesn't agree should address the complaints dept. but seriously it's a niche browser for a niche os...

    7. Re:Camino? by MarcQuadra · · Score: 1

      Um, it has some VERY important features besides 'feels like a mac app'.

      I master the images where I work, and we're behind a proxy, but have over 100 users with laptops that need to work outside the proxy too. On the OSX machines we have the 'locations' set so when you're on-campus, you use the proxy, and off-campus you go straight to the 'net. This is great, except that firefox has it's OWN proxy control, so merely switching the 'location' doesn't work.

      Camino gets as many SETTINGS as possible by querying the OS, firefox is an island unto itself.

      --
      "Sometimes, I think Trent just needs a cup of hot chocolate and a blankie." -Tori Amos on Nine Inch Nails
  13. Web design to match browser by usefool · · Score: 2, Interesting

    Is there anything significant in this relaunch? Are they designing (show-casing) a site that utilises every feature in Firefox, for instance?

    --
    Uselessful technology (Air-Charged
    1. Re:Web design to match browser by r3m0t · · Score: 1

      Utilises every feature in Firefox?

      You can't make the websites do that. It's just a standards-compliant web browser, for fucks sake. All you need is a standards-compliant site which works in Firefox but not in IE. But people use hacks to make complex CSS layout stuff work in IE, so such a site will not appear naturally.

  14. You Don't Know, Sonny Boy!!! by stinkyfingers · · Score: 0, Flamebait

    You and your generation can have your new-fangled Mozilla Foundation website! Mark my words, though. The sooner you become slave to all their fancy-shmancy websitery, the sooner they'll be charging you for it.

    Kids today!

    1. Re:You Don't Know, Sonny Boy!!! by Anonymous Coward · · Score: 0

      I seriously doubt any corporation would charge for a web browser (excluding Opera, "the fucked up browser"(TM) I even think IE is better than that POS -_-)

    2. Re:You Don't Know, Sonny Boy!!! by DrSkwid · · Score: 1


      can you show me where I can download IE for Symbian ?

      --
      There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
  15. Sleeker? by MikeMacK · · Score: 0

    More sparse comes to mind - but that may be a good thing. Time will tell.

  16. Re:Great new look! Same old shit... by el-spectre · · Score: 1

    THAT is the issue web developers have been fighting for a long time. If you want a browser that will render line noise, go for MSIE. Of course, this only encourages bad coding (see the decline of HTML quality since 99 or so....)

    --
    "Faith: Belief without evidence in what is told by one who speaks without knowledge, of things without parallel." - A.B.
  17. Slow News Day? by ackthpt · · Score: 5, Insightful
    Ok, this is bordering on infatuation. "Mozilla Organization has launched its new Web site and it's looking a fair bit sleeker than it used to. No new product releases to go with the new look" This is effectively saying we looked at 500 submissions and this was the best of them.

    Slow news day or infatuated with Mozilla? Heck, I like Mozilla and use it at home and work, but I don't drop everything to see what's happened with their website in the last day. Gee willikers.

    Here's some other fine articles which could probably have been posted:

    Philadelphia Considering Free or Low Cost Wireless For All

    Microsoft to Exploit Japan's Post Offices to deliver SP2 (their word, not mine!)

    The Road Ahead, According to Steve Ballmer

    X-Rays Reveal Mummy Faces (Low Cancer Risk to Mummy)

    Owls Use Poop to Lure Beetles

    --

    A feeling of having made the same mistake before: Deja Foobar
    1. Re:Slow News Day? by stratjakt · · Score: 1

      To be fair, the Philly story was posted, and will doubtless be posted again tomorrow at the latest in case you missed it.

      --
      I don't need no instructions to know how to rock!!!!
    2. Re:Slow News Day? by yokimbo · · Score: 1

      I guess I'm infatuated. I dropped everything here at work to check it out.

      Now that they've redesigned the website, when are they going to redesign their clothing line?

    3. Re:Slow News Day? by kisielk · · Score: 1

      Not to mention the mummy thing too. The worst kind of /.'ers, those who don't even bother to read the article titles ;)

    4. Re:Slow News Day? by mpeach · · Score: 1

      I thought a few times before submitting it (even typed it up and aborted the first time) but given that Slashdot has a Mozilla section it seemed to be appropriate. I guess Slashdot thought so too. :)

    5. Re:Slow News Day? by chachob · · Score: 1

      No, Slashdot does not have a Mozilla section. The sections are all the things on the left hand side of the site under the text "Sections." The Mozilla thing that you are linking to is a TOPIC, not a section. There are tons of topics, but not so many sections.

    6. Re:Slow News Day? by mpeach · · Score: 1

      Sorry, that's what I meant. You get my point anyway I'm sure.

    7. Re:Slow News Day? by blackest_k · · Score: 1

      It might have been more interesting to note most of the links to on site extensions are now broken (had to go to the home pages for nearly every one)

    8. Re:Slow News Day? by Anonymous Coward · · Score: 0

      yea, i was just clarifying.

  18. Interesting... by InternationalCow · · Score: 4, Interesting

    how Firefox is being plugged. It's pretty obvious IMHO from the site that Firefox has the wind in its sails so to speak, as it's offered for download (geared to your OS, nice) with a biggo font. If you want Mozilla, you have some more clicks to go. Does that mean that Mozilla will be superseded at some point by Firefox??

    --
    ----- One learns to itch where one can scratch.
    1. Re:Interesting... by gl4ss · · Score: 2, Informative

      yes. afaik that's the whole point.

      and really why not: lighter, faster and just as good if not better. firefox tries to be what most people seem to be looking from mozilla anyways: a good web browser(very few use the extra stuff in the 'full' mozilla anyways and if they're available as seperate in the future there's no problem there either).

      --
      world was created 5 seconds before this post as it is.
    2. Re:Interesting... by barcodez · · Score: 4, Informative

      Does that mean that Mozilla will be superseded at some point by Firefox??

      Yes, this has been the plan for sometime. See the Roadmap in particular point (1.) under "a new roadmap" and also Rationale

      --

      ----
    3. Re:Interesting... by Sexy+Bern · · Score: 1

      Also, I suspect that they acknowledge that Outlook won't be replaced any time soon in corporate-land, but the browser is a good candidate.

    4. Re:Interesting... by Mprx · · Score: 1, Interesting
      Downloads geared to your user agent is a stupid idea. Any Linux user probably already has Firefox, so the only reason they'd be going to the website would be to download the Windows version for family/friends.

      It takes 4 clicks for a Linux user to download the Windows version from the front page now, compared to 1 click for the old version. Generally everything has been dumbed down, and is more ugly looking. This new design sucks.

    5. Re:Interesting... by Anonymous Coward · · Score: 0

      I just hope Konqueror gets as good as Mozilla before Mozilla gets discontinued in favor of Firefox. I can't stand Firefox because it's so much harder to use than the Mozilla Seamonkey suite (on Linux that is...Windows and Mac versions are roughly equal in usability).

    6. Re:Interesting... by drew · · Score: 1

      Any Linux user probably already has Firefox, so the only reason they'd be going to the website would be to download the Windows version for family/friends.

      why wouldn't he do that on their computer?

      and what if he wants to upgrade? or do firefox users never upgrade? maybe it didn't come with his distro, and he's accessing the page through lynx....

      --
      If I don't put anything here, will anyone recognize me anymore?
    7. Re:Interesting... by Anonymous Coward · · Score: 0

      Trying to be an Outlook-replacement was always a silly plan as Netscape sold their Mail/Groupware Server stuff to Sun.

    8. Re:Interesting... by Mprx · · Score: 1

      They might be on dialup, and it would take too long to download. Every distro worth using will either have Firefox available with the package manager, or be so specialized that you wouldn't want to use Firefox with it anyway.

  19. But gotta love the Linux bias by Anonymous Coward · · Score: 0

    - Download Now for Linux, English (8.1MB)
    - Other Systems and Languages

    1. Re:But gotta love the Linux bias by jekewa · · Score: 2, Informative
      That's the site reading your browser's user-agent information. They know you're using LINUX, so they offer you Linux.

      Here's what it says for me:

      Free Download
      for Windows, English (4.7MB)
      or get Firefox on CD

      Here's what my browser sends to them:

      User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040803 Firefox/0.8

      I'm not sure what they offer you if they don't know.

      Yeah, I'm using Windows. But...uh...I'm at work...and they make me!

      --
      End the FUD
  20. what software.. by Anonymous Coward · · Score: 0

    ..do they use for content management?

  21. They didn't change the structure though by weeksie · · Score: 1

    The page looks great, and the fact that they can make a total style change so quick certainly says something for CSS but they don't seem to have changed the site structure. That for me has always been the single most frustrating thing about moz.org-- it can be quite a pain to locate information and it always feels a bit disjointed. It sure looks good though

    1. Re:They didn't change the structure though by weeksie · · Score: 1

      *feeds a troll Actually, specific XUL dev stuff and info on Rhino both of which I found after a good bit of digging. There's a ton of great development info on the site but it's really poorly organised.

  22. The Wiki way? by theKinkyRabbit · · Score: 1

    OK, maybe this is not new and was available on the old site, but apparently you can edit some pages, like Products and Roadmap (check the "Edit this page" link all the way down).

    Was this previously available, or have I been living under a massive kryptonite rock for the past 2 years or so?

    --
    Life isn't a bitch. Life is a virgin. A bitch is easy.
    1. Re:The Wiki way? by Neophytus · · Score: 1

      You need a Mozilla CVS un/pw combo. Just an easy interface for those who need to, and it's been there for a while.

    2. Re:The Wiki way? by r3m0t · · Score: 1

      You need a CVS account to use it. I just tried to put Camino aboove Bugzilla.

  23. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 1, Funny

    I believe it was Larry Wall who said that a program should do what the user wants and do its best to figure out what the user wants, even if the user put in incorrect commands.

    But then again, he's talking about Perl and you're talking about line noise. Big difference there.

  24. Nice try by kikta · · Score: 4, Informative

    Mozilla.org has been looking at your user agent for quite a while to determine which OS you are using and offer you the appropriate download.

    If you use Windows or a Mac, you'll get offered the downloads for those initially instead.

  25. Bad choice of hook by cicho · · Score: 5, Insightful

    They shouldn't be using "Free download" as the prominent eye-catching link. "Free download" does not mean the software is free, only that it costs nothing to download it. This semantic fuzziness is often used by commercial software vendors (and spammers) as a way to entice people to download trial and/or crippled software. They should instead say something like "Free software", "Free to get, free to use", anything that doesn't have the bad vibe that comes with "free download"

    --
    "Only the small secrets need to be protected. The big ones are kept secret by public incredulity." - Marshall McLuhan
    1. Re:Bad choice of hook by Phroggy · · Score: 1

      They should instead say something like "Free software", "Free to get, free to use", anything that doesn't have the bad vibe that comes with "free download"

      What bad vibe is that, exactly?

      Consider the target market for Firefox....

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    2. Re:Bad choice of hook by justforaday · · Score: 4, Funny

      They should instead say something like "Free software", "Free to get, free to use", anything that doesn't have the bad vibe that comes with "free download"

      I'm sure posting a big flashing "Free as in Beer" graphic will boost it's popularity with the college crowd.

      --
      I'll turn into a supernova and burn up everything. Well I'll turn into a black little hole and you'll turn into string.
    3. Re:Bad choice of hook by hacker · · Score: 1

      I've been noticing this trend for a few years now, where the word "free" has been slowly redefined.

      "Free one month subscription! Only $6.95!"

      "Free Membership, just enter your credit card number below!"

      Look at Orkut... there are a few "Free Software" communities there (emblazened with images of RMS with the disk-pack on his head), and hundreds of people come in there thinking that the community is dedicated to "Freeware" or those asking for registration codes, keygens, and hacks for commercial software.

      Time and time again, I've seen people confuse "Free" with "free" and "Free Sofware" with "Freeware".

      To us, the disctinction is very clear, but to others, it needs to be explained... again.. and again.. and again, hundreds of times. As more and more people are exposed to it, more and more people need to understand it.

      And I'm only enraged about this particular thing right now, because I have found YET ANOTHER company openly infringing on our GPL/LGPL code in their commercial product. This makes 5 companies total, all of whom deny it, and all of whom have direct examples of our source code in their public SDKs and documentation.

      BASTARDS!

    4. Re:Bad choice of hook by aulendil · · Score: 1

      I'm confused, what's the difference between "Free" and "free"? Except of course for the capital f.

    5. Re:Bad choice of hook by p2sam · · Score: 1

      Yeah, RMS dropped the ball on this one. Perhaps he could have used the term Liberal Software, or Liberty Software, or even Community Software, or Communal Software. Although Communist Software would not work in the US :)

    6. Re:Bad choice of hook by Andy_R · · Score: 1

      What the hell is the idea of the most prominent link on the page reading "MacOS 9 and earlier are not supported" and not going anywhere? What's the big green arrow next to it for? At least point it at wamcom.org, where some people are still catering for the large number of mac users who haven't changed operating systems. .. and while I'm picking holes in the new look, what the hell is 'IRC Chat"? Something you do with an LCD display and a PC computer?

      --
      A pizza of radius z and thickness a has a volume of pi z z a
    7. Re:Bad choice of hook by oojah · · Score: 1

      As I understand it:

      free = doesn't cost anything (also known as 'free as in "beer"')

      Free = unrestricted = freedom (also known as 'free as in "speech"')

      --
      Do you have any better hostages?
    8. Re:Bad choice of hook by The+Bungi · · Score: 1
      Most people don't give a flying fuck if some socially-challenged techie cults decided there was a fundamental difference between "free" and "Free" - for the majority of people "free" means "no cost". Nothing more, nothing less.

      Now you might want to try and get the Mozilla folks to evangelize the subtle differences between the two phylosophies, but I don't think you'll have much luck. Still, be my guest and send them a rambling RMS-esque nastygram to see what they do - I mean, if the term "free download" keeps giving you this "bad vibe".

    9. Re:Bad choice of hook by Anonymous Coward · · Score: 0
      Long time no see on slashdot.

      Where have you been? Got tired of Trolling?

    10. Re:Bad choice of hook by syrinx · · Score: 1

      what the hell is 'IRC Chat"? Something you do with an LCD display and a PC computer?

      Make sure you have a NIC card in that PC computer. (and don't forget your PIN number..)

      --
      Quidquid latine dictum sit, altum sonatur.
    11. Re:Bad choice of hook by Brynath · · Score: 1

      Ummm no, look at the grammer of those sentences.

      Free one month subscription! Only $6.95!

      Is correct, where as:

      free one month subscription! Only $6.95!

      Is not correct.

      If they used:

      One month subscription for Free! Only $6.95!

      That would be incorrect, and I wouldn't hound you about it.

    12. Re:Bad choice of hook by mrchaotica · · Score: 1

      What he's trying to say is that when people see "FREE DOWNLOAD!!!" it's usually Bonzi Buddy or something -- there's a catch. Mozilla needs to do something like the Saturn commercials to avoid that and make it clear that there is no catch.

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    13. Re:Bad choice of hook by mrchaotica · · Score: 1

      I don't think the grandparent poster is trying to be pedantic like RMS, I think he's worried that people will see "free download" and think it's just like all the restrictive shareware and spyware and whatnot that also says "free download." He just wants it to be explicitly clear that it's "completely free with absolutely no catch unless you're a developer."

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    14. Re:Bad choice of hook by sharkey · · Score: 1

      Now we just need a "Go Ugly Early" theme to round it out.

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    15. Re:Bad choice of hook by Anonymous Coward · · Score: 0

      Log a bug against the website in Mozilla.org's Bugzilla then.

    16. Re:Bad choice of hook by takkaria · · Score: 1

      Reminds me of what someone on IRC said once: "I only got interested in Linux because someone mentioned free beer"

    17. Re:Bad choice of hook by Slurm-V · · Score: 1

      Leading to accusations of Liberal Software bias - namely favouring the 0s over the 1s

      --
      Of course it's going off the rails. How else is it ever going to fly?
  26. Not Even The Half Of It! by ackthpt · · Score: 5, Interesting
    how Firefox is being plugged. It's pretty obvious IMHO from the site that Firefox has the wind in its sails

    Let's talk understatement here. You don't offer this kind of thing without a significant commitment to the package.

    --

    A feeling of having made the same mistake before: Deja Foobar
    1. Re:Not Even The Half Of It! by Stephen+Williams · · Score: 4, Funny

      I hope Microsoft never decide to copy that idea.

      Talking plush Clippy: "It looks like you are trying to cuddle me. Would you like me to offer suggestions for improving your hugging technique?"

      -Stephen

    2. Re:Not Even The Half Of It! by Mr+Smidge · · Score: 4, Funny

      I do actually feel an unstoppable compulsion to buy one of them..

    3. Re:Not Even The Half Of It! by thephotoman · · Score: 1

      I could just see them using the voice of Gilbert Godfried on that thing, much like they did when they were pushing Office XP...they said he wouldn't be there, and when I first started Word, there was Clippy again.

      I almost shoved my computer out the window after that one.

      --
      Haec merda tauri est. Ceterum censeo Carthaginem esse delendam.
    4. Re:Not Even The Half Of It! by vsprintf · · Score: 1

      Get 'em quick. These are going to be geek collector items after the next name change. We can start collecting the series. Anybody got a Firebird (and I don't mean an old Pontiac) they want to sell? It's what I'm still running at work.

    5. Re:Not Even The Half Of It! by Anonymous Coward · · Score: 0

      Nice to see the devs supporting the furry demographic.

    6. Re:Not Even The Half Of It! by mrchaotica · · Score: 1

      No, no, no! You've got it backwards: shove the Windows out of the computer!

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    7. Re:Not Even The Half Of It! by Anonymous Coward · · Score: 0

      Then it would start offering you penis enlargements, give you the plague, then burst into flames screaming "hardware error, please hit enter to continue!"

    8. Re:Not Even The Half Of It! by thephotoman · · Score: 1

      Well, I did. Both of my computers, actually.

      Okay, so I still run the default OS on my TI-89 and I also run PalmOS on my m130, but aside from those, I run a combination of Fedora Core 1 and Debian/Knoppix (installed).

      --
      Haec merda tauri est. Ceterum censeo Carthaginem esse delendam.
    9. Re:Not Even The Half Of It! by CGP314 · · Score: 1

      This shirt will be very handy the next time the open source community is accused of being dirty communists.

    10. Re:Not Even The Half Of It! by ackthpt · · Score: 1

      Firbird toy -- was there one?

      --

      A feeling of having made the same mistake before: Deja Foobar
  27. Links to the Alphas buried? by Beautyon · · Score: 2, Insightful

    Links to the bleeding edge 1.8 Alpha versions are not immediately apparent...why?

    --
    ATH0 Bitcoin: 1DnwFLXczVZV8kLJbMYoheUrpqHesjxrSi
    1. Re:Links to the Alphas buried? by bizpile · · Score: 4, Insightful

      Links to the bleeding edge 1.8 Alpha versions are not immediately apparent...why?

      That was the first thing I noticed, I'd have to guess they are trying to go more mainstream and make downloading their brower less ambiguous for the masses.

    2. Re:Links to the Alphas buried? by Juanvaldes · · Score: 1

      Links to the bleeding edge 1.8 Alpha versions are not immediately apparent...why?

      I think you have answered this for yourself.

    3. Re:Links to the Alphas buried? by Mr+Z · · Score: 1

      Where are they buried? I couldn't find them at all!

    4. Re:Links to the Alphas buried? by nazh · · Score: 1

      for the mozilla suit, there is a link to "Other Systems & Languages" on the mozilla suit page. where you can find the last builds,

    5. Re:Links to the Alphas buried? by xombo · · Score: 1

      Most likely because they want to look like most of the other software sites on the net and be recognized not as an "unstable" Netscape but as a product in its own right.

  28. New Zealand release names by Anonymous Coward · · Score: 0

    Some Kiwi must have infiltrated the Mozilla.org marketing department, and renamed the upcoming release candidates after parts of Auckland/Coromandel (One Tree Hill, Greenlane, Mission Bay, Whangamata).

    Those dirty Kiwis (JAFAs) will try anything they can get to get free marketing :P

    ps. I'm from Wellington, NZ.

    1. Re:New Zealand release names by ThePeices · · Score: 1

      I think a Kiwi is part of the coding team, as when you go the the connection settings part of the options dialog, you will see" Example: mozilla.org, .net.nz" for the No Proxy for section. btw, im in ChCh, NZ

    2. Re:New Zealand release names by Anonymous Coward · · Score: 0

      yes the main developer for Firefox Ben Goodger http://bengoodger.com/ was raised in NZ

    3. Re:New Zealand release names by Nermal6693 · · Score: 1

      I always thought that .net.nz was just Firefox being clever and detecting my country. Now it appears not. And since we're all saying where we're from, Whakatane, NZ. :)

    4. Re:New Zealand release names by Slurm-V · · Score: 1

      Ben Goodger, lead developer of firefox, is JAFA. Many of the codenames for firefox releases have been Auckland suburbs or places (One Tree Hill, Greenlane etc). Wellington, myself.

      --
      Of course it's going off the rails. How else is it ever going to fly?
  29. Sunbird by Feneric · · Score: 2, Interesting

    It's a pity that Sunbird isn't given any sort of prominence along with Thunderbird... it's already very usable and fills its niche nicely.

    1. Re:Sunbird by Anonymous Coward · · Score: 0

      WTF are you talking about?

    2. Re:Sunbird by Feneric · · Score: 1

      Sunbird is the calendar component of the Mozilla application suite, much as Firefox is the browser component and Thunderbird is the e-mail component.

    3. Re:Sunbird by Spad · · Score: 1

      It's only at 0.2 - I'm sure once it reaches a reasonable level of functionality and stability they'll start including it with all of their other products on the front page.

    4. Re:Sunbird by sgtsanity · · Score: 2, Informative

      I thought that too... until I tried to print my schedule and it froze up. That said, it's good enough that I use it for my calendaring. But isn't anywhere near as polished as Firebird and Thunderbird.

  30. Good to see their money is going to good use by flend · · Score: 3, Funny

    Were they stuck for something to do when they realised they no longer had to keep renaming Phoenix/Firebird/Firefox?

  31. Avid FireFox user... by Anonymous Coward · · Score: 0

    Since the 0.9.3 security update release of FireFox, I have had a significant number of browser crashes lately.

    As much as I love FireFox, may IE burn in hell, I have become quite frustrated with FireFox. Yes, I realize that it's not version 1.0 yet, but being this close to 1.0, I never had it crash once until 0.9.3 was installed.

    I was truly hoping that this would have been an update article to my favorite browsers.

    Get a free iPod from freeiPods.com

    1. Re:Avid FireFox user... by Anonymous Coward · · Score: 0
      Get a free iPod from freeiPods.com


      Jesus fucking christ. Are people STILL falling for these pyramid schemes?

  32. Mirror by romper · · Score: 5, Funny

    Mirrored here.

    --
    Right is wrong when left is right.
  33. Don't work with MSN music by methano · · Score: 3, Informative

    OK, so this is off topic. But I just tried the new MSN music site and some of the buttons (like search) don't work in FireFox. What a piece of crap. I'm going back to IE. (just kidding, about going back that is. The search button really is DOA).

    1. Re:Don't work with MSN music by Anonymous Coward · · Score: 0

      Why would you be on the MSN music site in the first place. FireFox did you a favor.

    2. Re:Don't work with MSN music by FuzzyBad-Mofo · · Score: 1

      Imagine that, a Microsoft site that fails to work properly with a non-MS browser!

  34. No, but it's broken in IE =D by Anonymous Coward · · Score: 0

    All the images flicker strangely in IE. Cross-browser testing anyone? ;)

  35. Nice site - make sure you refresh by Random+BedHead+Ed · · Score: 1

    If you've been to mozilla.org recently, make sure you refresh once or twice. I discovered an odd-looking page when I followed the link, and I was sure that the designers must have gone crazy. Turns out that my browser (Firefox) was using a cached version of their old CSS file and was applying it to the content of the new site. Yuck. Refreshing fixed this.

    I think the site looks beautiful. Clean, slick graphics. The old site made great use of CSS, but the color scheme here is a lot more likeable. And they've really pushed Firefox, once a little project you had to surf through the site to find, to the forefront. Clearly they know what people are looking for these days. I'm waiting for the next release.

  36. Qute by r.jimenezz · · Score: 1, Interesting
    My only gripe with Firefox was when they stopped shipping Qute as the default theme. Mind you, the screenshot on the new home page clearly shows that it was taken using Qute :)

    This of course is not a big deal. I still get Qute whenever I have to install Firefox.

    --
    The revolution will not be televised.
    1. Re:Qute by Anonymous Coward · · Score: 0

      Nope. The screenshot is of a browser using the default theme, not Qute.

    2. Re:Qute by gad_zuki! · · Score: 3, Informative

      Actually the screenshot is the default theme.

      Its actually a lot better looking if you right-click>customize>use small icons. I thought I'd be busy downloading themes, but the ugly default theme is actually pretty handsome and useable when using "small icons."

    3. Re:Qute by Drathos · · Score: 1

      Um.. You sure you're looking at the right page?

      The shots on both the main page and the Firefox page are clearly the new theme, not Qute.

      --
      End of line..
  37. Firefox PR1 by eegad · · Score: 2, Interesting

    This roadmap indicates the PR1 for 8/30. Where is it? Hmm...

  38. Yup by CurbyKirby · · Score: 4, Informative
    # Focus development efforts on the new standalone applications: the browser currently code-named Firefox, the Mozilla Thunderbird mail/news application, and standalone composer and other apps based on the the new XUL toolkit used by Firefox and Thunderbird. We aim to make Firefox and Thunderbird our premier products.

    # Updated: Maintain the SeaMonkey application suite, currently built by default, for enterprises and other organizations with large existing Mozilla deployments. SeaMonkey remains an important product for many customers.

    from http://www.mozilla.org/roadmap.html

    --

    --
    "Extra Anus Kills Four-Legged Chick" -- Headline
  39. D'oh! by ackthpt · · Score: 1
    To be fair, the Philly story was posted, and will doubtless be posted again tomorrow at the latest in case you missed it.

    Indeed! To which I utter the required "D'oh!" and slap my forehead in the prescribed manner.

    There's still the Owl/Beetle thing.

    I wonder if Philly will leave browser choice open to the individual or if this represents too large a carrot to ignore and some big company tries to pull a hammerlock worthy of Olympic wrestling on them to lock every user into a particular one which just happens to require a fat O/S and hardware to accompany it. Probably should forward the 'sleek' Mozilla.org page to the movers and shakers in Philly....

    --

    A feeling of having made the same mistake before: Deja Foobar
  40. KISS by rolling_bits · · Score: 1

    I loved the KISS style of the new layout. But what do I know? I'm no designer. :-)

    1. Re:KISS by darth_MALL · · Score: 2, Funny

      Personally I preferred the old Judas Preist style, but hey...Diff'rent Strokes, Eh?

  41. Slate by MyShinyMetalAss · · Score: 2

    Looks OK. The screenshot of the much-debated Slate article is a nice touch, though.

    --
    This is not an automated signature. I type this in to the bottom of every message.
    1. Re:Slate by Fenris+Ulf · · Score: 2, Interesting

      Hit reload, it's only one of many (I got The Onion the first time)

  42. Awww by acariquara · · Score: 1
    that is so kawaii ^_^

    Ok, you can officially hate me now.

    --
    Dear aunt, let's set so double the killer delete select all
  43. Disappointment. by Anonymous Coward · · Score: 0

    How disappointing that they haven't taken this opportunity to rename any of their software.

  44. Re:Great new look! Same old shit... by schon · · Score: 1, Funny

    he's talking about Perl and you're talking about line noise. Big difference there

    Judging from some of the perl scripts I've seen, it's not as big as you think. :o)

  45. Well...You finally got me by Anonymous Coward · · Score: 0

    I d/l'ed the FireFox, and I'm sold. nice bloody browser. So where am I going to feel the pinch using FF over IE? Page rendering errors? Let me know folks.

    1. Re:Well...You finally got me by lightdarkness · · Score: 1

      After finally making the switch from IE to FF, the only thing you will expirence is better features, and more security :-P

    2. Re:Well...You finally got me by md81544 · · Score: 1

      The ONLY website, in my experience, which fails to render correctly, is freakin' Slashdot. Come on guys! When is it going to get fixed? You can't go on blaming the other party forever.

    3. Re:Well...You finally got me by Zardus · · Score: 1

      Out of curiosity, where does Slashdot render improperly? I can't see any errors (using Firefox .8 or .9). In Konqueror, Slashdot renders horribly (the user pages), but not in Firefox on my computer.

      --
      You can mod your friends, you can mod your nose, but you can't mod your friend's nose.
    4. Re:Well...You finally got me by Anonymous Coward · · Score: 0

      I think it's fair to say that most site developers don't test with Firefox. In my experience quite a few sites have some issues with it. The problems are not always serious, but sometimes they are. Some sites have scripts that do not work properly under Firefox, e.g. I have used an online email client that had some functions unusable with Firefox. Despite security concerns, I tend to use IE for online transactions, because I'm pretty sure my bank/broker/insurance co. has tested with that.

    5. Re:Well...You finally got me by valkraider · · Score: 2, Informative

      In all of the Mozilla browsers, on XP SP2 at work and OSX at home, Slashdot overwrites the lefthand "menus" and the main section text - about a fifth of the time. Usually a re-load will fix it. This is present in Mozilla, Firefox, and Camino.

    6. Re:Well...You finally got me by Anonymous Coward · · Score: 0

      There's clearly a bug in the table handling. There is an internal site at my company that includes a table which Firefox will randomly calculate the wrong width for. I've used the DOM inspector to examine it, and I've looked at the source for the page. Firefox is very clearly calculating the wrong width.

    7. Re:Well...You finally got me by md81544 · · Score: 1

      Not that I disagree with your diagnosis, but why do you think /. is the ONLY site on which I see this problem? Firefox is perfect on every single other site.

    8. Re:Well...You finally got me by Mr+Z · · Score: 1

      I see the same bug, and I seem to recall there was a reflow bug that was fixed in 1.8alpha that mostly fixes this. I'm not 100% sure though. I hit it all the time on my slower Mac before, and I think I've hit it once since upgrading to 1.8alpha.

      The weirdest thing is if you switch tabs and come back (without refreshing), the page will fix.

      --Joe
    9. Re:Well...You finally got me by mrchaotica · · Score: 1

      I would call that proof that the bug is in Mozilla, not the website then.

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

  46. Firefox is more popular by jeti · · Score: 2, Interesting

    It looks like the start page for Firefox is accessed nearly eight times as often as the start page for Mozilla.

    1. Re:Firefox is more popular by Papineau · · Score: 1

      Without a survey of users to really know why, it could be as simple as Mozilla's users do change their homepage while Firefox's users don't.

  47. Stallman's Purges by Anonymous Coward · · Score: 1, Funny

    Oh, for fuck's sake...

  48. Looks nice! by lpangelrob2 · · Score: 5, Funny
    Rumor has it they also tried to change the name of the site to http://www.firelizard.com, but the technical barriers were too high to overcome.

    (Yes, I use Firefox ;-) )

  49. Re:Great new look! Same old shit... by el-spectre · · Score: 2, Funny

    If we're talking about 1 programming language and 1 interpreter, this is ok (I'm a perl fan myself). But since we're talking about scores of browsers from different makers in different countries, the standards should be adhered to.

    Besides, real programming languages have enough built in intelligence (scoping, flow control structures, etc) to make some assumptions. Basic HTML does not.

    BTW: Only GOOD perl looks like line noise :)

    --
    "Faith: Belief without evidence in what is told by one who speaks without knowledge, of things without parallel." - A.B.
  50. Firefox by StevenHenderson · · Score: 1

    Am I wrong, or was Firefox 0.9.3 not released until the new web page design?

  51. Thanks mozilla guys. by Anonymous Coward · · Score: 3, Insightful

    Looks nice, And valid too!
    --
    Slashdot only allows a user with your karma to post 2 times per day (more or less, depending on moderation). You've already shared your thoughts with us that many times. Take a breather, and come back and see us in 24 hours or so.
    -
    I'm still posting :-)

    1. Re:Thanks mozilla guys. by Spad · · Score: 1

      Well you'd hope so.

    2. Re:Thanks mozilla guys. by Anonymous Coward · · Score: 1, Insightful

      Looks nice, And valid too!

      *cough*

    3. Re:Thanks mozilla guys. by Nimey · · Score: 1

      Their CSS evidently needs a little work, though.

      --
      Hail Eris, full of mischief...

      E pluribus sanguinem
    4. Re:Thanks mozilla guys. by BZ · · Score: 1

      The CSS is perfectly valid CSS3. The validator only speaks CSS2.

  52. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 0
    I believe it was Larry Wall who said that a program should do what the user wants and do its best to figure out what the user wants, even if the user put in incorrect commands.

    It's a pity he didn't subscribe to that philosophy when he wrote Perl.

  53. Mod offtopic if you must by eadint · · Score: 1

    This is probably the most absolute worst place to post this but.
    Ive noticed that on thunderbird when authenticating to a xxx\ domain the password manager seems to have a real hard problem remembering the passwords, its really annoying to have to reauthenticate all the time. any one else have this problem and do you know of a olution for it.

  54. Extensions vs. plug-ins by Allen+Varney · · Score: 2, Interesting

    I wish the Firefox page had easy front-page links to both the Extensions list and the Plug-ins list. Maybe I missed the link, but the most convenient way I know to find the plug-ins is through a search engine. Does anyone know why extensions and plug-ins have to have separate pages?

    1. Re:Extensions vs. plug-ins by capt.mellow · · Score: 1

      hmmmmm I always just click on the 'get more extensions' link in the extensions configuration window (click 'tools', 'extensions').

    2. Re:Extensions vs. plug-ins by RichM · · Score: 1

      The proper way now is via update.mozilla.org.

  55. They know my system. by vitaflo · · Score: 5, Insightful

    It seems the website knows what system I'm running, as they offer for me to download the OS X version of Firefox, yet the screenshot of it to the right shows the Windows version. It'd be nice if they tailored this page to me a bit more and showed a screenshot with OS X chrome.

    1. Re:They know my system. by Anonymous Coward · · Score: 0

      Log a feature request against the website in Mozilla.org's Bugzilla then.

    2. Re:They know my system. by Anonymous Coward · · Score: 0

      Test post, please ignore.

    3. Re:They know my system. by OmniVector · · Score: 1

      screw that. i want working middle-click to open a tab support, and working right click menus when using all-in-one-gestures. i'm sick of their abismal os x support.

      --
      - tristan
    4. Re:They know my system. by Anonymous Coward · · Score: 0

      Test post 2, please ignore.

    5. Re:They know my system. by archen · · Score: 1

      How about using the apple key + M which minimizes every other app, but launches mail in Firefox. At least twice a day I get caught with this. I think it even says it will minimize the window, but still launches the mail app. Rather fustrating. =/

    6. Re:They know my system. by mrchaotica · · Score: 1

      Well, it minimizes Firefox : )

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    7. Re:They know my system. by mrchaotica · · Score: 1

      For me (using Firefox in OS X), cmd-click opens a link in a new tab, and ctrl-click opens a context menu. I don't use all-in-one-gestures, though...

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    8. Re:They know my system. by mrchaotica · · Score: 1

      err, for me, that is (0.8 in OS X.3.5).

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    9. Re:They know my system. by takkaria · · Score: 1

      It'd be nice if they detected what version of Windows you're using and what visual theme you have loaded and customize it appropriately. Sadly, it's a waste of time when they could be doing better things.

  56. Step right up... by xactuary · · Score: 1

    all you Windows users, and click right here on this giant link. Users of all other pesky OSs will be required to poke around a bit for your bothersome bits.

    --
    Say hello to my little sig.
    1. Re:Step right up... by Rgb465 · · Score: 1
      Users of all other pesky OSs will be required to poke around a bit for your bothersome bits.
      The "giant link" points to the Linux build for me... :\
    2. Re:Step right up... by Feneric · · Score: 1

      I believe the giant link works appropriately for MS-Win, Mac OS, and Linux/X86 systems. I know it currently doesn't work for Solaris/SPARC...

  57. Great! Now I just have to wait by i_r_sensitive · · Score: 2, Funny

    until Oct 11 next year for Debian to percolate it out of unstable!

    --
    "Talk minus action equals nothing" - Joey Shithead, D.O.A.
    "Talk minus action equals /." -
    1. Re:Great! Now I just have to wait by sharkey · · Score: 1

      God has a special place for the pathetically optimistic. Next year indeed!

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
  58. Lets not slashdot Mozilla *again*... by MikeCapone · · Score: 1

    Why not link to it using the Coral caching system?

    Use this link instead: Mozilla.org.nyud.net:8090

  59. Bring back the Quickies by Anonymous Coward · · Score: 4, Interesting

    While I don't agree with most of your post, I do agree that this item didn't really deserve its own article. The problem is that we don't get Quickies anymore. Remember those? One article that referred to several small items, all worthy of a nerd's attention but not important enough to warrant their own separate articles. For some reason, we don't see those anymore. I thought they were quite fun. A lot of fun's been taken out of /. lately... :(

    1. Re:Bring back the Quickies by ackthpt · · Score: 1
      we don't get Quickies anymore. Remember those?

      Yeah, I kinda miss those, what's up with that?

      I rather understand why Katz hasn't had an article in ages, after all the tards who didn't like his articles couldn't resist sh!tting all over them with their witty repostes.

      --

      A feeling of having made the same mistake before: Deja Foobar
    2. Re:Bring back the Quickies by vsprintf · · Score: 1

      I rather understand why Katz hasn't had an article in ages, after all the tards who didn't like his articles couldn't resist sh!tting all over them with their witty repostes.

      Hey, if the editors can post dupe articles, we slashbots should be able to post dupe comments. (Sorry, I tried to resist but failed.) :)

    3. Re:Bring back the Quickies by Anonymous Coward · · Score: 0

      Actually they laid Katz off as a cost cutting measure.

    4. Re:Bring back the Quickies by TwP · · Score: 1

      A lot of fun's been taken out of /. lately... :(

      Welcome to Slashdot!
      We're putting the "fun" back into dysfunctional!

  60. I like it! by ki4bbo · · Score: 2

    All I can say is wow, this is a great change, almost too great! I came here this morning looking for the latest nightly build, I saw the new design and almost had a heart attack, I thought I had mistyped the URL or something!

    I think the new design gives it much more of a professional look, which is good, I think it will attract more people, and overall be better for there company.

    The blue look deffinatly looks professional. Regarding the old design, something about all that red made me see red :P

    Conclusion: I love firefox! - Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040831 Firefox/0.9.1+

  61. Just glad by A_Non_Moose · · Score: 5, Funny

    I'm just glad the got rid of that damn "find toolbar".

    Dear $deity in heaven, why would they screw up a perfectly good feature like find as you type?

    Insult to injury was when typing in passwords to my Novell server, the new find bar proudly displayed my password in plain view. Thank the same $deity no one was around, and my monitor faces a wall.

    Why didn't they just add a Clippy type character that can speak through the voice software in windows:
    "It looks like you are typing in "$password" as your password, would you like some help typing in your passwords?"

    Whoever thought that find bar up deserves 10 lashes with a cat5 o' 9 tails.

    --
    Have you read the moderator guidelines? Well, have you, PUNK? (and I want a Karma: Gnarly option)
    1. Re:Just glad by Anonymous Coward · · Score: 0

      The toolbar is still there.

      If you just downloaded 0.9.3, and you had a nightly before (only way you could have gotten the toolbar), you just went to an older codebase.

      The toolbar will be back to haunt you in 1.0PR (or whatever they call it now) and anything later.

  62. Nitpicking by faust2097 · · Score: 2, Interesting

    The tabs need an selected state, right now if I click on 'Products" it takes me there but when I go into a subpage there's no indication that I'm still in the Products section.

    Also, a lot of pages like Module Owners are still pretty nasty.

    Nice work though, it's always nice to see more standards compliant websites that actually look good.

    1. Re:Nitpicking by AndrewCox · · Score: 1

      Even more interesting is that the tabs do have a selected state, but the programmer/designer labeled the body tags wrong. If you can edit the CSS (I used a Firefox extension to do so), you can see that if you rename the body class to the proper name, the designers had intended for there to be a selected state (the tabs should be white when selected). I'd expect to see this corrected very shortly.

      It also looks like they used the Sliding Doors technique. Very cool!

      One other note - I found it interesting that Firefox displays the page optimized for 800x600 whereas IE 6.0 has a liquid layout that spans the whole screen.

      --
      The Red Pill ... all I'm o
  63. Talk about corp speak... by Anonymous Coward · · Score: 0
    Fresh from their "relaunched" site:

    Firefox will be one of the most critical delivery vehicles for Gecko technology in the 2004 and beyond. In order to get the best return on the years of effort that has gone into creating the platform upon which our software is built, exacting standards of quality and performance must be met. Our target for our 1.0 release is "best of breed" browser product on Windows, Linux, and MacOS X and before we can make that claim, a number of things need to be done. These tasks will be broken into the milestones that remain between now and 1.0.

    http://www.mozilla.org/projects/firefox/roadmap.ht ml
  64. Thunderbird integration? by Anonymous Coward · · Score: 3, Insightful

    Does anyone know how well Firefox integrates with Thunderbird? Specifically, if I click on a "mailto" link in Firefox, will it pull up Thuderbird without any custom configuration (assuming Thunderbird is installed)?

    Last I looked into this, Firefox and Thunderbird would not work together like this "out of the box". This was a real bummer, and it made me wonder if Firefox wasn't being targeted a little too much at the geek community. Compared to the simple integration of IE and Outlook Express, the Firefox/Thunderbird integration was really clumsy.

    (On a side note, it kinda irritates me that Firefox is being pushed so hard over Mozilla. I've had a few clients download Firefox (thinking it was a Mozilla update), and then wonder why they couldn't get to their email program anymore when it replaced all of the Mozilla icons...)

    1. Re:Thunderbird integration? by xactuary · · Score: 1

      Check out Mozilla 1.7.2 for the total package.

      --
      Say hello to my little sig.
    2. Re:Thunderbird integration? by sabat · · Score: 1

      It depends on if you're running Windows or something else. On Windows, it behaves as you'd expect. On Linux, I'm still doing the old copy-location, paste-location trick. :(

      --
      I, for one, welcome our new Antichrist overlord.
    3. Re:Thunderbird integration? by Anonymous Coward · · Score: 1, Interesting

      I'm well aware of the "total package"; my gripe is that many non-geek users who are used to tight browser/email integration are getting themselves into a pickle when they download Firefox and all the sudden their mail program is missing.

      I've been plugging Mozilla to clients for a couple years now, and have gotten a number of people to convert. And as it turns out, most of them have converted for the *email client*, not the browser (this is in small offices that are sick of getting hit by OE viruses).

      This worked well, and most of these people eventually started using the Mozilla browser as well. I was elated to see non-techie people switching over so easily, and even moreso when they were going to the mozilla.org website and upgrading on their own inititive.

      But over the past two months I've had a few of these clients go to the site and end up downloading *Firefox* because of how much prominence Firefox is given. Not knowing any better, they install it right over mozilla (it replaces the icons), and I've had to start fielding calls about why the mail program suddenly disappeared.

      This is really irritating. Mozilla.org started as a place to go to get a suite, and now, without any warning, the primary download is just a browser. Ok, so maybe it's all explained in the roadmap, but this really needs be printed in a big bold yellow caution banner across the top of the screen: "Firefox is NOT Mozilla -- if you have been using Mozilla for email, DO NOT DOWNLOAD FIREFOX OR YOU'LL BE SCREWED.

      It's frustrating. Mozilla.org should have remained the website for the Mozilla suite, and Firefox should have gotten it's own website or something.

    4. Re:Thunderbird integration? by Anonymous Coward · · Score: 0

      There's really no fool proof way for it to know if thunderbird is installed or not. This sort of configuration is really more of a distro thing.

    5. Re:Thunderbird integration? by kbmccarty · · Score: 2, Informative

      It depends on if you're running Windows or something else. On Windows, it behaves as you'd expect. On Linux, I'm still doing the old copy-location, paste-location trick. :(

      If you're running Gnome 2.6, go to Applications -> Desktop Prefs -> Advanced -> Preferred Applications, and select the Mail Reader tab. Then check the Custom Mail Reader radio button and enter

      mozilla-thunderbird -compose '%s'

      into the text entry box. It works for me, at least (running Debian unstable). Too bad this isn't automatic.

      --
      - Kevin B. McCarty
    6. Re:Thunderbird integration? by sabat · · Score: 1

      Any trick to going the opposite direction? (Click on a link in a Thunderbird mail opens page in Firebird.)

      --
      I, for one, welcome our new Antichrist overlord.
    7. Re:Thunderbird integration? by kbmccarty · · Score: 1

      Go to the "Web Browser" tab in the same dialog box, check the "custom web browser" button and enter "mozilla-firefox '%s'" into the text entry, I suppose. Haven't tried this personally though.

      --
      - Kevin B. McCarty
    8. Re:Thunderbird integration? by retinaburn · · Score: 1

      From what I have noticed the 'mail icon' and any mailto links open up in your system defined mail client. If its thunderbird then you are golden, I have Lotus Notes, so its a P.I.T.A :)

  65. Cool by xactuary · · Score: 1

    Good. Browsing on the wife's machine (WinXP)... my mistake.

    --
    Say hello to my little sig.
  66. It's AQUATASTIC! by Anonymous Coward · · Score: 0

    Subtle tones and lots of space

    all should take note

  67. Speaking of GNOME, what will happen to Galeon? by Rex+Code · · Score: 1

    Honestly. Mozilla includes everything and the kitchen sink. That's overkill for most users. As the Gnome folks learned the hard way a few good options are much more welcome than every little tidbit of configurability.

    Any idea how the shift from the old Mozilla to the new Firefox will affect projects like Galeon and Epiphany? I've been trying to find out if Firefox will provide compatible Gecko libraries for third party Gecko-based browsers such as these, but haven't had much luck.

    1. Re:Speaking of GNOME, what will happen to Galeon? by zemoo · · Score: 1

      Galeon is no longer GNOME cannon, and its future depends on its developpers.

      The Mozilla and Gnome foundations met a while back, but the Gnome people said Epiphany would stick around as long as people kept working on it.

      It's too bad they don't have support for Mozilla extensions like AdBlock, because they really nice browsers and a much better user experience (IMHO) than the very Windows-ish and Toy-ish Firefox (I want Ctrl-K to work as expected on a UNIX machine!)

  68. CHANGE THE "FREE" BIT! by Eric_Cartman_South_P · · Score: 4, Insightful

    It looks great. Awesome. Great new site.

    Expect lets make it more clear that Moz is free. "Free Download" makes me think of a demo, or a trial, or the __download__ is free but might cost more later.

    It should say "x is a FREE product. Free to own and use forever."

    1. Re:CHANGE THE "FREE" BIT! by Anonymous Coward · · Score: 0

      It might confuse users, because IE is also "a FREE product. Free to 0wn and use forever."

    2. Re:CHANGE THE "FREE" BIT! by panaceaa · · Score: 1

      If you saw a link like this:

      x is a FREE product. Free to own and use forever.

      Would you think it was a link to download the product? I wouldn't. I'd think it was a link about how the product was free. Then I'd look elsewhere for a place to download it.

      "Free Download" may not express the GPL as religiously as some would like, but it clearly expresses that the link points to where to DOWNLOAD the program for FREE.

    3. Re:CHANGE THE "FREE" BIT! by Enrico+Pulatzo · · Score: 1

      It's NOT ownership. It's free to license. That doesn't sound desirable to most users. "I've got a free license! Woo hoo! It may cost 6 bucks for a CD, but the license is free." Free Download is what home users care about. Mozilla needs to target it's site to the people who download Bonzi Buddy and other crap. This site makes it easy for people to download a copy of Firefox or Mozilla. This is a very nice redesign.

      That being said, I think it should say something like "Free Download--Won't Cause Popups"

      This is among the primary concern of home users nowadays. They don't care that malware is on their computer (unless it actively steals their credit card info), they only care about keeping the damn popups away.

    4. Re:CHANGE THE "FREE" BIT! by littlem · · Score: 1
      It looks great. Awesome. Great new site.

      Moz/Firefox is about the only browser to support max-width (the CSS property most useful to legibility?) - their web-site designers don't seem to have heard of it though...

    5. Re:CHANGE THE "FREE" BIT! by CiaranMc · · Score: 1

      You can actually duplicate this behaviour (and many other missing features) using IE's horrid expression() syntax.

      Of course it'd be far better if it just supported CSS standards correctly...

    6. Re:CHANGE THE "FREE" BIT! by tepples · · Score: 1

      You can actually duplicate this behaviour (and many other missing features) using IE's horrid expression() syntax.

      And you can leave the dirty work to IE7.

  69. By way of analogy... by MenTaLguY · · Score: 1

    z teechz bd 4 h8n ppl writ liek thiz or z ppl bd 4 writ liek thiz LOLZ

    --

    DNA just wants to be free...
  70. Re:LOL by GrimReality · · Score: 3, Interesting

    Site not accessible with Firefox.

    ...

    That's why I always refer to the Mozilla suite as ... Perhaps Netscape could provide them with their newest code instead of letting them just reuse their obsolete Netscape 4.x code. Who knows.

    I agree that Firefox is a heading in new avenues of user friendliness, but there is nothing wrong with the Mozilla Suite for its target audience.

    Furthermore, there are some serious issues with Firefox (not the browser itself, but the whole movement/its existence itself):

    • It is on its way, but currently, it is not yet ready.
    • From what can be seen, it seems to be encouraging separate applications that duplicate Mozilla stuff. e.g. consider Thunderbird.

      Why can't Mozilla Mail, Mozilla Addressbook, Mozilla Composer etc. be available as simple extensions? There seems to be tonnes of nifty new extensions, but making these extensions would be great.

      Also, there should be a proper way to manage extensions, which should not rely solely on the profile, which can easily be lost (at least for the stuff that are installed in the installation tree and not the profile.) I admit Mozilla Suite doesn't have it, but everyone says it sucks, so one doesn't expect anything good from it, right ;-)

    • The non-Windows versions seem to be neglected in relation to the Windows version (Note: This is a relative thing.)
    • Some configuration options are missing (I appreciate the necessity of that) which should be available in an 'Advanced' section or something.

    Ending my dumb views. Thanks for reading.

  71. Re:Great new look! Same old shit... by Bart+Read · · Score: 0

    Umm, I don't know which version of Firefox you're using, or on which platform, but I can assure you that on WinXP running Firefox 0.9.2 (oops, better upgrade) /. renders just fine... in fact it looks exactly like it does in IE6 with WinXP SP 2 installed. Have you actually tried using Firefox recently?

  72. Re:Great new look! Same old shit... by Kaemaril · · Score: 1

    It does? It's always looked fine to me...

    Conceivably I am just lucky.

  73. Liked the old one better by Mad+Ogre · · Score: 1

    The old site had all the info right on the front page... the Alphas and the news... this new version is worthless. Old Hottness, New and Busted.

    --
    MadOgre.com
  74. And if you don't... by memco · · Score: 1

    want to use his referral, mine's welcome as well.

    --
    Get me a meat pie floater!
  75. Well Actually... by Mikelikus · · Score: 1
    ...in my calendar August 30 has already passed so it is getting farther by the day.

    ...release candidates of the latest browser are getting closer by the day.
    --
    -- Would it be acceptable to just put my name on my sig?
    1. Re:Well Actually... by mpeach · · Score: 1

      PR != RC.

  76. Re:LOL by shufler · · Score: 1

    I think you've missed the point of projects such as Firefox and Thunderbird.

    Firefox is supposed to become the browser used in the Mozilla Suite (and will be rebranded "Mozilla Browser." Likewise with Thunderbird, Sunbird, and some other applications.

    They have been recoded from scratch, to be better than Mozilla in every conceivable way. The interoperability won't exist, as the Mozilla Suite is being phased out to be replaced by the Mozilla Suite.

    Yes. I just said what I said.

  77. Re:Great new look! Same old shit... by Mr+Z · · Score: 1

    Sometimes I get a weird layout problem where the center table (where all the articles are) overlaps the navbar at the left. Seems to happen on slower computers more. Could be a style sheet / reflow related thing.

  78. Amazon Effect by atomicbirdsong · · Score: 1

    Isn't this just a low budget version of the Macromedia site?

    I miss the old color scheme. Yeah it looked kind of pissy/crappy but at least Mozilla owned pissy/crappy. And square too.

    While I am adding my utterly worthless 2 cents (since thats what this submission is mostly about), I also would like a bigger draggon (god/mozilla, whatever...). I think a lot of people get excited about Mozilla because of the draggon...seriously. Now its all just cool bubbled internet blue. Why didn't they add a Swoosh too?

    1. Re:Amazon Effect by TheInternet · · Score: 1

      Isn't this just a low budget version of the Macromedia site?

      The only element it really seems to share prominently is rounded corners.

      - Scott

      --
      Scott Stevenson
      Tree House Ideas
  79. Shame about the rendering in firefox... by Anonymous Coward · · Score: 0

    WEll nice page.. so long as you view it in IE...

    Seroiusly whats with the search bar in Firefox?
    Why can't I have a free download of 0.9.3 if I'm running 0.9.2
    Why is there 0 margin between the frame and the text ?

    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040707 Firefox/0.9.2

  80. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 1, Insightful

    So /. renders really poorly in Gecko

    Huh? The only way rendering varies from other browsers is the left edge of the main content section is occasionally a little too far to the left. That's a bug in Gecko, it's already been fixed, and it's not the catastrophe you are making it out to be.

    as do a myriad of other sites.

    If you don't name them, it's just hand-waving FUD. Get specific.

  81. Oh the irony... by stubear · · Score: 1

    The site looks better in IE 6.0 than it does in Firefox. In FF everything bumps against the browser window borders making it uncomfortable to read the text and making the blue rounded header/navigation bar look awkward. In IE 6.0 there is a comfortable 1/2" border around the edge of all the page elements making the type easier to read and the navigation area look much better.

    1. Re:Oh the irony... by Shayde · · Score: 1

      I have no idea what you're talking about, the site renders -perfectly- for me. Check out the screenshot (this is Debian Linux w/ some extensions + FF 0.9.1)

      screenshot

      --
      Event Management Solutions : http://www.stonekeep.com/
    2. Re:Oh the irony... by stubear · · Score: 1

      I'm talking about how on Windows the site does not render proplery in Firefox. IE 6.0 displays the site exactly as in your image though.

    3. Re:Oh the irony... by Anonymous Coward · · Score: 0

      (As mentioned in other threads - probably redundant)

      Hit refresh - you have an old version of the stylesheet. Presumably you visit mozilla.org more often in Firefox?

  82. Uninstall then Install by Bob+Clary · · Score: 1

    I have had no problems by using the simple method of uninstalling Firefox (or Mozilla) then installing into the same directory. To make sure you keep all of your plugins do not choose to delete the directory.

  83. Errors when viewed in IE by TravisWatkins · · Score: 3, Interesting

    Like the topic says, in IE I get 'Error: Object Expected'. If the site is broken in the browser people are going to be using to look at the site for the first time, what are people going to think about the browser Mozilla wants you to use?

    --

    "But I'm still right here, giving blood and keeping faith. And I'm still right here."
    1. Re:Errors when viewed in IE by Spad · · Score: 1

      No problems here using IE6/SP1

      Obviously I'm not *using* IE - I just fired it up to check the page.

    2. Re:Errors when viewed in IE by DONGYRN · · Score: 1

      Works fine for me. IE6.0 on XP Pro SP1.

      --
      Brain: Promise me something, Pinky. Never breed.
  84. Re:Great new look! Same old shit... by ElForesto · · Score: 0

    The issue at hand is the use of tables to organize content as opposed to using DIVs properly. Modern design with proper XHTML 1.0 renders VERY well across all browsers (even NetFront on my Clie and lynx in Linux), though some minor CSS incompatibilities do persist between engines with IE being the most broken IMO.

    That said, the tables do have a tendency to render more uniformly on older hand-held and text-based browsers. Newer ones that are standards-compliant, however, do fine with updated code. It's the constant problem of developers dragging the browsers into the modern age kicking and screaming.

    --
    There is a difference between "insightful" and "inciteful" other than spelling.
  85. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 5, Informative

    http://bugzilla.mozilla.org/show_bug.cgi?id=217527

  86. Finally Finally Finally - Now it LOOKS like a by HappyPerson · · Score: 1

    Finally Finally Finally - Now it LOOKS like a professional organization. Great job, whoever did the look and feel be proud. Wish the rest of the o s community would learn from this example.

    1. Re:Finally Finally Finally - Now it LOOKS like a by maskedbishounen · · Score: 1

      Professional organization?

      Maybe it's just me, but it looks more like an E-retailer to me. Every time I see section tabs like that, I think of Amazon or any number of other online retail sites.

      The top navigation bar looks dark and dreary to me. I liked the upbeat, more subtle splash of brown tones from the site of old. Well, not that it really matters; if the new design helps drive in new users, it's muchly welcome.

      --
      "An infinite number of monkeys typing into GNU emacs would never make a good program."
    2. Re:Finally Finally Finally - Now it LOOKS like a by franksp · · Score: 1

      I agree, hurray for good old moz.org! Now just one question, why are they insisting in using that red godzila head as a logo? It's so 70's, and it makes me remember of something like "the attack of the giant radioactive ants", and not a serious organization. Why don't they start using this cool aqua-like logo?

  87. Re:Great new look! Same old shit... by geeber · · Score: 3, Informative

    Firefox 0.9.3, and all others before it, on my WinXP machine, have had the same problem - sometimes the text renders too far to the left overlapping the side menu. This is a well known problem. A quick refresh fixes the rendering, so it is not a big deal. But you would think that by now, so close to 1.0, such an obvious problem would have been taken care of.

  88. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 3, Funny

    So /. renders really poorly in Gecko,

    It's a huge problem for me as well! Firefox renders /.'s IT section in an absolutely putrid color scheme spawned from at least the 9th circle of hell. I wish those lazy developers over at mozilla.org would actually get around to fixing some bugs instead of just working on a slick web presence that looks incredibly tight and professional.

  89. Re:Great new look! Same old shit... by Dalcius · · Score: 1

    This happens to me (under Galeon on Linux - gecko based) when the banner ads come up on the right side of /.

    Cheers

    --
    ~Dalcius
    Rome wasn't burnt in a day.
  90. In related news... by CaptainPinko · · Score: 1

    you can now find a roadmapt to Thunderbird their stand alone e-mail client. I guess this isn't off topic since the story is about the website update and not specifically Firefox.

    --
    Your CPU is not doing anything else, at least do something.
  91. Re:Great new look! Same old shit... by sploo22 · · Score: 2, Funny

    And in other news, "sudo rm -rf /" has been found to cause crashes and data loss on virtually all UNIX systems. Obviously this is a critical bug which must be fixed immediately.

    --
    Karma: Segmentation fault (tried to dereference a null post)
  92. Still waiting for them to fix the Backspace key... by Anonymous Coward · · Score: 0

    ... so that it properly behaves counter to the space key, that is to page up, not go back to the previous site and lose all your form data. Until this is fixed, I'll stick with Netscape Communicator and older releases of Mozilla, which implement the Backspace key properly. The least they could do is give me an option to create a custom XML file as I can in Moz 1.2.1....

  93. beautiful ... by polyp2000 · · Score: 2, Informative

    great!

    No further comment!

    Nick

    --
    Electronic Music Made Using Linux http://soundcloud.com/polyp
  94. eee by aLEczapKA · · Score: 0

    oki new design sux, can we have now the older one please?

    --
    -- All Gods were immortal.
    -- S. Lem
  95. How is this news? by slasher999 · · Score: 1

    I'm not trolling here folks, but come on - a redesign of a website gets front page attention?

    1. Re:How is this news? by angrykeyboarder · · Score: 1

      Why not Star-Trek/StarWars actors and movies do here as well. I guess somehow they are tied to High Tech and I just don't know it...

      Frankly this topic makes more sense than the Sci-Ffi stuff..

      --
      Scott

      ©20014 angrykeyboarder & Elmer Fudd. All Wights Wesewved
  96. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 0

    /. the place where humor can walk up to you and slap you in the face and you still won't notice it is just a freaking joke.

  97. /. rendering in FF by Anonymous Coward · · Score: 0

    Yep, it always feels like a timing issue to me. I'm on a sad and pathetic dialup link, and when it's really slow, FF will render /. badly.

    A reload fixes it.

    I'm looking for a job right now, and all those crappy activeX based recruiter sites render like crap (if at all) in Firefox.

    1. Re:/. rendering in FF by md81544 · · Score: 1

      It's not a timing issue. I'm on low-contention DSL and I get it as much as the next guy.

  98. thunderbird by nuggetman · · Score: 1

    every time i see the thunderbird icon i think it's an anime chick with blue hair

    --
    ...and that's all there is to it.
  99. Re:Great new look! Same old shit... by FuzzyBad-Mofo · · Score: 2, Interesting

    My experience as a web developer since 1997 and Mozilla/Firefox user since 1999 suggests that the /. rendering problem is caused by the browser rendering an incomplete page. Whether this is caused by the server terminating the connection early, or the browser stopping rendering before the transmission is incomplete, I do not know.

    However, the problem did begin until sometime in 2003. So I would be more inclined to blame the /. server, than the Gecko rendering engine.

  100. Phoenix? by magefile · · Score: 1

    WTF? Does anyone else think it's stupid to code-name FF1.0 "Phoenix"?

  101. I am sorry to inform you... by Ayanami+Rei · · Score: 1

    YHBT, YHL. HAND...

    The parent is a cut-n-paste post I've seen many times in Mozilla-related story. You bring up some good points, though.

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
  102. (ot) And I understand where they're coming from... by Ayanami+Rei · · Score: 1

    after all, this advertising company is still solvent, and there's apparently a lot of "tricks" to make sure you don't get stuck with Netscape dialup or whatever offer it is, so where's the harm, right? Let's just keep going while supplies last.

    Problem is, at some point, any point, the current set of participating members is going to have an 8:1 chance that they'll be stuck holding the bag. Maybe all your friends are all already trying to find referrals. Maybe they don't have anymore...

    It'll happen sometime. Do you want to risk joining the group?

    Not that it cost you anything, except your wasted time trying to find people to fill those 8 slots.

    I guess doing a gmail invite trade for referral is a nice gesture and tolerable.
    But a pure referral "broadcast" to a random forum is just annoying.

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
  103. Re:Great new look! Same old shit... by silverfuck · · Score: 1

    No, the problem is genuine (although most don't experience it, and those that do only intermittently). I can tell you from first hand experience it has been in Firefox 0.8, 0.9, 0.9.x (all of them), but not in Phoenix 0.5, Firebird 0.6, 0.6.1, or 0.7.

    Interestingly, the bugzilla bug is marked as resolved, so this give hope that it is fixed in 1.0PR. Anybody care to confirm or deny?

    --
    You know you've been IMing too long when you almost say 'lol' out loud to a non-geeky friend...
  104. Does anyone else find it annoying that… by Vlad2000 · · Score: 1

    The Firefox and Mozilla Suite product homepages do not directly link to a page that has concise information on security issues or security updates. This makes it really hard to know if you have to install a patch or not.

  105. Opera... by Anonymous Coward · · Score: 0

    The nav doesn't work in Opera...nice job, msn.c..er...mozilla.org

  106. Didn't work fo rme either by rs79 · · Score: 1

    The page doesn't even reneder properly. Stuff is jumbled on top of other stuff. Didn't try it in Opera?

    --
    Need Mercedes parts ?
  107. Re:Great new look! Same old shit... by FuzzyBad-Mofo · · Score: 1

    s/did begin/did not begin/

  108. new website by Anonymous Coward · · Score: 0

    sucks.

    it is ugly and doesn't give you the information you are looking for as quickly as the old one. The old one the /. editors show you, of course, is from nineteen ninety freaking eight, so of course this is an upgrade from that.

    But it's a downgrade from the real previous version, which is eb.archive.org/web/20031223123707/www.mozilla.org/

    the mozilla devs should be ashamed of themselves. The site looks like just another crappy commercial web page with an ad in the middle. The mozilla organization should know that a website should not have an ad in the middle, it should be more interactive than that.

  109. Re:Great new look! Same old shit... by damiam · · Score: 3, Interesting

    From what I've heard, it's a problem with Slashdot's noncompliant HTML, not a Firefox problem. However, since /. seems unwilling to actually do anything about it (apparently the editors don't use the actual site enough to care), the Mozilla people are trying to work around it.

    --
    It's hard to be religious when certain people are never incinerated by bolts of lightning.
  110. Re:LOL by Dopefish128 · · Score: 1

    But they haven't been recoded from scratch. They're almost the exact same codebase with a fancy UI stuck on it. Don't believe me? Download the source tarball and look for yourself. Plus, a lot of the same functionality is duplicated between programs. I'll admit that some nice features are still Firefox-only, but IMHO once you start using Thunderbird and/or Sunbird as well, you've pretty much given up most of the advantages over the suite.

    --
    "Knowledge is power. Power corrupts. Study hard. Take over the world."
  111. Unfinished != not ready by Bnonn · · Score: 2
    Firefox is perfectly ready for prime time, both for geeks who understand what a 0.x version is, and for Windows users who are accustomed to the remarkably woeful IE, and general incompleteness of most Microsoft products when they first ship. Firefox may not be perfectly polished yet, but it's certainly able to compete with Internet Explorer, and with other offerings like Opera which are intimidating to first-time users because of their complexity.

    I have not encountered a single person who has been turned off Firefox because it seems incomplete. In fact, it doesn't seem incomplete. It has some way to go before it's perfect, but as browser packages go, it's streamlined, easy to use, and has everything the average user wants. If you use Firefox as your primary browser, and you in fact use 0.9x, you should know that.

    1. Re:Unfinished != not ready by hkmwbz · · Score: 1

      How is Opera complex and intimidating?

      --
      Clever signature text goes here.
    2. Re:Unfinished != not ready by mike_sucks · · Score: 1

      Dude, have you seen Opera's default UI? What those guys do to platform consistency is scary!

      --
      -- "So, what's the deal with Auntie Gerschwitz et all?"
    3. Re:Unfinished != not ready by hkmwbz · · Score: 1
      Yes, I have seen it. It has navigation buttons at the top. not exactly rocket science. It has a panel selector on the left with icons and text belot to show you exactly which panel each icon represents. And then there's the bookmarks bar with important links.

      Not exactly complicated or difficult to figure out. Even complete newbies I've shown Opera didn't have any problems understanding the UI.

      --
      Clever signature text goes here.
    4. Re:Unfinished != not ready by mike_sucks · · Score: 1

      Sure sure.

      It's a funny thing. Mozilla has a cross platform toolkit and do their hardest to make sure that their apps look and feel like a native app. Opera starts with a native toolkit on each platform and do their hardest to make their app look and feel like no other app out there.

      Crazyness.

      On Windows it looks like some 13 year old put it together as a l33t shareware app and on Linux it uses Qt (aside from being non-free) so it's a non-starter for me.

      --
      -- "So, what's the deal with Auntie Gerschwitz et all?"
    5. Re:Unfinished != not ready by hkmwbz · · Score: 1
      "It's a funny thing. Mozilla has a cross platform toolkit and do their hardest to make sure that their apps look and feel like a native app. Opera starts with a native toolkit on each platform and do their hardest to make their app look and feel like no other app out there."
      Nope. Opera has an internal cross-platform toolkit. The UI is mostly the same on all platforms, except Mac where some parts have been "Macified".
      "On Windows it looks like some 13 year old put it together as a l33t shareware app and on Linux it uses Qt (aside from being non-free) so it's a non-starter for me."
      It looks exactly the same on Windows and Linux, and the Linux version only uses Qt for a couple of things like font handling.

      Opera 7.5 has a great default skin. Firefox looked nice when it was using Qute. Now it looks like an amateurish piece of trash. Hope they return to Qute or get some professional designers like Opera has.

      Anyway, it seems that you are just here to spread lies and filth about Opera, and you don't even know what you are talking about. Sad.

      --
      Clever signature text goes here.
    6. Re:Unfinished != not ready by mike_sucks · · Score: 1

      "Nope. Opera has an internal cross-platform toolkit. The UI is mostly the same on all platforms, except Mac where some parts have been "Macified"."

      Okay, I didn't know that. I stand corrected.

      "It looks exactly the same on Windows and Linux, and the Linux version only uses Qt for a couple of things like font handling."

      Which is a big problem. On Windows it should look and feel like a Windows app. On Linux it should look and feel like a Gnome or KDE app. By default.

      It should use platform-specific features: external protocol handlers, file choosers, session management, native VFS, proxy settings, etc. It should also conform to the platform's usability guidelines: Menu structure, preferences windows, widget usage and spacing, button order, system font, system colours, etc.

      Opera does use some of the features - but not all and completely ignores the usability guidelines. This is a big problem.

      "Opera 7.5 has a great default skin."

      No it doesn't. You may like it, but it is not great. A great skin would be one that causes it to look and behave like it conforms to the native usability guidelines of the platform. It should by default look exactly like every other sane Windows/Mac/Gnome/KDE program when run on that platform. If you wish to then screw up that consistency by using some other skin, fine, but it shouldn't be infliced on users by default.

      BTW, most of Mozilla's products have the same problem (the notable exception being Camino), which is why I use Epiphany instead. But at least Mozilla is working *towards* platform consistency. Opera seems to be working away from it.

      --
      -- "So, what's the deal with Auntie Gerschwitz et all?"
    7. Re:Unfinished != not ready by hkmwbz · · Score: 1
      "Which is a big problem. On Windows it should look and feel like a Windows app. On Linux it should look and feel like a Gnome or KDE app. By default."
      On Windows it does look and feel like a Windows app... Well, as much as any Windows app really. Same for Linux. For Mac there's more tweaking to make it more Mac-like.
      "It should use platform-specific features: external protocol handlers, file choosers, session management, native VFS, proxy settings, etc. It should also conform to the platform's usability guidelines: Menu structure, preferences windows, widget usage and spacing, button order, system font, system colours, etc."
      And you know for a fact that it doesn't do all or some these things? Or are you just assuming?
      "Opera does use some of the features - but not all and completely ignores the usability guidelines. This is a big problem."
      A sweeping statement with little contact with reality.
      "No it doesn't. You may like it, but it is not great."
      Uh, yes, it is great actually. It's low-key and functional. Much better than Firefox's new default theme.

      Look, you keep making these misguided statements about what Opera supposedly does or doesn't do... Have you actually tried it?! :)

      --
      Clever signature text goes here.
    8. Re:Unfinished != not ready by mike_sucks · · Score: 1

      "On Windows it does look and feel like a Windows app... Well, as much as any Windows app really. Same for Linux. For Mac there's more tweaking to make it more Mac-like."

      Not at all. Under Linux it doesn't integrate at all with Gnome, so it is a non-starter for me: It is not a GTK app (hence ignores system theme, no native file chooser, etc.), it has an MDI and absolutely does not follow the Gnome Human Interface Guidelines.

      On Windows: It uses a theme that by default does not mimic the standard Windows look and feel. It does weird things like popup a context menu when double clicking on a word. It has some crazy icon before the file menu in the menu bar. It doesn't use Windows' standard help system and the menus (especially the Window menu) are on serious crack. It's got an MDI (which is bad in itself) but is inconsistent with how every other MDI I have seen on Windows works.

      "And you know for a fact that it doesn't do all or some these things? Or are you just assuming?"

      I know for a fact.

      "A sweeping statement with little contact with reality."

      A sweeping statement, sure, but 100% accurate for Gnome desktops, mostly accurate for Windows and Mac desktops and I'd guess that it is mostly accurate for KDE and every other Linux desktop as well.

      "Uh, yes, it is great actually."

      For you, sure. For people in general it's not, because the theme doesn't look like a standard application.

      "Look, you keep making these misguided statements about what Opera supposedly does or doesn't do... Have you actually tried it?! :)"

      Yep. Don't get me wrong: Opera is my default browser on my SE P800 phone, and I use it almost every day, it works really well. I also keep the latest version for Linux and Windows for testing websites, but because of the stuff I outlined above I find using Opera a horrible browser to use on the desktop.

      --
      -- "So, what's the deal with Auntie Gerschwitz et all?"
    9. Re:Unfinished != not ready by hkmwbz · · Score: 1
      "Under Linux it doesn't integrate at all with Gnome, so it is a non-starter for me: It is not a GTK app (hence ignores system theme, no native file chooser, etc.), it has an MDI and absolutely does not follow the Gnome Human Interface Guidelines."
      Opera's MDI is what other browsers are trying to copy. "Tabbed browsing" is all the rage these days.
      "On Windows: It uses a theme that by default does not mimic the standard Windows look and feel."
      Uh, "the standard Windows look and feel" hardly exists. Opera looks as much as a Windows application as any other application out there.
      "It does weird things like popup a context menu when double clicking on a word."
      So? It's a useful and time-saving feature.
      "It has some crazy icon before the file menu in the menu bar."
      That's what MDI apps do, you know. Well, actually, seeing the way you are grasping for straws, it seems that you don't know ;)
      "It doesn't use Windows' standard help system"
      So? It's a cross-platform app.
      "and the menus (especially the Window menu) are on serious crack."
      Nah. It's useful and flexible.
      "It's got an MDI (which is bad in itself) but is inconsistent with how every other MDI I have seen on Windows works."
      You don't get it do you? Opera's MDI is proper MDI, and other browsers are now trying to follow up with "tabbed browsing". Opera had this ages before Mozilla did, and now Mozilla is bragging about it as if they invented it.
      --
      Clever signature text goes here.
    10. Re:Unfinished != not ready by Anonymous Coward · · Score: 0

      "Opera's MDI is what other browsers are trying to copy. "Tabbed browsing" is all the rage these days."

      Opera's MDI, being a MDI, is broken. Tab browsing, being a MDI, is also broken, but a bit less so than how Opera does it. I can't see how this changes Opera's lack of platform consisteny, however.

      "Uh, "the standard Windows look and feel" hardly exists. Opera looks as much as a Windows application as any other application out there."

      Actually, there is. Open IE, Notepad, any Windows application that uses standard Windows widgets - that is the standard Windows look. Opera does not look like this by default. That is a problem.

      "So? It's a useful and time-saving feature."

      No, they are overloading a well known user action (text selection) to do something that already has a well known user action (show a context menu). This is broken and hardly useful, it is confusing and annoying at best. If you think that having to do three clicks rather than two saves you time, you're wrong.

      "That's what MDI apps do, you know. Well, actually, seeing the way you are grasping for straws, it seems that you don't know ;)"

      Sigh. I avoid using MDI apps, being broken from a usability perspective and so on, so perhaps this is the case. If so, then it's yet another way MDI is broken.

      "So? It's a cross-platform app."

      That's no excuse.

      "Nah. It's useful and flexible."

      It's non-standard and confusing.

      "You don't get it do you? Opera's MDI is proper MDI"

      No. You clearly don't get it. MDI is broken. The reason it was invented was to get around MS's broken menu implementation (namely, per-window menus). Every usability and HCI expert on the planet will tell you it sucks. Why? Because MDI sucks.

      And honestly, what is you fixation Moz? I'm not talking about Moz, I'm talking about Opera. I don't even use Moz, I use Epiphany.

    11. Re:Unfinished != not ready by Anonymous Coward · · Score: 0
      You are wrong again.

      - MDI is vastly superior to the broken MDI in other browsers
      - Stuff you *think* is "broken" is really more functional

  112. the suite is sweet by zogger · · Score: 1

    I like the all in one as well. I want a browser and email client and editor. If it comes in one package, I figure, so what? Rather have it that way really, less fuss and muss. I always liked netscape anyway. For the same uses, you'll be downloading three separate apps anyway, the size is probably roughly similar (guessing now). As to themes, yep, joe curmedgeon here, I like classic. Modern is too...goofy looking I guess. I like "warm" not gaudy and flashy.

  113. Design Involution by pabtro · · Score: 1

    Actually, I don't like the new design. It is retrograde and it does not advance the concept, nor it makes it more attractive for people to feel compelled to download the product. The previous design used shades of color and well placed logos that conveyed a serious, modern/future-is-here, unique, and time-tested product. The current design is simpler and not as rich. It remains me of a 3/4 year old RedHat 8/9 desktop.

  114. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 0

    Why the fuck is this here....

    ComanderChalupa Writes: "Mozilla get's a new face..."

    Must be a slowww news day....

  115. Re:Great new look! Same old shit... by sharkey · · Score: 1
    It's the constant problem of developers dragging the browsers into the modern age kicking and screaming.

    I think you have that backwards. It the developers that are so dedicated to their half-assed, broken-down non-standard webpages who go so far as to block connections from the W3C's HTML validator out of shame that are being dragged kicking and sreaming into 1998.

    --

    --
    "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
  116. Re:Great new look! Same old shit... by sharkey · · Score: 1
    So I would be more inclined to blame the /. server, than the Gecko rendering engine.

    No, it's Gecko. I misremember the Bugzilla #, but Firefox, Mozilla, et al have trouble rendering the legacy sites that abuse tables to provide layout. It would be nice if they would fix it, since there are sites that many people like to view where the authors lack the education, skill or drive to produce clean HTML.

    It's hard to blame them, though. There are other bugs that have a higher priority than diapering some web developers who are unwilling to progress past a Frontpage level of coding.

    --

    --
    "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
  117. Re:Great new look! Same old shit... by Anonymous Coward · · Score: 0

    translation: firefox bad. no proof. other websites bad too.

    thank you. good night.

  118. Their site Validates. by JThundley · · Score: 1

    Speaking of correct HTML, did anyone else notice that their new site validates completely?

    This Page Is Valid HTML 4.01 Strict!
    Now all we have to do is get the rest of the planet to do the same :/

    1. Re:Their site Validates. by elemental23 · · Score: 1

      While I applaud them for writing valid HTML for a change, I wonder why they wrote the site in HTML 4 instead of the current recommendation. XHTML has been around since what, early 2000? What year is it now?

      --
      I like my women like my coffee... pale and bitter.
    2. Re:Their site Validates. by Shinglor · · Score: 1

      Because compatibility with IE is their top priority. XHTML which brings no new features only works in IE because it is backwards compatible. IE does not fully support XHTML (notably the application/xhtml+xml content-type).

    3. Re:Their site Validates. by Tet · · Score: 1, Troll
      I wonder why they wrote the site in HTML 4 instead of the current recommendation. XHTML has been around since what, early 2000?

      Perhaps because XHTML serves no purpose. The whole reason for its existence it to provide buzzword compliance and to add a bit of extra bloat to your pages. I'll stick with HTML 4.01, which gives you exactly the same features without the clumsiness of XML.

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    4. Re:Their site Validates. by wolverian · · Score: 1

      XHTML is a lot easier to parse, it is better defined and it is easier to render. HTML 4 is the bloated recommendation with the styling tags and all that crud. XHTML (especially XHTML 2) is doing what HTML was in the beginning and got lost later: developing a good semantic and structural markup language, leaving layout to CSS.

      --
      -- wolverian
    5. Re:Their site Validates. by Tet · · Score: 1
      XHTML is a lot easier to parse

      Nope. True, you can use an existing XML parser to do it, but only if it's well formed (which you can't guarantee, as not all of the data may have arrived by the time you want to start parsing).

      HTML 4 is the bloated recommendation with the styling tags and all that crud.

      I don't think you understand what HTML 4 is. There is no difference between HTML 4 and XHTML other than syntax. No extra tags, no "crud".

      XHTML (especially XHTML 2) is doing what HTML was in the beginning and got lost later: developing a good semantic and structural markup language, leaving layout to CSS.

      Ahhh yes. That's a fine description of what HTML 4 does...

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    6. Re:Their site Validates. by JimDabell · · Score: 1

      XHTML is a lot easier to parse, it is better defined and it is easier to render.

      When it's actually being treated as XHTML, sure. But mozilla.org is served as text/html, so the only thing browsers will see is funny looking HTML, not XHTML.

      HTML 4 is the bloated recommendation with the styling tags and all that crud.

      XHTML 1.0 includes all that crud too. XHTML includes things like the <font> element type. If HTML 4 is bloated, then so is XHTML.

    7. Re:Their site Validates. by JimDabell · · Score: 1

      XHTML is a lot easier to parse

      Nope. True, you can use an existing XML parser to do it, but only if it's well formed (which you can't guarantee, as not all of the data may have arrived by the time you want to start parsing).

      XML only requires you to throw a fatal error upon discovery of an error that makes a document malformed. It doesn't require you to ensure that a document is well-formed before beginning to render it.

  119. Look here by tqft · · Score: 1


    http://forums.mozillazine.org/viewtopic.php?t=77 31 8

    Aviary version will become v1.0

    --
    The Singularity is closer than you think
    Quant
  120. Re:Great new look! Same old shit... by Sinner · · Score: 1

    I actually once had the opportunity to do this (on Linux). There was no crash. The rm completed successfully and returned to the shell prompt. Of course, the system wasn't terribly useable afterwards :-).

    --
    fish and pipes
  121. Re:Great new look! Same old shit... by Hooded+One · · Score: 1

    Reading through the bug comments, it appears that the fix caused an unpleasant regression (bug 246382) so it was backed out of the 1.7 and Aviary branches.

  122. Re:Great new look! Same old shit... by drsquare · · Score: 1

    No big deal, no, unless it's on a site that you can't refresh, or on a large page (like slashdot) that takes ages to redownload. Not everyone's on a T3 you know.

    Personally I think it would be a good idea to have a 'rerender' command next to 'reload' in the menu that just rerenders the page without downloading it.

  123. Re:Finally sheesh (OT) by labratuk · · Score: 1
    Don't worry, they'll soon be a bit quieter when they never see their free xyz. And they won't.

    But I see what you mean. To some extent it does seem like it's 1998/1999 all over again. I may be imagining it, but there were a few years in there where 'the internet population'* on average were pretty cynical and/or clued up about everything. They wouldn't get too gullibly excited about something. Which is a good thing.

    But in the past 12 months or so, I've kept seeing things like:

    Gmail. People getting really overexcited over a goddamn webmail account.

    iTunes online music store.

    Google's IPO and people talking about how 'this will change the world'.

    People falling for the free iPod/tv/whatever scams.

    People getting overexcited about friendster/orkut etc.

    People generally being wide-eyed about things. Maybe the world's going to go through cycles. 3 years of gullibility, a crash, 3 years of cynicism, repeat.

    Hey, I'm going to make a fortune by running the AllAdvantage bar!

    * - Yeah I know, no such thing exists, just my experience/perception.

    --
    Malike Bamiyi wanted my assistance.
  124. Re:Great new look! Same old shit... by drsquare · · Score: 1

    Seriously, I've just thought of a great new Firefox extension: An extension that changes any it.slashdot.org address into a normal slashdot.org address, meaning no-one would ever have to see the IT colour scheme ever again. Think of how many people would be saved from going blind.

  125. Not Valid CSS by Anonymous Coward · · Score: 0

    The CSS does not validate, and the home page comes in at 274471 bytes for a soothing 50 second page load for 56K dialup users. Nice of them to try though. The HTML does validate, but it is 4.0 Strict instead of XHTML. Overall, like the look, too bad it is too slow to be usable on dialup. Looks way different in IE 6 than it does in Firefox for me however. IE is filling the entire screen, Firefox has it centered in the middle with wide margins. Nice liquid layout, overall B+!

  126. Re:Great new look! Same old shit... by lordcorusa · · Score: 1

    Personally I think it would be a good idea to have a 'rerender' command next to 'reload' in the menu that just rerenders the page without downloading it.

    I don't think any mainstream browser should go in for such a kludge. The fact that a rerender command is even needed is evidence of a software failure, and should not be painted over by a kludgy workaround. In a properly functioning browser, a page should never render differently by rerendering. If it does, that is evidence that something in the browser software is broken.

    --
    The preceding comments reflect the author's personal opinion and are public domain, unless explicitly stated otherwise.
  127. And the 2-2 pitch by cubicledrone · · Score: 1

    he's talking about Perl and you're talking about line noise.

    Wow. Talk about a slow floating curve that just hangs in space over the plate until the after-dinner drink...

    --
    Business isn't willing to pay for products, innovation and careers, so we get brands, mortgage commercials and layoffs.
  128. F*** by Anonymous Coward · · Score: 0

    What the F***!

    T. Rex does not have a brain for good reason.

    Mozilla and Netscape died years ago; get over
    it!

    I'd rather use vi as a net browser.

    FU!

    PS F your grandmother! In Spades!

  129. Re:Great new look! Same old shit... by eric.t.f.bat · · Score: 2, Funny

    It's not that the editors don't use the site -- they have to waste time at work like the rest of us! It's just that they only use IE. Didn't you know Slashdot was invented in-house at Microsoft to distract the MS-haters of the world so they'd have no time left to actually achieve anything? Duh! How else do you explain Gnome and KDE?

    --
    I have discovered a truly remarkable .sig block which this margin is too small to conta
  130. La Dee Fucking Da - Who gives a monkey-fuck? by ICA · · Score: 1

    Do we need a post everytime somebody changes a website?

  131. Re:Great new look! Same old shit... by mibus · · Score: 1

    You could always get an HTTP proxy to rewrite any pages from it.slashdot.org to have a 302 Redirect to the regular page...

  132. Re:Great new look! Same old shit... by mibus · · Score: 1

    Decrease then increase the font size, it'll re-render.

    (Control-mousewheel if you're so lucky to have a mousewheel :)

  133. Well... it started as a reply, before the rant... by FLEB · · Score: 2, Interesting

    I'd say HTML coding's gone up in quality, not down. Aside from a few errant copies of FrontPage floating around (you know who you are), the introduction of the stricter-formatted XHTML has given quality-concious designers something they can put faith in.

    Instead of malformed tables possibly breaking the whole page, XHTML means that the page HAS to be formatted correctly, and with that, it damned well better work with all the browsers out there. The more strict standard makes less guesswork for HTML tool developers, by making them share a well-defined (enforced, even) common expectation of the language.

    I'll grant that there are quite a few strays still out there making half-baked HTML 4 pages with MSIE "fudgingly compliant" features, but most web designers worth their professional (or cred-bearing amateur) salt know they have to code to standards. The others, well... the web is open and free... and they will either get by on other merits or wither in mediocraty.

    My big wish: I'd just like to see a new, widely-supported extension of CSS that actually has some layout tools, and doesn't involve convoluted and counterintuitive "hacks" to get by. Sure, a lot of people say "let the browser, not the creator, determine the layout", but on the modern Web, let's face it: Design can be content. Give us tools for (even strict, my-way-or-highway) layout, for those who want it.

    --
    Information wants to be free.
    Entertainment wants to be paid.
    You just want to be cheap.
  134. your clients are fucking idiots by Anonymous Coward · · Score: 0

    now shut up

  135. It's technically not free if you want it on CD by Anonymous Coward · · Score: 0

    By saying "free download" instead of "absolutely free", I believe Mozilla.org just wants to make sure they're legally/technically allowed to sell Mozilla Firefox CDs to customers (and not be obligated to send CDs free of charge to people who ask).

    I'm sure the Mozilla Organization had a whole legal-ise meeting about the exact wording and everything.

  136. Originality? by synthrabbit · · Score: 1

    That site looks an awful lot like Macromedia's site. Nice, though.

  137. Firefox breaking older versions on overinstall by 0x0d0a · · Score: 1

    Not only that, extensions are a nasty potential culprit. I use Adblock, and my last upgrade caused some sort of nasty problems in Firefox (I don't remember what it was, might have been something to do with font sizes being wrong, was a known problem with installing newer versions over an old version of Adblock).

    I love Firefox's extensions, but they simply are not as well tested as Firefox itself, and upgrading them or Firefox can cause nasty problems that are very difficult for an end-user to track down. Flash Click To View doesn't work in the current Firefox, for instance...

  138. Re:Well... it started as a reply, before the rant. by el-spectre · · Score: 1

    If most people were using (and validating) XHTML or even strict HTML, I'd be a happy man. This does not seem to be the case... at my company, only my code works cross browser, cuz no one else gives a damn about non MSIE clients. Sad.

    --
    "Faith: Belief without evidence in what is told by one who speaks without knowledge, of things without parallel." - A.B.
  139. Re:LOL by angrykeyboarder · · Score: 1

    I'd rather have it in pieces than having to load one huge app at once. That's been my biggest problem with Netscape from day one and was what pushed me to Internet Explorer/Outlook Express many years ago.

    Now, I'm "back" (with Firefox and Thunderbird).

    --
    Scott

    ©20014 angrykeyboarder & Elmer Fudd. All Wights Wesewved
  140. But what about a logo makeover by angrykeyboarder · · Score: 1

    I find the layout and color scheme of the new site far more attractive. And Mozilla has some snazzy new logos for thier newer products now as
    well.
    All of this makes http://images.slashdot.org/topics/topicmozilla.gif look that much worse...

    --
    Scott

    ©20014 angrykeyboarder & Elmer Fudd. All Wights Wesewved
  141. Re:Great new look! Same old shit... by vrt3 · · Score: 1

    I don't really understand how it's a problem with Slashdot's noncompliant HTML: the same HTML should render the same everytime it gets rendered, no matter how good or how bad it is. Since a simple re-render places everything in the right place (going back and forward in the history is enough to trigger), I have the impression that there is something in the code that doesn't work 100% correct the first time.

    That code path may be triggered by the bad HTML, but I still the code is not completely correct either.

    --
    This sig under construction. Please check back later.
  142. Front page: [Aug 25] Camino 0.8.1 Released by ynotds · · Score: 1

    Ok, it's the last item of three in the rightmost of three columns near the bottom of the page, or at least it was for me.

    That seems about fair, especially seeing as last time I tried it (0.8) I went back to the suite within minutes, and that despite having never wanted nor used a mail client integrated into my browser.

    --
    -- Our systemic servants do not good masters make.
  143. "Closer by the day"... by Anonymous Coward · · Score: 0

    Uh... everything gets closer by the day. Next Tuesday is getting closer by the day. The year 14659 is getting closer by the day. The end of the world is getting closer by the day.

  144. Re:Well... it started as a reply, before the rant. by Shimbo · · Score: 1

    Aside from a few errant copies of FrontPage floating around (you know who you are), the introduction of the stricter-formatted XHTML has given quality-concious designers something they can put faith in.

    I find it hard to believe that many people are actually using XHTML, given that Internet Explorer doesn't support it in any real way.

    I think you're right in that the web has started (ever so slowly) improving though.

  145. Re:Great new look! Same old shit... by Accipiter · · Score: 1

    So this code doesn't compile with gcc.

    Is that gcc's problem for not gracefully accepting broken C code? Or is it those programmers who write the broken C?

    --

    -- Give him Head? Be a Beacon?
    (If you can't figure out how to E-Mail me, Don't. :P)

  146. Re:Finally sheesh (OT) by Moonlapse · · Score: 1

    AllAdvantage did pay out ... i got my max of 25 bucks a month for the time that I did that. And though i haven't seen it personally, my friend's sister did the free ipod thing and actually got one, so they are sending at least a few out.

    --
    - I got my free iPod and a free Nintendo DS....why not
  147. Re:Well... it started as a reply, before the rant. by aamcf · · Score: 1
    XHTML means that the page HAS to be formatted correctly

    Not true. If it is served as text/html it should be parsed as HTML. See XHTML media types on w3.org.

  148. nice! by Anonymous Coward · · Score: 0

    the more of a website you can see on the first
    load without having to scroll down is a good idea.
    the old website had to much spacing at the top and
    you had to scroll down to get the important links.

    i'm just missing the firefox logo right next to
    the firefox download link, like with thunderbird or
    mozilla webbrowser. i think a good way promote
    firefox is to have people start recognizing the
    firefox icon on the desktop, like they would
    recognize the internet explorer icon.

    maybe also have a tab "downloads" next to
    "products" for the old school computer user. we
    just look for the download link anyway ;)
    oh, maybe something small that is animated? i
    know moving stuff on a direct first load of a
    website can be annoying (e.g. flash), but i dunno,
    if something is moving i get the impression the
    webpager is "bigger" ... maybe a "mozilla" running
    from left to right in the title bar: "ROOAAR!" ...?

  149. Logo by Anonymous Coward · · Score: 0

    Good. Now let's hope they change the logo, and the mascot. It's a little too open-source design to my taste. It should be more attractive. I like the Apple Safari and Internet Explorer logos.

  150. Re:Great new look! Same old shit... by Chilliwilli · · Score: 1

    For the life of me I can't understand why slashdot is still so backward in terms of standards compliance. For somewhere filled with zealots the slashdot staff certainly don't seem to be noticing..

    Seems some of the work has already been done for them http://www.alistapart.com/articles/slashdot/

    Anyone know of any efforts to actually do something about this?

    --
    Cure cancer.. and stuff! www.team45.info
  151. Re:Great new look! Same old shit... by denis-The-menace · · Score: 1

    The "Leave as FIXED" doesn't help though

    Slashdotters should at least VOTE for the Bug.

    Until now I though it was just a fluke that /. 's left column get overlapped once in a while, many times a day.

    --
    Obama's legacy: (N)othing (S)ecure (A)nywhere and (T)error (S)imulation (A)dministration
  152. Re:Firefox - no more profile problems, though by Cochonou · · Score: 1

    Then, just deinstall firefox before installing the new version. You can even wipe out the firefox directory if you want.

    The profile files (bookmarks, cache, etc) are stored in a different directory, so your settings are safe. There used to be problems when using older profiles with newer versions of the software (around Mozilla 0.7 times...), but most of this has been fixed a long time ago.

  153. Re:Finally sheesh (OT) by (54)T-Dub · · Score: 1

    Usually there isn't press about the legitimacy of scams.

    --

    "I can not bring myself to believe that if knowledge presents danger, the solution is ignorance" - Isaac Asimov
  154. Re:(ot) And I understand where they're coming from by (54)T-Dub · · Score: 0, Offtopic

    I'll give you a gmail if you signup with my link & complete the offer.

    --

    "I can not bring myself to believe that if knowledge presents danger, the solution is ignorance" - Isaac Asimov
  155. Sigs are everywhere! We're surrounded! by Anonymous Coward · · Score: 0

    Well, except for the people who add thier sigs manually to the main post, so they can get more people to see their spam...

    ---
    FREE money!

  156. Netscape 4 by tepples · · Score: 1

    Background images should be used for background images only. Anything else breaks most of the normal user operations that can be performed on content images.

    On the other hand, a deterrent to "normal user operations that can be performed on content images" may be exactly what the copyright owner wants.

    I imagine that most of the users browsing without CSS would be browsing without images as well

    Netscape 4 has a single checkbox to turn both CSS and JavaScript on and off, as its CSS engine is implemented in terms of JavaScript. Many Netscape 4 users have turned off CSS and JavaScript because perfectly conforming CSS makes Netscape 4 crash. The Firefox download page tries to cater to exactly those Netscape 4 users who are trying to leave Netscape 4 behind.

  157. Volunteering was not possible by bheckel · · Score: 1

    My experience with trying to volunteer for this project went like this:

    1. Moz website said they needed Perl, etc. help.

    2. I emailed blake @ stanford.edu

    3. No response after 2 emails. Not a "thanks but no thanks", nothing.

    I'm reluctant to volunteer for future Moz projects. Won't others be reluctant as well?

    --
    ~
    ~
  158. Re:Finally sheesh (OT) by labratuk · · Score: 2, Insightful

    That article looks very suspicious. I'm amazed that it's written by someone 'credible' like wired. The whole thing reads like an advertisement. It doesn't say one bad word about it. How do you know that everyone who 'got' an iPod isn't a plant?

    Anyone with an IQ above 60 must realise that this scheme is not sustainable in the larger scale (not that I even think it's sustainable on the smaller scale). But what's that you say? It doesn't matter as long as you're at the top of the scheme. These things rely on everyone thinking they're pretty near the top, and they're the ones getting the free iPods. And if every third slashdotter is into this as they seem to be, do you really think you're high enough on the scheme?

    Whatever's going on, someone is getting scammed here. The return on investment doesn't add up. It's either the free iPod company, the advertising broker, the ultimate company doing the advertising, or the participating member of the public.

    With any of these, the person in the chain getting scammed will soon wise up and 'plug the hole' before they let too many free iPods get taken out of their bank accounts. Unless it's the member of the public, in which case they'll continue being as gullible as ever and fall for the next scam.

    --
    Malike Bamiyi wanted my assistance.
  159. Mozilla - Firefox and Mozlla has a new webpages! by winxp2004 · · Score: 1

    Mozilla - Firefox has a new webpage. It has Firefox - Rediscover the webpage. I like the tab's on top of the webpage. I also like where they put the download Firefox at the top next to the Firefox on a CD links are. It has a nice display for the Firefox T-Shirt on the right side. http://www.mozilla.org/products/firefox/ Firefox - Rediscover the web! On the Mozilla webpage it has a link to Firefox website. Then it has a download for Mozllia browser. Near the bottom it has Thunderbird 0.7.3, Mozilla 1.7.2 and In the Store links. Then the very bottom it is Announcements, Mozilla Weblogs and mozillaZine News. Checkout the http://planet.mozilla.org/ Planet Mozilla It has a Mozilla Tree Schedule and the Firefox Tree Schedule on the sidebar. That is so awsome to see that. So you will know when Mozilla and Firefox will comes out with there new verson's http://www.mozilla.org/ Mozilla - Home of the Firefox web browser, Thunderbird and the Mozilla Suite

    --
    Sincerity, Brandon
  160. Re:Well... it started as a reply, before the rant. by aztracker1 · · Score: 1

    I've been using XHTML1.0 Transitional for a while now, for newer stuff, still need to redo some things.. I've been using validator links at the bottom, as a check when I am doing design, depending on the client, they usually get removed from golive, but the w3c validators for css, and xhtml are cool.

    I only use transitional, instead of strict, because I sometimes have to use a name attribute for form tags, and asp.net1.x uses a name attrib on a lot of them.. but that is it.. otherwise would pass the strict... asp.net 2.0 is supposed to be xhtml compliant as the default, which is cool. and a nice addition.

    beyond this, I try to keep all formatting in css, and use tags with a class, id, or combination to acheive what I need.. :)

    --
    Michael J. Ryan - tracker1.info
  161. rant rant rantetty rant rant rant by mgcarley · · Score: 1

    I think what they are really advertising is the BROWSER part of the Mozilla package.

    They are saying - Hey - in under 5 megs (about the size of a couple of Windows/IE Updates) you can have a better, faster, more secure*, popup-blocking, tabbed-browsing, skinnable browser.
    *Speaking broadly

    (Hey - Skins are important to some people. Like my girlfriend. (Yes, she is three-dimensional and I have met her offline. Now here's something that might scare some of you - we live together... in the same house... Actually, that reminds me, must get her one of those "I heart my geek" t-shirts from thinkgeek next time she needs some clothes...))

    Firefox is being advertised as like, a lean, mean browsing machine. Mozilla is for those who also want a fully featured [quote]Web-browser built for 2004, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple.[/quote].

    Myself, I rarely use newsgroups (Sometimes I just gotta sleep), and I already use [insert text editor based on whatever OS I am using that day] for HTML. Except sometimes when I'm required to use Windows - then I use Dreamweaver and Topstyle. And most of the Adobe and Macromedia Studio packages. Freehand. Director... that pretty much covers it. I think.

    In fact, I must confess. I have a Windows machine. I own a brand name laptop. (Not HP, Dell, Compaq, IBM, NEC, Packard Bell, Sharp, Gateway... or more obviously Apple). For those sick of guessing, it's an Acer. All the aforementioned Win Apps are on it.

    Anyway, where was I? Oh yeah, Mozilla. Good browser. IE not bad, but broken enough for it to annoy me when people are like... how does spyware get on my machine and how do I stop popups.

    Oh, and don't get me started with how MSN explorer is default in WinXP even in New Zealand where MSN Explorer is TOTALLY AND UTTERLY USELESS!!!!!!!!!
    Actually IIRC, it asks you when you create a new user profile and most people have no idea... so they click yes. I almost always have to fix the damn problem everytime someone I know buys a new machine.
    (I expect it is useless in other countries too, but you know... I'm not there, so...)

    Mozilla. Less than 5 megs. Thats 15-20 minutes ish on dialup? Assuming that you have a decent line of course. Save yourself the trouble of IE. Download it. Use it. Most banking sites here handle it OK. Chances are, you will never have to use IE again.

    Except for Windows Update, but most people rely on automatic updates if they have it turned on (rare) or don't know that Windows does need updating. They miss the "Windows Update" thing completely even though its in like 4 places in IE/Windows/Start Menu.

    Anyway, basically, I don't think Mozilla will be superceded per se, but it won't be as popular for people looking for JUST an alternative browser. It will be the (hopefully obvious) choice for those looking for mail, news, and all that other stuff - to essentially replace the Microsoft suite (IE/Outlook/Frontpage Express).

    Man, I should have just written that last paragraph.

    --
    Founder & COO, Hayai India (hayai.in) / USA (hayaibroadband.com) // t: @mgcarley