Slashdot Mirror


Mozilla 0.9.6 Released

bluephone writes: "Yessireebob. mozilla.org has released the 0.9.6 milestone. Here are Release Notes and a link of files on the FTP server. For milestones 0.9.7 and 0.9.8, the focus is on performace enhancingment, and stability of the Mail/News end of the suite. And boy, is it getting good..."

623 comments

  1. lol by Anonymous Coward · · Score: 0, Offtopic

    I just stumbled across it at mozilla.org, downloaded it and installed it, thought I wonder why Slashdot didn't have an article about this, thought probably b/c of all the compaints last time (news for nerds? stuff that matters?), and then came here to test the new Mozilla. The first article was, of course...

  2. :-( by Anonymous+Squonk · · Score: 1

    Mozilla crashed on my site!

    1. Re::-( by rekoil · · Score: 1

      I'm loading http://www.joepetrow.com with no problems. Is there a specific URL it crashes on?

    2. Re::-( by Anonymous+Squonk · · Score: 1

      No, I only tried the top page. Actually, it's the first time I've used Mozilla, so maybe I'm doing something wrong. Seemed alright on CNN.com though...

    3. Re::-( by DerOle · · Score: 1

      Works on my page :-)

      For Windows users, always be shure to un-install the older versions completely and delete any files left.

      For Linux it's no problem to install over an older version.


    4. Re::-( by Anonymous Coward · · Score: 0

      then its a problem with your site bewcuase i use mozilla EVERYDAY and its rock freakin' solid.

      -life sucks by a fucking helmet-

    5. Re::-( by Yue · · Score: 1

      I didn't manage to crash mozilla since 0.9.3.
      What's your site?

    6. Re::-( by the+Man+in+Black · · Score: 2, Funny

      :-D And the award for 'Most Clever way to get Site Traffic' goes to....

  3. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    P120? Well there's your problem. I sympathize with those who can't afford the latest and greatest, but please don't bitch that the latest browser doesn't blaze on your six year old computer. Stick to lynx, buddy.

  4. Cross-platform performance. by reaper20 · · Score: 5, Interesting

    Very nice release so far, mail/news seems to be "catching up" to the browser function.

    The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite.

    One thing that continually bugs me is the total lack of performance of the linux builds compared to the windows builds. On windows, moz is FAST, and getting faster, and I don't mean just the turbo-load stuff ... does anyone have a reasonable explanation on why the performance is so radically different between linux/win.

    From my daily usage, mozilla on windows is "done" as far as for what I need to do, on linux, it still has a long way to go.

    What is making mozilla slow on linux?

    go Mozilla!

    1. Re:Cross-platform performance. by Magila · · Score: 0, Troll

      Maybe it's because windows is a better OS?

    2. Re:Cross-platform performance. by rdean400 · · Score: 2, Interesting

      One thing I've always been curious about is the effect of the compiler on performance. VC++ produces fairly quick code. How does GCC code compare?

    3. Re:Cross-platform performance. by IvyMike · · Score: 2

      I agree. In fact, on Windows, it sure feels like Mozilla is faster than the Netscape 4.x releases. (I have no hard data, but the feel is arguably the important part anyway.) On Solaris, Mozilla is A LOT slower than Netscape; in fact, the only reason I use it is because of the tabbed interface. On Mac OSX, Mozilla is also slower than Netscape, but it doesn't seem to be such a huge differential. Usually, I consider it a blessing that I spend the majority of my time on Solaris and OSX, but that's the one downside. :)

      But the good news is, we have nowhere to go but up.

    4. Re:Cross-platform performance. by mike_g · · Score: 1

      The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite.

      You should check for the X again. It shows up on my 0.9.6 right underneath the loading icon. ctrl-w works as well.

    5. Re:Cross-platform performance. by reaper20 · · Score: 2

      oh I see it .... i was expecting an X in every tab .. guess I'll have to play with it to see if it works better.

    6. Re:Cross-platform performance. by Anonymous Coward · · Score: 5, Informative

      Er, nice try.

      The main reason is that Mozilla makes pretty heavy use of pthreads, and pthreads don't exactly fly on Linux. Windows threading performance is definitely superior to Linux's pthread performance, at least on single processor systems. Why?

      Windows is absolutely useless at process creation. Windows threads are about as heavyweight as Linux processes, and Windows processes are hopelessly heavyweight. So, the traditional Unix model of using many processes to complete complicated tasks completely fails on Win32. Microsoft's answer to this failing was to make threading as fast as possible, and to push multithreaded programming as a hack around a fundemental OS problem.

      Back in Linux land, the relatively low demand for mutlithreaded apps (because the Unix model really works quite well if you have fast process build up/tear down) finally pushes Linus and friends to implement clone(). The clone() system call was based on Plan9's thread model, and is actually much faster and more advanced than Win32 threads, totally beating out of almost all standard OS kernels at thread performance.

      So, now Linux has both faster processes and threads, but thread performance still sucks. Note that I said pthread performance on Linux isn't very fast. Pthreads are POSIX threads, and have very different semantics from clone(), mostly to support implementing multithreading in userspace (ick). So, the standard is a hack to say the least. Unfortunately, it's still a standard, and Linux must map pthread behaviour to clone() in userspace, which is painfully slow. It requires multiple context switches just to created a pthread on Linux. So, pthread-heavy programs like Mozilla just crawl.

      So, the moral of the story is that Linux has a much better core, but seeing that the Linux community actually cares about standards, performance isn't quite up to snuff.

    7. Re:Cross-platform performance. by Jucius+Maximus · · Score: 1
      "The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite. "

      Try right clicking on the actual tab at the top of the rendering window and selecting "close tab." I don't think it's documented.

    8. Re:Cross-platform performance. by Anonymous Coward · · Score: 0
      The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs.
      Middle-clicking on a tab closes it. Great stuff!
    9. Re:Cross-platform performance. by MadAndy · · Score: 1
      Actually, that's rather odd - I've been amused over the past couple of weeks to find that Mozilla 0.95 actually seemed to run better on my Linux box than my Windows box. I'm running it on a celeron 500 laptop with 256Mb of RAM, running RH7.2 kernel 2.4.9. What sort of kit are you running it on?

      I'll fetch 0.96 now and check it out. Maybe they've fixed that annoying problem with the text area editor under Windows - frustrating when composing mail messages!

    10. Re:Cross-platform performance. by Anonymous Coward · · Score: 2, Interesting

      While linux's implementation of pthreads can be considered lacking against other POSIX implementations, it provides for that which makes sense. Additionally, as threads and processes are the same from linux's internal perspective (both created via clone()), you can't really blame it on pthreads. From tests that I've run, pthread_create is actually faster then fork on UP systems, so unless you have a more detailed analysis of why pthreads are the problem, I'm going to call you on this one.

      Standards smandards, pthreads under linux is in no way fully compliant w/ the POSIX standard (but then again, who really wants that sorta insanity on their disks).

    11. Re:Cross-platform performance. by OblongPlatypus · · Score: 2

      I was expecting an X in every tab as well, and I really think that would be better. Not just because it'd be nice to be able to close a tab I'm not currently in, but also because it's nice to have all the tab stuff in one area for easy mouse access.

      I'll still use the keyboard shortcuts most of the time though, so it's no big deal.

      --
      -- If no truths are spoken then no lies can hide --
    12. Re:Cross-platform performance. by anthony_baxter · · Score: 4, Informative
      I find that building with mondo optimisation makes quite a difference to how fast mozilla "feels". I also turn off mail/news - I don't care, I don't need it :)

      From my .mozconfig:

      ac_add_options --disable-mailnews
      ac_add_options --enable-optimize="-O4 -finline -fno-omit-frame-pointer -march=pentiumpro -mcpu=pentiumpro"

      I don't know what build options are used for the milestone builds...

    13. Re:Cross-platform performance. by cabbey · · Score: 2

      Right click on the tab, there are a couple of interesting menu options there, |Close Tab| and |Close Other Tabs|. Combined with the default middle click action on links I've found tab browsing to be a rather nice addition to Mozilla.

    14. Re:Cross-platform performance. by Malc · · Score: 1

      "The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite. "

      I get an "X" at the far right along from the tabs. This seems to close the active tab.

      I've just installed Visual Studio .Net Beta 2 recently. I really like how its tabbed evironment works (all the open source files + help, etc all tabbed in the same area). The UI of the whole app seems to mix the worst of the InterDev UI with that of MSVC6, leaving a result I'm not too happy with. However, that one tabbed part is great and could be a good model/example for Mozilla.

    15. Re:Cross-platform performance. by captaineo · · Score: 1
      does anyone have a reasonable explanation on why the performance is so radically different between linux/win

      • X is slow (vs. GDI on Windows)
      • the pthreads implementation on Linux is bloated and nasty
      • the Linux C++ environment is not quite as efficient as the Windows C++ environment (could be an older version of GCC or std C++ library leading to bloated cache-stomping code...)
    16. Re:Cross-platform performance. by Anonymous Coward · · Score: 0

      They say misery loves company, and you have it. Mozilla OSX is pretty slow too.

      BlackGriffen

    17. Re:Cross-platform performance. by rmathew · · Score: 5, Informative

      "JayPee" has made available Navigator-only optimised builds for Linux that you might find useful.

    18. Re:Cross-platform performance. by Anonymous Coward · · Score: 0

      X is slow (vs. GDI on Windows)

      That's pretty moot with the latest X releases (4.x is pretty freaking fast, expecially when optimized.) Graphics performance on my box is actually a little better under Linux/X (and FreeBSD/X) than Win2k Pro. (Radeon DDR, 768MB, 1.2GHz Athlon, using Win2k Pro SP1, Linux 2.4.13/Xfree86 4.1.0, FreeBSD 4.3/Xfree86 4.1.0 (both build from the same source tree using gcc 2.95.2 with -O3 -march=i686 -mcpu=i686 -fomit-frame-pointer -fschedule-insns2)

      the pthreads implementation on Linux is bloated and nasty

      Well, that's debatable. It's icky, but often irrelevant (since most Linux programs just fork additional processes, and this is pretty clean. Under Linux, process creation is much less expensive than in Windows).

    19. Re:Cross-platform performance. by cobar · · Score: 2

      At least part of Mozilla's linux problems are due to gcc. Currently, release builds are built with egcs which is apparently a somewhat crappy C++ compiler. There were a lot of improvements to gcc 2.95.x that help out Mozilla a bit (5%), and I'm sure gcc 3 might have a few more.

      Interested people should try the gcc30 build in the http://ftp.mozilla.org/pub/mozilla/nightly/latest directory.

    20. Re:Cross-platform performance. by Stary · · Score: 1
      I'm using it on both win and solaris, and even though it's much faster on win, it's reasonable on our solaris boxes. I would say that it runs marginally faster than netscape here.

      Would be interesting to know what the difference is.

      --
      Tomorrow will be cancelled due to lack of interest
    21. Re:Cross-platform performance. by IvyMike · · Score: 2

      My Solaris box (which is away at work right now) is a 440 Mhz Ultra 10 (that's the UltrasparcIII processor, I'm pretty sure); I've got the Creator 3D video card. It's running Solaris 8, 512M RAM. (Quick poking around shows that I seem to have enough memory in this case.)

      I am running the available nightly builds, which now that I think of it, might not be as optimized as they could be. Doh! (Although on all three OSes, I was comparing the performance of the nightly builds to the released Netscape 4.7x.)

      Are you running: Nightly builds, your own builds, or Mozilla 0.9.x releases? I'll probably have to try all of those tomorrow to see how performance is.

      Maybe I should just ask my boss for a Blade 1000 with the new 1.05 Ghz processors. As long as I'm dreaming, it might as well be a dual processor machine, in fact. :)

    22. Re:Cross-platform performance. by Alex · · Score: 1

      > is a 440 Mhz Ultra 10 (that's the UltrasparcIII processor, I'm pretty sure)

      Errrrr.... no its not, prtdiag shows

      System Configuration: Sun Microsystems sun4u Sun Ultra 5/10 UPA/PCI (UltraSPARC-IIi 440MHz)

      Regards,

      Alex

    23. Re:Cross-platform performance. by Stary · · Score: 1
      I'm running 0.9.5 now on both win and solaris (going to download the new one on win when I get back home). This solaris box is a SunBlade 100. The memory shouldn't be an issue, either.

      My guess would be: try the milestone or any other optimized build.

      --
      Tomorrow will be cancelled due to lack of interest
    24. Re:Cross-platform performance. by Simm0 · · Score: 4, Informative

      Unfortunately this high optimization (>= -O3) will not work while compiling with GCC 3.0 which currently has a strange bug which will cause mozilla to crash on startup. A patch was checked in early today that fixes this problem on the mozilla trunk.

    25. Re:Cross-platform performance. by marmoset · · Score: 1
      The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite.


      The (x) isn't in the 0.9.6 branch, but it's back in
      recent trunk builds so it should show up again in 0.9.7. Not quite sure why they dropped it in the first place, but enough people complained and it's back.
    26. Re:Cross-platform performance. by Organism · · Score: 1
      The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite.


      Yep, gotta love the tabs. You can configure the middle mouse button (or wheel) to close it. Download MultiZilla here. It's easily my fave feature over IE. Unfortunately, it appears to be broken in v0.9.6 :(

      --
      -- My hovercraft is full of eels.
    27. Re:Cross-platform performance. by Anders · · Score: 2, Interesting

      One thing I've always been curious about is the effect of the compiler on performance. VC++ produces fairly quick code. How does GCC code compare?

      Generally speaking, compiler optimizations do not matter. For tight, number crunching loops, they might - but most desktop software spends its time in system libraries (when they do not wait for user input).

      To optimize, it does not help to call ten library functions slightly faster, the functions will still require the same time; what helps is a redesign where you bring down the need to call functions (for example by caching values). Turning on compiler optimizations will not help you with that, though.

    28. Re:Cross-platform performance. by mtm · · Score: 1

      Actually, the Ultra 10 has a UltraSparc IIi processor with 2meg cache (same as the Ultra 5). The only workstation with an Ultra III is the Blade 1000 (with 8meg cache). The Blade 100 has a wimpy UltraSparc IIe w/256k cache. My Ultra 10 "feels" about twice as fast as my friend's Blade 100 when it comes to java compiles, but his Blade 100 is faster at graphics (my 10 has a Creator 3d, his Blade has an Elite 3d).

      Anyway, good luck with the Blade 1000 (wink, wink)

    29. Re:Cross-platform performance. by Idaho · · Score: 2

      Hello? I don't know what reality you're living in, but at least in my reality there IS such an 'X' to close a tabbed window, in the upper-right corner just below the "M"-logo.

      Has been there in 0.9.5 and stayed there in 0.9.6

      And I've tried this using both Modern and Classic layout. So I don't see what you're talking about...

      --
      Every expression is true, for a given value of 'true'
    30. Re:Cross-platform performance. by WzDD · · Score: 1

      From tests that I've run, pthread_create is actually faster then fork on UP systems

      Well obviously - fork() has to do more work. Have a look at the man page for clone(), specifically the CLONE_VM option. This is not set for fork(), which means that the kernel has to create new page table entries for the child process, and actually copy memory when the process dirties those pages. It is however set for pthread_create, which means no duplicating of PTEs and thus faster execution time.

    31. Re:Cross-platform performance. by captaineo · · Score: 2, Informative
      That's pretty moot with the latest X releases (4.x is pretty freaking fast, expecially when optimized.) Graphics performance on my box is actually a little better under Linux/X (and FreeBSD/X) than Win2k Pro.

      X will always be slower than GDI, because of the client->server copy and context switch (whereas with GDI it's just fill command buffer, then execute). Not that this is a bad thing - network transparency is great, and the speed difference can theoretically be made arbitrarily small, given enough optimization of the X code =). At this point though the basic problem is that the X protocol is too stateless, and so you waste time sending massive amounts of state between the client and the server. (believe me, I've used LTT to make kernel traces of Mozilla redrawing - it's nasty. It's not just a simple expose event->redraw round-trip; it's several round trips...).

      It's icky, but often irrelevant (since most Linux programs just fork additional processes, and this is pretty clean. Under Linux, process creation is much less expensive than in Windows).

      That's completely true, and all of my own software uses multiple processes for concurrency rather than threads =). But, we are talking about Mozilla here. Mozilla makes extensive use of pthreads :[. (ideally a web browser should just be one thread using async socket I/O; although I might go along with having a second thread for async disk I/O, and/or doing Java garbage collection asynchronously)

    32. Re:Cross-platform performance. by brunes69 · · Score: 2

      He means an X ON the tab, a-la Galeon. This would allow you to close an open tab without swiching to it.

    33. Re:Cross-platform performance. by Anonymous Coward · · Score: 0

      "Interesting"? WTF? "Informative" you foo

    34. Re:Cross-platform performance. by _mythdraug_ · · Score: 1

      Middle-clicking the tab, or a right click context menu both allow you to close the tab also.

    35. Re:Cross-platform performance. by bpowell423 · · Score: 3, Informative

      right-click on the tab, select "close tab". This will close the tab without switching to it, albeit with two clicks, not one.

    36. Re:Cross-platform performance. by The+Pim · · Score: 2
      The main reason is that Mozilla makes pretty heavy use of pthreads, and pthreads don't exactly fly on Linux.

      In your own words, nice try. pthreads on Linux have their problems, but entirely implausible that mozilla bottlenecks on thread creation. From what I can see (strace seems to fall down :-/ ), mozilla (0.9.5 linux) may create a thread or two for some "big" operations like opening a window or loading a page, but not for typical UI operations. And there's no way that the creation of a few threads accounts for the painful slowness of the "big" operations.

      I don't know the specific answer (one friend who dabbled in mozilla debugging told me the performance problems "defy explanation"), but it doesn't take much staring at top to see that the main thread sucks CPU hard when you perform any UI operations. So I suspect that the the unix front end is just not as well tuned as the Windows front end (which jives with what I've heard about the priorities of Netscape employees). It's also worth noting that the Netscape 4 unix front end was designed by legendary hacker Jamie Zawinski :-)

      --

      The evaluation of an action as 'practical' . . . depends on what it is that one wishes to practice.
    37. Re:Cross-platform performance. by the_2nd_coming · · Score: 2

      but if they are using GCC 2.9.5 the prelinking sucked ass so it creates slow C++ code. however, if they use GCC3.x, the Prelinking is much better, however, it still sucks ass when you compair it to VC++

      --



      I am the Alpha and the Omega-3
    38. Re:Cross-platform performance. by airgee · · Score: 1
      • The (x) isn't in the 0.9.6 branch
      You probably broke something. The (X) is definitely there in 0.9.6.
    39. Re:Cross-platform performance. by airgee · · Score: 1

      Click on the tab with the middle button (or wheel).

    40. Re:Cross-platform performance. by sfe_software · · Score: 2

      I like the X where it's at, but what would be nice is some feedback. It's not really a button, and sometimes it takes >1 second to actually close; using a laptop (touch pad) it's not always clear if you actually clicked it or not...

      However, I'm glad Mozilla is at the point that I'm complaining about such simple things as this; it's been my primary browser since 0.9.2.

      I did notice (as others have mentioned) how much faster it is on Windows. It may be my imagination but I could swear 0.9.6 is a lot faster than .5 was at startup and loading pages... but still has much room for improvement on the Linux side of things.

      --
      NGWave - Fast Sound Editor for Windows
    41. Re:Cross-platform performance. by greenrd · · Score: 1
      For tight, number crunching loops, they might - but most desktop software spends its time in system libraries (when they do not wait for user input).

      There are some cases where mozilla does waste a lot of time, NOT due to slow OS calls. For example, if you have a large mozilla history: Fire up xosview. Go to Tasks:Tools:History in moz. Watch xosview.

      Really crappy data structure code can spend a lot of time messing about in userland. mozilla's history-related code is a particularly bad example of this.

      But I agree, often it is more helpful to rethink algorithms rather than just crank up the -O level.

    42. Re:Cross-platform performance. by greenrd · · Score: 2, Interesting
      Both ways are buggy at the the moment. The former sometimes closes the wrong tab. The latter I just tried and it worked, but it also pasted the clipboard contents into the URL bar and went there - which I did not want!

    43. Re:Cross-platform performance. by Misch · · Score: 2

      Try adding in some other Mouse Gestures. Then you can start having some more fun with the mouse buttons :-)

      --

      --You will rephrase your request for me to go to hell. Goto statements are not acceptable programming constructs
    44. Re:Cross-platform performance. by marmoset · · Score: 1

      You're right -- I should have checked a branch build myself (I almost always run trunk builds so I was just going on the original poster's statement.)

    45. Re:Cross-platform performance. by BZ · · Score: 3, Informative

      Unfortunately, a lot of the work Mozilla does _is_ tight number-crunching loops of various sorts. What do you think layout is? It's a lot of recursive number-crunching. So yes, the compiler is making a large difference here. Going from -O to -O2 with gcc (the milestones use -O) leads to a 15% speed increase pretty much across the board for all operations (page loading, new window, etc)

    46. Re:Cross-platform performance. by Frag-a-Gates · · Score: 1

      Okay now, I'm not a hardcore linux hacker in any sense, and I think that Mozilla is a very fine looking browser, but on my 1,5 Intel Xeon with 1GB RDRAM, Mozilla is still damn slow.
      As you are addressing the threads in Mozilla, I understand that it's the Mozilla core that is slow, am I right?
      As far as I understand, the Mozilla core is used by Galeon, which is my preffered browser, because of speed. I don't get it. Galeon is fast even though it uses the Mozilla core which is slow? I'd love to get that explained, because I just don't get it.

      --
      [insert random fortune here]
    47. Re:Cross-platform performance. by jdennett · · Score: 1

      Pthreads generally are *not* implemented in user space, and they're not under Linux. Ah well.

    48. Re:Cross-platform performance. by Fnkmaster · · Score: 2
      The X on the tab itself (close current tab) WAS there. They removed it in the nightly builds in between 0.9.5 and 0.9.6. I assume it hasn't made a reappearance yet. This was removed because somebody decided it wasn't good UI design and currently they refuse to replace it. Assholes.


      The correct means to close tabs is right-click close on the tab. Ctrl-w and middle click on the tab are shortcut mechanisms for this.

    49. Re:Cross-platform performance. by mo · · Score: 1

      Aren't these nightly rpms optimized?

    50. Re:Cross-platform performance. by Bedouin+X · · Score: 1

      The Mozilla core is actually quite fast. The slowness of the application is frequently blamed on the fact that Mozilla renders its own interface as opposed to letting the Operating System handle this.

      Browsers like Galeon and Kmeleon are faster because they give this function back to the OS. As a result though, their respective looks are confined to one platform.

      There are definitely advantages to both implementations, and the fact that these "children" of Mozilla are available independently on Windows and Linux says a lot about the flexibility of the gecko core (a good selling point).

      --
      Dissolve... Resolve... Evolve...
    51. Re:Cross-platform performance. by Bedouin+X · · Score: 1

      I don't think that it is good UI design either. Too easy for a user to accidently close a tab. Having it off to the side puts a minimal effort into closing the window. Which I personally think is a good decision.

      --
      Dissolve... Resolve... Evolve...
    52. Re:Cross-platform performance. by Anonymous Coward · · Score: 1, Insightful

      I guess the thread thing explains why Mozilla sucks compared to the old Netscape when you open multiple windows. In Netscape 4.x, the OTHER windows are responsive while one page loads its content, but in Mozilla, all the windows become unresponsive. Both react equally when the name server doesn't come back immediately, though...

    53. Re:Cross-platform performance. by "Zow" · · Score: 2

      Um, that's what I thought at first too, but I think the origonal poster is on a Mac.


      -"Zow"

    54. Re:Cross-platform performance. by Anonymous Coward · · Score: 0

      If you want them to fix that bug, vote for bug #70213 ([RFE] XP_UNIX DNS lookups are serialized) Some people at Netscape think this should be fixed by 1.0, but it is still currently targeted "future". A few more votes might turn the tide in favor of getting it fixed by 1.0!

    55. Re:Cross-platform performance. by nstrom · · Score: 1

      > On windows, moz is FAST, and getting faster

      Not on my system! Mozilla is many times slower than IE or NS4 on my WinXP machine (and was under Win2K before I upgraded)...

    56. Re:Cross-platform performance. by Hornsby · · Score: 2, Interesting

      I'm not sure if this just changed with the latest release or not, but --enable-optimize no longer accepts an argument of the compiler optimizations as described in the parent to this comment. The ./configure will croak if you put the ac_add_options --enable-optimize in your .mozconfig. The proper way to set this option is to export the MOZ_OPTIMIZE_FLAGS variable before you run configure, setting it to whatever flags you want passed to the compiler during the build. You also need to include the ac_add_options --enable-optimize line in your .mozconfig with NO arguments, or it will ignore any flags that have been specified in the MOZ_OPTIMIZE_FLAGS variable. Also, seeing as how many of us are using the most modern x86 processors, it would be advisable to set -march and -mcpu to i686 rather than pentiumpro. I'm in the process of rebuilding the lizard now, and I'm quite curious as to what kind of empirical performance increases I'm going to see.

      --
      A musician without the RIAA, is like a fish without a bicycle.
    57. Re:Cross-platform performance. by IvyMike · · Score: 2

      I tried running the 0.9.5 Mozilla today (it looks like the 0.9.6 isn't available for Sparc Solaris yet) and it is, in fact, quite a bit faster than the daily builds. Even though it doesn't have the latest cool feature (favicons) I think it's enough faster that I'll stick with it. Thanks.

    58. Re:Cross-platform performance. by Anders · · Score: 1

      15% isn't really that much; it is the difference between 2 seconds and 1.7 second. I don't even think you'd notice it most of the time (without a watch).

      For substantial differences, I still think you need to rethink your algorithms. Windows might handle for example shared libraries more effeciently than Linux and that could be the reason that Mozilla is reported to be faster on Windows. But that would still be due to better algorithms (though in Windows, not in Mozilla), not the low level optimizations that compiler optimization does.

      I think I just realized that the original poster did not limit his question to compiler optimizations, so I am digressing here. I still stand by my claim, though; even though I answered the wrong question :-).

    59. Re:Cross-platform performance. by Fnkmaster · · Score: 2

      Sorry, my post was confusing. It was "off to the side" in 0.9.5 and was impossible to accidentally close. In the nightly builds there was no X at all for a while. I still haven't gotten to use 0.9.6 release yet, so I have yet to determine if they've come up with a compromise between the UI purists and the people who just want to close tabs easily.

    60. Re:Cross-platform performance. by Eccles · · Score: 2

      Right click on the tab, there are a couple of interesting menu options there

      I wish close tab was the first, though; I've accidentally gotten rid of other panes I didn't want to get rid of because I've chosen the wrong menu thingie. The first item is generally the easiest to pick and should the most common thing.

      I wonder if there could be a clean way to make tabs convertable to separate windows and vice-versa.

      --
      Ooh, a sarcasm detector. Oh, that's a real useful invention.
    61. Re:Cross-platform performance. by preed-man · · Score: 1

      And I will do so again for 0.9.6.

      In fact, I've been arguing with CVS for a couple of days; expect NavOnly opt builds on Monday when everyone gets back from the holidays and I can get them posted on ftp.mozilla.org.

    62. Re:Cross-platform performance. by mccalli · · Score: 1
      Microsoft's answer to this failing was to make threading as fast as possible, and to push multithreaded programming as a hack around a fundemental OS problem.

      Bit harsh, isn't it? Personally I don't think that multithreading is a hack to get around anything, Microsoft or no Microsoft. It's just a technique, and in my opinion a very useful one.

      Cheers,
      Ian
    63. Re:Cross-platform performance. by BZ · · Score: 2

      15% is about as much as typical _good_ algorithmic speedups have been giving. A typical algorithmic speedup will make some class of cases much faster, make some class of cases a bit slower, and not affect most cases. It usually averages out to a few percent improvement overall.

    64. Re:Cross-platform performance. by rdean400 · · Score: 1

      What I'm concerned about is that when you're talking about mozilla on linux, you're talking about a GCC-compiled application calling GCC-compiled libraries. Differences in optimization efficiency between GCC and VC++ could lead to large disparities in performance.

      The question was really about how well GCC optimizes code and if that could be a contributing (not sole) factor to Mozilla/linux's performance woes.

    65. Re:Cross-platform performance. by ink · · Score: 2
      Pthreads are POSIX threads, and have very different semantics from clone(), mostly to support implementing multithreading in userspace (ick). So, the standard is a hack to say the least.

      You don't know what the hell you're talking about. Linux pthreads use clone() syscalls! In addition, userland threads have an order of magnitude faster spawning time than kernel threads at the expense of clueless scheduling with regards to I/O operations, so your assertion (ick) that they are undesirable is very strange. You should check out IBM's ngpt project for Linux, which will give the programmer a choice between the two.

      How did you get modded up to +5 informative?

      --
      The wheel is turning, but the hamster is dead.
  5. much improved! by wtmcgee · · Score: 3, Redundant

    its looking really good - every release gets a lot more reliable, and has slowly taken over #2 from opera, and is now getting close to giving IE a run for its money. one thing i wish i knew how to do is make a nice solid, simple theme for moz though - i'm not too high on any of the themes i've seen so far.

    regardless - this is not the mozilla devolpers jobs - they're doing a great job with the browser! the performance fixes they are referring to are also much anticipated - speeding this bad boy up would shut up a ton of critics.

    --
    *** For a better tommorow, change your life today ***
    1. Re:much improved! by motherhead · · Score: 2, Insightful

      ha ha, that's funny. get a life.

      heh, if i could run konqueror or galeon on my OSX or 2K/XP boxes i would never run/miss IE.

      Instead of him getting a life, how about you get a clue and stop chokeing on whatever they ram down your throat.


    2. Re:much improved! by Mad+Marlin · · Score: 1
      its looking really good - every release gets a lot more reliable, and has slowly taken over #2 from opera, and is now getting close to giving IE a run for its money© one thing i wish i knew how to do is make a nice solid, simple theme for moz though - i'm not too high on any of the themes i've seen so far ©©©

      Actually, I was greatly impressed by Mozilla over this last weekend, not from me using it ¥I have for quite some time, since I haven't had a non-Unix machine in quite some time, but rather when, after installing it on my Dad's Windows98 box ¥EIU kicked me out of the dorm for Thanksgiving, so I am back home right now, he actually started using it instead of MSIE© I am downloading 0©9©6 for him right now©

    3. Re:much improved! by seann · · Score: 1

      oo..thinking sexy thoughts
      change your
      shell=explorer.exe
      to
      shell=konqueor.exe

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
    4. Re:much improved! by Anonymous Coward · · Score: 0

      You do know that konqueror isn't available on windows, as it's part of KDE, right???

    5. Re:much improved! by Patoski · · Score: 1

      heh, if i could run konqueror or galeon on my OSX or 2K/XP boxes i would never run/miss IE.

      I don't know about the OSX world but for your Win32 needs there is always k-meleon which is basically a Win32 Galeon type browser based on Gecko.

      --
      G. Washington on Government "it is force. Like fire, it is a dangerous servant and a fearful master."
    6. Re:much improved! by rpk · · Score: 1

      We need a K-Meleon equivalent for Mac OS X. From what I've read it's Possible and merely a Small Matter of Code.

      My one complaint with K-Meleon is that the preference interface is lacking; probably because the code hasn't been written yet. This is going to be the one problem with alternate UIs for Gecko; the UI resources and code for Mozilla can't be used in such projects. Well, at least directly. Perhaps the Mozilla UI users could be imported by a tool that translates them to a plaform-specific format. It doesn't even have to do a perfect job, it just has to do a good enough job so that a developer can tweak the final results to look native on the target platform.

    7. Re:much improved! by Patoski · · Score: 1

      Perhaps the Mozilla UI users could be imported by a tool that translates them to a plaform-specific format. It doesn't even have to do a perfect job, it just has to do a good enough job so that a developer can tweak the final results to look native on the target platform.

      I think the API you're looking for is wxWindows. If you don't know what wxWindows is here is an explanation from the web site.

      "What is wxWindows? wxWindows gives you a single, easy-to-use API for writing GUI applications on multiple platforms. Link with the appropriate library for your platform (Windows/Unix/Mac)and compiler (almost any popular C++ compiler), and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWindows gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much much more."

      A wxWindows version wrapping Gecko would kick some serious butt and make a slim standards compliant browser available for all platforms. I'm not sure how easy this would be since I don't know a lot about Moz's guts but it would still be ripping.

      --
      G. Washington on Government "it is force. Like fire, it is a dangerous servant and a fearful master."
    8. Re:much improved! by seann · · Score: 1

      I'm in a dream world..

      but I don't use windows much except for the office
      and even then I sometimes vnc home for pretty apps

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
  6. So... by Anonymous Coward · · Score: 1, Interesting

    Is the location field long enough now? I can barely see more than http:// in my current version.

    1. Re:So... by mixmasta · · Score: 1

      Try turning off the stupid print, search, and go buttons in the prefs. Thats the first thing I do when I dload it.

      --
      #6495ED - cornflower blue
    2. Re:So... by SCHecklerX · · Score: 2

      Disable the 'search' button, and instead have your search engine show up in the drop down list under 'smart browsing'

  7. Re:Mozilla is a great browser if... by jacoplane · · Score: 5, Informative

    If the only part of mozilla you like is Gecko, then use only gecko with a simplified interface.

    For linux, try Galeon

    For windows, try K-Meleon

  8. Re:Mozilla is a great browser if... by ihatelisp · · Score: 4, Insightful

    From the release note,

    System requirement
    * Intel Pentium-class 233 MHz (or faster) processor

    So your hardware isn't even covered by the requirement. However, Mozilla runs fine if you have a lightly loaded system, e.g. a clean install of Windows 95. I was able to run Netscape 6.2 on a Pentium 100 with 32MB RAM in Win95, and it outperforms Netscape 4.79 (try fancier pages like www.msn.com; simple pages doesn't justify what Gecko is capable of).

    Your hardware is pretty old. If you're thinking about running Mozilla on top of X in unix, well, you're pushing your computer too hard

  9. And in other news... by Anonymous Coward · · Score: 0, Flamebait

    Return to Castle Wolfenstein has been released.

    Off topic? Then explain to me how a X.X.? build release is "News", and more important (IMHO) news is nowhere to be found...

    1. Re:And in other news... by Anonymous Coward · · Score: 0

      how was that flamebait that guy was pointng out somethin i ahv been askin for eyar

  10. How to export Address/Mail? by xenyz · · Score: 1

    I've been trying to figure out how to export mail and addresses (specifically addresses, you can forward all the mail out). Anyone have any ideas?

    The actual address book file is anything but easy to read XML...

  11. Galeon by DaCool42 · · Score: 1, Offtopic

    I've been using galeon here mainly (it's using gecko as well), and I've found it to be quite good. The interface is much lighter than mozilla's, and it has a very good tab implementations. Give it a try if you haven't already.

    --

    ----
    All of whose base are belong to the what-now?
  12. Mozilla by 1155 · · Score: 2, Interesting

    Mozilla seems to really be coming along. As soon as it is streamlined more or less, it should run smoothly on most setups. Perhaps the most evident note on this suite though, is that it is still in the 0.*.* mode in developement. People are making decisions on it before it is fully developed, or before it hits the 1.0 mark.

    If you tried it a while back, wait until about 1.5.*, I am sure it will all work perfectly then. This build is a lot better than previous versions though. I would defitely recommend it for the end user who has a p2 300 or above.

    1. Re:Mozilla by frleong · · Score: 2, Troll
      Yeah, by the time mozilla 1.5.* is out, IE should be in version 8 or .NET or whatever. Even Opera would be at least in version 7. At that time, I think no one will ever bother running Mozilla again.

      I mean, it is extremely slow, even on my PII-400 with 256MB of RAM. IE is ways faster in load time and crashes less (trust me, the first time I loaded the latest Mozilla Mail/News, I got a crash within 3 minutes). You may say that IE is preloaded, but what about Opera? I'm using Opera 6 beta from time to time and its browser loads at about the same speed of IE.

      --
      ¦ ©® ±
    2. Re:Mozilla by Explo · · Score: 2, Informative

      I mean, it is extremely slow, even on my PII-400 with 256MB of RAM. IE is ways faster in load time and crashes less (trust me, the first time I loaded the latest Mozilla Mail/News, I got a crash within 3 minutes). You may say that IE is preloaded, but what about Opera? I'm using Opera 6 beta from time to time and its browser loads at about the same speed of IE.


      Pretty good crash performance; honestly, for me Mozilla crashes once in a few days. Even a year ago, it crashed just once or twice per day day for me. With the relative heaviness I agree though; It works pretty nicely with P3-550 & 256 MB of RAM or even better with my home machine (Thunderbird, more memory), but it's definitely a bit slow with my secondary machine, K6-2 400.

      --
      Everyone who makes generalizations should be shot.
    3. Re:Mozilla by Parein · · Score: 1
      I mean, it is extremely slow, even on my PII-400 with 256MB of RAM.

      Perhaps your definition of 'extremely slow' is just different than mine, but I run Mozilla on P200 with 96MB of RAM (and some swap, of course) and I don't consider it extremely slow.


      Of course, it is _slow_, just not extremely so. The only browser I use, nowadays.

    4. Re:Mozilla by krmt · · Score: 2

      Yeah, the turbo feature doesn't work so well since pretty much the update right after it first came out (9.3?, 4?) so it still loads slower than IE. It's nowhere near unacceptable though (I'm running a PII-400 with 128MB RAM, so I'm sure I'm getting speeds similar to yours).

      The thing that matters to me is that I get much much better page rendering performance out of Mozilla than I do out of IE. The Gecko engine is really shining these days, and I get much faster rendering times on just about any page with Moz. This is much more important to me than load times, and definitely makes that extra load time worth the wait.

      The Mail/News will get better, but last time I checked it was still under par. That seems to be the focus of the next few releases though, so don't count the module out. Remember, you won't have to configure it specially to be secure like you do for Outlook, which will be a real bonus (and time saver too, since we're on that subject).

      And as for crashes, I get about equal crashes in both browsers, depending on which computer I'm at. At the office, Mozilla is less stable. At home, IE is less stable. Mileage varies.

      In terms of future improvements, it'll be interesting to see if Microsoft will be able to take the lead on improvements again, or if Mozilla will continue to blaze the trail, as it's been doing lately. I wouldn't be surprised if tabbed browsing appeared in IE, but who knows what'll come out of Mozilla. And the 3rd party stuff! Once the API settles (which is why v1.0 is such a big deal) there should be some cool mini apps built for Mozilla. I already use the PubMed one all the time, it's my favorite browser feature yet, and makes Mozilla my browser of choice at the office. Because of the nature of the whole free software community, and the relative triviality of these kinds of apps, you'll see a ton of great ones come out once the API is ready for it. Then we'll see the browser wars really kick up.

      --

      "I may not have morals, but I have standards."

    5. Re:Mozilla by damiam · · Score: 1

      I have a P266 w/ 64MB of RAM and Mozilla is quite snappy on it. It takes about 30 seconds to start, but afterwards I don't notice any difference between it and my 766Mhz G4.

      --
      It's hard to be religious when certain people are never incinerated by bolts of lightning.
    6. Re:Mozilla by Snowfox · · Score: 2
      Yeah, by the time mozilla 1.5.* is out, IE should be in version 8 or .NET or whatever. Even Opera would be at least in version 7. At that time, I think no one will ever bother running Mozilla again

      So, if I read you right, you're an advocate of taking a hint from AMD, perhaps going with QuantiVersion technology(tm)?


      ...ours goes up to 11.

  13. Spell Checker by Malc · · Score: 4, Interesting

    I've found every release better than the last, except for 0.95, which seemed to have gained a few more crashes. I'm excited to see how this one goes. Can anybody give me instructions on how to integrate the Netscape spell checker and change the language settings to en_GB? I tried following instructions for the spell checker before (installed the .xpi), but I couldn't figure out how to actually use it (were the UI bits removed?)

    Only comment so far on the latest build: it polls all of the news groups and servers in my Netscape profile when the news/mail client starts. This is bad as I have a load of crap in there, and a load that are only accessible from when I switch internet connections. I have to click cancel on a lot of dialogs before I can get going :(

    1. Re:Spell Checker by Reikk · · Score: 0

      Yes, I agree. 0.9.5 introduced a few more bugs, but I continue to download every release and test it for bugs. I don't have the time to contribute toward the development, but the least one can do is report detailed bug reports everytime it crashes. IMO, mozilla is the best browser for linux. I wish it had a few more features, like the ability to disable javascript per site (like konqueror can do). I don't think it has surpassed IE. Also, mozilla uses entirely too much memory, which can make it impractical to keep open for doing research while staroffice and gnome are running.

    2. Re:Spell Checker by yota · · Score: 2, Informative

      This is the Unofficial Mozilla Spell-checker FAQ: http://www.mozilla.org.uk/docs/spell-checker-faq.h tml it should address your concerns.

    3. Re:Spell Checker by Galvatron · · Score: 1

      Yeah, but 0.9.4 wouldn't load some important pages (like my brokerage firm) which had worked under 0.9.3. So, 0.9.6 restored functionality, but backslid a tad in stability (still better than 0.9.3 though).

      --
      "The question of whether a computer can think is no more interesting than that of whether a submarine can swim" -EWD
    4. Re:Spell Checker by Malc · · Score: 1

      Ahh, I see: I have to go back a couple of versions if I want spell checking capabilities. Thanks for the link, BTW.

    5. Re:Spell Checker by Scooby+Snacks · · Score: 1
      I wish it had a few more features, like the ability to disable javascript per site (like konqueror can do).
      Actually, it can, but there's no nice user interface for it yet like in Konqueror.
      --

      --
      Runnin' around, robbin' banks all whacked on the Scooby Snacks...
  14. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 5, Funny
    I'm sure Gecko is a wonderful rendering engine and all that, but the performance gain is totally lost on us Pentium-120mhz users.

    Yep - it's pretty slow on my C64 as well.

  15. Re:Mozilla is a great browser if... by Milican · · Score: 4, Informative

    Well lets look at the system requirements, which as we all know are very conservative

    Windows
    * Intel Pentium-class 233 MHz (or faster)
    * 64 MB RAM
    * 26 MB of free hard disk space

    Linux
    * Intel Pentium-class 233 MHz (or faster)
    * 64 MB of RAM
    * 26 MB of free hard disk space

    Since you probably can't upgrade your processor on your board maybe you should try and bump your RAM to 128MB or so? That would definitely help out. Otherwise I recommend you give Opera a shot. It's right up your alley and it works on Linux and Windows :)

    JOhn

  16. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    That's strange, because it's blazing for me on my Apple ][ clone.

  17. 9.6! by JabberWokky · · Score: 3, Flamebait
    9.6 already... wow. Soon to be followed by:

    9.7 (two months)
    9.8 (six months)
    9.9 (one year)
    9.99 (two years)
    9.999 (five years)
    9.9999 (nine years)
    9.99999 (thirty-seven years)
    9.999999 (nine hundred and twenty-eight years)

    (No offense meant to the Mozilla team - the last time I poked at it, it looked like a nicely developing and nifty browser).

    --
    Evan

    --
    "$30 for the One True Ring. $10 each additional ring!" -- JRR "Bob" Tolkien
    1. Re:9.6! by Anonymous Coward · · Score: 0

      Mozilla 9.6? Where can I download that?? As far as I can tell, Mozilla is still at the sub-1.0 level.

    2. Re:9.6! by tstock · · Score: 1

      From 9.9 to 9.99 would mean 90 releases (9.10, 9.11, ...).

      In your time gap of 1 year that would be a release +- every 4 days. You give the mozilla team too much credit IMO :)

      I wish Mozilla would stay with the browser first, and develop the other components as add-ons. I never downloaded communicator, always hunting down the hidden Navigator files.

      I Mozilla ever bloats to the communicator level I will start looking for a _browser_ again.

    3. Re:9.6! by ThatComputerGuy · · Score: 2

      Now see, if they had just followed Knuth's example, they wouldn't have this "1.0 Stable Milestone" problem!

      So, Moz team, when will we see version 0.9.9.3.1415...?

      --
      XML is like violence. If it doesn't solve the problem, use more.
    4. Re:9.6! by rmathew · · Score: 1
      Instead of targetting a 1.0 release "when it's done", they should do what Knuth did for TeX - number the versions 3, 3.1, 3.14, 3.141, etc. - indicating the move towards perfection with each release.

      They can probably use the Golden Ratio (1.618033...), since Pi has already been taken. ;-)

    5. Re:9.6! by zmooc · · Score: 1

      Well that seems a bit like they thought to late of a nice version numbering scheme:) O wait it already does if you look at the ftp-directories:) After M9 comes 0.6 :) Anyway. I suggest 0.9.8.7.6.5....

      --
      0x or or snor perron?!
  18. wake me up daddy by Anonymous Coward · · Score: 0

    When they get to 1.0, what is all of this .9 crap until the end of time?

  19. Re:Mozilla is a great browser if... by jacoplane · · Score: 2, Interesting

    There's also a similar project for Mac OS X, qbati, which seems to be just getting underway.

  20. Export by nexex · · Score: 3, Funny

    Interesting line from export restrictions,
    "This source code is subject to the U.S. Export Administration Regulations and other U.S. law, and may not be exported or re-exported to certain countries (currently Afghanistan (Taliban controlled areas) ...". And we all know that those areas will be non-exsistant :)

    --
    Winter 2010: With Glowing Hearts
    1. Re:Export by matthayes · · Score: 2, Funny

      currently Afghanistan (Taliban controlled areas)

      Which, given the Taleban's advocacy of the Internet, is a crying shame.

    2. Re:Export by Tyreth · · Score: 0, Offtopic

      This kind of comment just annoys me, because it reminds me of the misplaced confidence America seems to have in winning this war. Taliban losing controlled areas - think about it for just a minute. If you were the Taliban and Osama Bin Laden, what would you do? Would you try and hold the cities? Or would you retreat to your extensive cave network, and let America/Northern Alliance feed the cities during the winter? It's an excellent strategy for the Taliban to deliberately lose control of all of Afghanistan, because like Vietnam, their advantage is in remaining small and hidden. America is not pure, and it's hands are much more stained than Osama Bin Laden's.

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

      YOU! Shut your mouth!

    4. Re:Export by Anonymous Coward · · Score: 0

      I don't find this comment funny. I don't like americans and yet I won't make jokes about the towers.

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

      constructive brainless comment that is :)

    6. Re:Export by Anonymous Coward · · Score: 0

      what happened on 11th september was indeed a sad day. but its still not proven that the taliban was the cause. so its really sad that the whole fucking world is humping on afgahnistan now. sanction them, disallow them to use software and other crap. not to mention all these sick fucking jokes with retarded usama bin laden caricatures that i am forced to see when exploring the internet. i was really embaressed and shocked after reading that license... theres nearly every muslim country printed on that shit...

  21. Re:Mozilla is a great browser if... by LazyDawg · · Score: 2

    My main complaint was, through a thin veil of sarcasm: "If Opera can run so snappy and fast, why not Mozilla?"

    I use opera, and Netscape 4.78, and they do just fine on my "C64-like" hardware.

    If you have the best hardware around, then Mozilla works snappy, which is all well and good, but deep down inside developers should be worried about how many cycles are being wasted.

    But I guess stuff like that deserves Score 0: Troll :)

    --
    "Look at me, I invented the stove!" -- Ben Franklin
  22. It's nearly on par with IE5.5 by gruntvald · · Score: 5, Interesting

    Though I haven't checked 6.0 yet. If the Mozilla team can straighten out some of the plug in problems (for example, it takes some voodoo before java actually works), or at least come up with a definitive install procedure, we'll be rockin'. The browser is solid, but I don't want to have to be asked what MIME type an m3u file (winamp playlist) is. Heck, I don't actually know! I'm so used to it being taken care of. This kind of "plays nice with others" is something we take for granted - even if it's fake in Bill Gates' case!

    1. Re:It's nearly on par with IE5.5 by The_Messenger · · Score: 0, Informative
      Nope, sorry. It always initially loads in under two seconds on this workstation, while NS4.x takes about five and NS6 takes thirty (no joke). It's the only browser on Solaris that consistently and correctly renders XHTML. And don't even get me started about memory usage.

      I was expecting the worst, but I was quite impressed. Heck, MS even went through the trouble of providing CDE icons. My only complaint, feature-wise, is that you can't browse local directories with IE, but that's minor.

      You must not be using a recent version. Get 5.0 and then tell me it's slow and bloated. Fine, maybe it doesn't work for you, but on all of my modern Solaris boxes -- from a humble Blade 100 to an E6k -- IE stomps NS4.x and blows away Mozilla. I'll admit that on my SPARCstation 5 (the 170MHz Fujitsu TurboSPARC model) Netscape 4 provides better performance, but if you're running kit that old, you have more important things to worry about than browser performance. ;-)

      I used to be quite the Netscape weenie myself -- hell, even on Windows I used NS4.x up until IE5.0 was released. But not a single person I've ever met (IRL, as opposed to these online flamewars) who's used IE on Solaris and fairly compared it to Netscape and Mozilla (without the anti-MS issues being involved) can deny that it rocks. Seriously, if you're having issues, give me your hardware specs and OS version and I'll try to help you out.

      --

      --
      I like to watch.

    2. Re:It's nearly on par with IE5.5 by n-baxley · · Score: 2

      I agree 100%. If we want this to become "everyman's browser", then you have to improve the install to make it "idiot proof". But, maybe that's what the NS 6.x releases are for. ;)

    3. Re:It's nearly on par with IE5.5 by c.r.o.c.o · · Score: 1

      No, it doesn't take voodoo to get java working. On 0.9.5 I just went over to netscape's dl page, and just started the java install for netscape6 on Linux, I believe (it was right after 0.9.5 came out, so it's been a while). The mozilla installer took everything from there, with its autoinstall feature.

      After the download was complete, I restarted mozilla, and voila, I had java. I guess you could call it voodoo, since I did not touch anything during the whole process.

      One thing tough, when you install plugins, you have to be logged in as the user who has write access to the mozilla directory. So if you were root, run mozilla as root when installing plugins (this is my case)

    4. Re:It's nearly on par with IE5.5 by javacowboy · · Score: 1

      If the Mozilla team can straighten out some of the plug in problems (for example, it takes some voodoo before java actually works), or at least come up with a definitive install procedure, we'll be rockin'.

      With Java it's simple. You just copy all the .dll files from your JavaSoft directory in Windows to the Mozilla plug-ins directory. For Linux, you just do a symlink to the java2/plugin/i386/ns600/libjava.oji.so directory in the mozilla plugins directory. For all other plug-ins, just copy and paste all the files in your Netscape 4.7x directory to the Mozilla plugins directory (Windows AND Linux).

      For Java installation instructions, go to:

      Release Notes: Known Problems: Java

      It seems all these problems have already been solved in Netscape 6.2, at least for the Windows version.

      --
      This space left intentionally blank.
    5. Re:It's nearly on par with IE5.5 by Luyseyal · · Score: 2

      NS6 or Mozilla? They're similar, but different animals.

      -l

      --
      Help cure AIDS, cancer, and more. Donate your unused computer time to worldcommunitygrid.org. Join Team Slashdot!
    6. Re:It's nearly on par with IE5.5 by yesthatguy · · Score: 2

      for example, it takes some voodoo before java actually works

      I had that exact problem - the netscape 6 plugin repeatedly b0rked my installation. The best solution I've seen, and it seems to work pretty well, is to just use the plugin file that's included with the jdk. On my linux box, it's in /usr/java/jdk1.3.1/jre/plugin/i386/ns600/libjavapl ugin_oji.so and I see somebody's already posted its location on Windows. I just symlinked this file into /usr/lib/mozilla/plugins, restarted mozilla, and java worked perfectly.

      --
      Yes! That guy!
    7. Re:It's nearly on par with IE5.5 by Anonymous Coward · · Score: 0

      Even after installing Java, I still have difficulty to overcome access control problem.

      For example, I try to use Moz to read Oracle 8.1.7 generic documentatation CD. The startup page have an applet and the applet will try to read some other documents on the CD. I turn on the Java console. The message on the Java console and my experience with Konqueror (after many struggle, I was able to make the Java in Konqueror to work on the same CD) seems imply I do not set the access control correctly.

      Can somebody help me.

  23. Try this by Anonymous+DWord · · Score: 2

    http://www.seas.upenn.edu:8080/%7Ezakharin/Softwar e/Dawn.html

    Works up to 0.9.3, so it should work...

    --
    "If he thinks he can hide and run from the United States and our allies, he's sorely mistaken." Bush on bin Laden
  24. What? by shaunak · · Score: 1, Troll

    "For milestones 0.9.7 and 0.9.8, the focus
    is on performace enhancingment, and stability
    of the Mail/News end of the suite."

    You mean to say all these previous milestones
    focussed on making Mozilla slow, buggy and
    unstable at the Mail/News end?

    Gosh, I would never have guessed!!

    --
    -Shaunak.
  25. Could someone please tell me... by Pollux · · Score: 2

    ...if they got rid of the pathetic crash error that happens whenever one uses the tab key to jump from one data field to the next?

    Man, that bug makes me so angry. I'm using .95 right now, and had to restart Mozilla as well as restart the .96 download due to that bug.

    1. Re:Could someone please tell me... by itarget · · Score: 1

      I've never seen that bug. I could have simply missed it, though... I use the nightly builds, updating to a new one every couple weeks.

      --

      "Where shall the word be found, where will the word resound? Not here, there is not enough silence." -T.S. Eliot
    2. Re:Could someone please tell me... by Stary · · Score: 1

      Is this bug reported? It's never happened to me, and I use tab to do that frequently. Worst thing that ever happened to me was that it simply didn't work to jump to another data field with tab.

      --
      Tomorrow will be cancelled due to lack of interest
  26. These are the days by Sludge · · Score: 5, Informative
    I'm going to miss these days. My favourite browser gets massive improvements every couple of months.

    Idea wishlist:

    • Ability to bring up my $EDITOR when typing in a textarea
    • Plugin missing popup isn't so annoying (I refuse to install flash)
    • A clean looking theme that isn't netscape 4-ish
    • More usability based around the tab feature. That thing is wonderful!
    • A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

    I'm a very busy person who does some good for the community already in his free time, so don't ask me to implement these features. I just don't have the time.

    Perhaps this would be a good time to ask... does anyone know of a proxy that allows you to rewrite packets on the fly? I think the web's got to the point where I want to start overriding some HTML arbitrarily. I know regular expressions, so some sort of regex interpreter would be quite handy.

    1. Re:These are the days by ink · · Score: 5, Informative
      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      Already done: Highlight the URL you want in some other application and then middle-click in a blank spot on any Mozilla page. You can even set this up to open a new tab with the tabbed browser by going to the new tab preferences under 'Navigator'.

      --
      The wheel is turning, but the hamster is dead.
    2. Re:These are the days by Dr.+Sp0ng · · Score: 3, Interesting

      * A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      That would be nice, but Moz (and NS4) let you simply middle-click on the HTML display area and it'll go to the URL in your clipboard. Nice timesaver, except when your mouse spazzes and you end up hitting a link instead of empty space and pop up a new window instead :P

      I agree 100% with your other points... those are pretty much my main gripes too. About the $EDITOR thing, yes! Every place I *ever* have to enter text should understand vi keys if I want it that way. I already have tcsh and every decently configurable program I run using vi keys, there's no reason Mozilla and all GTK/Qt apps shouldn't be able to as well :P

      Oh well, the situation is better than it is on Windows; my vi-trained fingers have a tendancy to hit escape after typing a bunch of text, and in IE this resets the text area to the default value. Quite irritating.

    3. Re:These are the days by Zerth · · Score: 1

      &gt Perhaps this would be a good time to ask... does
      &gt anyone know of a proxy that allows you to
      &gt rewrite packets on the fly? I think the web's got
      &gt to the point where I want to start overriding
      &gt some HTML arbitrarily. I know regular
      &gt expressions, so some sort of regex interpreter
      &gt would be quite handy.

      This might be what you're looking for, if you don't mind the windows-only-ness of it.

    4. Re:These are the days by Anonymous Coward · · Score: 0
      * A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.
      Middle click the window background. That will do what you want
      -Justin
    5. Re:These are the days by drudd · · Score: 2

      I have the exact opposite problem... I try to middle-click on a link to open it in a new window and end up pasting whatever crap was in my clipboard...

      I also have the strange habit of constantly selecting and deselecting paragraphs as I browse, so usually an entire paragraph of random text gets pasted as a url.

      Doug

      --
      Venn ist das nurnstuck git und Slotermeyer? Ya! Beigerhund das oder die Flipperwaldt gersput!
    6. Re:These are the days by anthony_baxter · · Score: 1
      * A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      I find that I can left click in the URL bar, then hit ctrl-U to delete the current contents. Does this not work for you? (linux, gtk build)

    7. Re:These are the days by kilrogg · · Score: 2
      * A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      Place the cursor to the begining of the URL bar and hit ctrl+k, this will delete everything after the cursor without copying it to the clipboard.

    8. Re:These are the days by Sludge · · Score: 2

      Ah, this is great news! I often hit the middle mouse button by accident on the page when I have crap in my buffer, and I used to get wierd errors about pages not being found. I never put 11 and 11 (binary) together.

    9. Re:These are the days by cabbey · · Score: 2
      Plugin missing popup isn't so annoying (I refuse to install flash)

      I've actually been thinking of making a fake plugin that could be trained to register for whatever you want, and all it ever does is render a grey rectangle. That would fix this problem for good.

      A way to delete the contents of the URL bar without destroying the contents of my clipboard.

      You mean like Konquerer's clear button? ;) /me too!

      Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      ugh, isn't that just the most annoying thing? I've screamed at the computer more than once for that move, especially when I've already closed the window I had copied from.
    10. Re:These are the days by kilrogg · · Score: 2

      Or yet one more way: you can also do ctrl+l (gives focus to link bar and highlights the contents, but it's not copied to clipboard). Follow it up with ctrl+v to paste the clipboard contents.

    11. Re:These are the days by Sludge · · Score: 1
      I also have the strange habit of constantly selecting and deselecting paragraphs as I browse, so usually an entire paragraph of random text gets pasted as a url.

      I have the same ugly habit. It pisses my girlfriend off to no end.

    12. Re:These are the days by dwlemon · · Score: 2

      On the clipboard issue, the way it should really be implemented is how it is laid out on OpenDesktop. The Cut/Copy/Paste functions use one clipboard, while the select/middle-click functions use another.

      The problem is that Mozilla and a lot of other programs (Opera comes to mind) don't do it this way.

      And perhaps the "standard" should be changed so that an initial click on a text field which results in selecting the entire field should not be considered a "copy" because it is usually a change of keyboard focus, not intended as selection.

    13. Re:These are the days by Broccolist · · Score: 1
      I also have the strange habit of constantly selecting and deselecting paragraphs as I browse

      Yeah, I do this too. I think the habit dates back to the days when I didn't have a wheel-thingamabob on my mouse and was too lazy to use the scrollbar, so I scrolled by selecting text and pushing up or down.

    14. Re:These are the days by elliott666 · · Score: 1

      bless your soul! all apps need to come with a complete list of keyboard/mouse shortcuts so that I don't use things for years just to discover my backwards ways.

    15. Re:These are the days by CaptnMArk · · Score: 1

      Are you my long lost twin? ;)

      I have the exact same problems.

      Middle-click paste is the most annoying feature ever.

      I also select/deselect text all the time as I read it. This sometimes crashes in drag-and-drop...

    16. Re:These are the days by edgecrusher · · Score: 1

      11 and 11.. in bin that would be 3 and 3, no?
      im sure you meant '10 and 10'..

      bah, im bored and its 3am.. gimme a break.

    17. Re:These are the days by donio · · Score: 1

      > Plugin missing popup isn't so annoying (I refuse to install flash)

      Just delete plugins/libnullplugin.so (or the equivalent if not using Unix)

    18. Re:These are the days by Erik+Hensema · · Score: 2

      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      I'm working on this one, see bug 24651

      I've got a patch which works on a nightly build from about a month ago, but 0.9.6 segfaults on this. I'll look into it ASAP.

      The patch essentially places a small button left of the location bar (much smaller than in the attached screenshot). This button needs some graphic designing, so if anybody can work the Gimp, please visit the bug and download the blank buttons.

      --

      This is your sig. There are thousands more, but this one is yours.

    19. Re:These are the days by rawg · · Score: 1

      I'm waiting for the vim interface to galeon or some other browser.

      --
      The above is not worth reading.
    20. Re:These are the days by MattBurke · · Score: 1

      i haven't looked at it properly yet, but there's a utility in the FreeBSD ports collection called 'netsed' which could be what you're after. Try looking it up on Freshmeat?

    21. Re:These are the days by sTeF · · Score: 1
      regarding that annoying default pluggin: delete it, or move it out ouf the system-wide plugin dir. i guess it can be disabled through the plugins config file also. but i haven't tried.

      url pasting is ez, middle click in the rendered area.

    22. Re:These are the days by sTeF · · Score: 1
      hint regarding packetfiltering:


      filterproxy let's you exactly do that. check it out. it's written in perl, and configurable through a web interface. it has many nice other features: gzip content-transferencoding being one. definitly worth to check out.
      http://freshmeat.net/projects/filterproxy/
      http://draal.physics.wisc.edu/FilterProxy/

    23. Re:These are the days by Tet · · Score: 2
      Place the cursor to the begining of the URL bar and hit ctrl+k

      Or place the cursor *anywhere* in the URL bar, and use ctrl-U. My only complaint about this is that some fool chose to overload ctrl-U and make it the keyboard accelerator for view source, so if you haven't quite clicked in the URL bar, you don't get the result you expect... which leads me nicely onto my #1 wishlist for Mozilla: easily configurable key mappings. Yes, I know it can be done via the prefs file, but I've yet to see suitable documentation for it, and it would be much better served by having an option in Edit->Preferences.

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    24. Re:These are the days by Anonymous Coward · · Score: 0


      Did you mean 2+2? Wouldn't that be 10 and 10 in binary?

      0 = 0
      1 = 1
      10 = 2
      11 = 3
      100 = 4
      101 = 5
      ...

    25. Re:These are the days by WWWWolf · · Score: 1
      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      Use The Unix Way: Click on the beginning of the line (or the spot right after http://, whatever you prefer), and hit Ctrl+K. There goes the URL!

    26. Re:These are the days by GypC · · Score: 2

      my vi-trained fingers have a tendancy to hit escape after typing a bunch of text, and in IE this resets the text area to the default value

      I have this same problem. In case you didn't know, you can type ctrl-z to undo the reset and get all your text back.

      Still annoying though...

    27. Re:These are the days by Flammon · · Score: 1

      CTRL-U

    28. Re:These are the days by cout · · Score: 1

      Alternatively, you can just use Ctrl-U.

    29. Re:These are the days by drsquare · · Score: 0, Offtopic

      Hey, that's actually quite a good idea!

    30. Re:These are the days by Anonymous Coward · · Score: 0

      Yes, I know it can be done via the prefs file, but I've yet to see suitable documentation for it, and it would be much better served by having an option in Edit->Preferences.

      Or even better, do it The Gimp way, and let you simply type a keyboard shortcut while mousing through the menus, and have it automatically assigned. Of course, this can be annoying too when you remap Ctrl-C or something useful and can't find the menu item to map it back..

    31. Re:These are the days by mcelrath · · Score: 2
      Perhaps this would be a good time to ask... does anyone know of a proxy that allows you to rewrite packets on the fly? I think the web's got to the point where I want to start overriding some HTML arbitrarily. I know regular expressions, so some sort of regex interpreter would be quite handy.

      <plug type=shameless>

      You want FilterProxy. It does exactly what you said, using perl and perl's regexes, and some sophisticated tag/tagblock/attrib matchers. Mostly I use it for filtering ads, but it can do a lot more.

      </plug>

      And I'm with you on the deleting url bar contents. But did you know you can middle-button paste the url from the clipboard into the main window and it will load it? Don't have to mess with the URL bar at all. I also have WindowMaker menu items like "load this URL" which call 'mozilla -remote' and pass it the url. I have others like "look up this word" which tell mozilla to load a dictionary.com url with the word in the clipboard.

      --Bob

      --
      1^2=1; (-1)^2=1; 1^2=(-1)^2; 1=-1; 1=0.
    32. Re:These are the days by vanza · · Score: 2

      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      Maybe you're using KDE? This is a KDE/Qt bug, not a Mozilla one. Try this: select a URL in a web page (within Mozilla), and hit CTRL+C. Select the content of the URL bar, and hit CTRL+V. Bingo.

      Now, if you're using the mouse selection clipboard to do this, it is obvious that when you select the text in the URL bar the clipboard will be overwritten. The bug in KDE/Qt is that is uses the same clipboard for mouse selection and CTRL+C. This is fixed in Qt 3, BTW.

      --
      Marcelo Vanzin
    33. Re:These are the days by Idaho · · Score: 2

      [About going to the URL bar and erasing any URL that might be there]

      Or place the cursor *anywhere* in the URL bar, and use ctrl-U. My only complaint about this is that some fool chose to overload ctrl-U and make it the keyboard accelerator for view source, so if you haven't quite clicked in the URL bar, you don't get the result you expect..

      Ahh....but you can go to the URL bar by pressing Ctrl-L at any time.

      So a Ctrl-L Ctrl-U does the trick nicely, without using the mouse.

      I didn't know about the Ctrl-U thingy, thanks for the tip!

      --
      Every expression is true, for a given value of 'true'
    34. Re:These are the days by Eil · · Score: 1


      I do it as well, thus far no body has complained...

    35. Re:These are the days by staili · · Score: 1

      Ability to bring up my $EDITOR when typing in a textarea
      Plugin missing popup isn't so annoying (I refuse to install flash)


      Should be pretty easy to add for every browsers.

      A clean looking theme that isn't netscape 4-ish
      Check out Galeon's themes

      More usability based around the tab feature. That thing is wonderful!

      I can't think of a way how t improve tabs, it's great already.

      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      Galeon has "sweep the url bar" button, you can add it from options. It's pretty handy :)

    36. Re:These are the days by spankfish · · Score: 1

      What is with that? I've seen a friend of mine do it and it makes no sense whatsoever! It's probably bad for your health, not to mention downright inconsiderate of persons who are sensitive to flashing lights, who may be passing by at this very moment! The last thing you want is to be browsing away and have unconscious people falling on you.

      So stop that, it's silly! We can't be having any of these kind of shenanigans around here. Righty-o then.

      --

      NO TOUCH MONKEY!
    37. Re:These are the days by Crutcher · · Score: 2

      * Ability to bring up my $EDITOR when typing in a textarea

      Hell yes. I've been dying for this for a while. Not yet desperate enough to code it up, but I've looked at some of the problems that need to be solved to do it.

      Once you spawn an $EDITOR, you have to block that textarea somehow, and you have to have a way to drop that block (what if the editor crashes?). This will have to be a visual clue on the textare.

      Another problem is that the widget interface is very async, and this block introduces wierd statefulness into the textarea widget.

      But I want this feature!

      --

      -- Crutcher --
      #include <disclaimer.h>
    38. Re:These are the days by FattMattP · · Score: 2
      does anyone know of a proxy that allows you to rewrite packets on the fly? I think the web's got to the point where I want to start overriding some HTML arbitrarily. I know regular expressions, so some sort of regex interpreter would be quite handy.
      I use FilterProxy for exactly this purpose. From the docs:
      FilterProxy is a Perl script that acts as a generic Web proxy. It is unique in that it allows you to install modules that can perform arbitrary transformations on HTML (or any other MIME-type) and HTTP headers. It filters ads by stripping HTML from the page, anonymizes requests by removing Referer and User-Agent headers, compresses HTML content, and de-animates animated gifs. Configuration is done via Web-based forms or editing a Perl data structure.
      --
      Prevent email address forgery. Publish SPF records for y
    39. Re:These are the days by jesser · · Score: 1

      Ctrl+Z to undo resetting a form doesn't work for me in IE 6.0, and hasn't worked for me since at least IE 5.0.

      --
      The shareholder is always right.
    40. Re:These are the days by mvc · · Score: 1

      Hey, you think you've got it bad, I have a strange habit of clicking the middle mouse button at random times. It's taken me... well, until reading this thread, to figure out what random weird thing Mozilla was doing in response to those clicks.

      --

      --Moss

      This is a .sig.
      Now there are two of them.
      There are two _____.
    41. Re:These are the days by GypC · · Score: 2

      That's odd. I just tried it with IE 6.0 and it worked.

    42. Re:These are the days by kilrogg · · Score: 2

      No need for ctrl-U, just hit delete or backspace or almost anykey(except for arrow keys) after ctrl-L to delete the contents.

    43. Re:These are the days by jesser · · Score: 1

      I tried a few more sites, and it worked on one of them.

      A slashdot comment form: Ctrl+Z works.
      A bugzilla bug comment form: Ctrl+Z doesn't work. The form also loses focus, but putting focus back in the form doesn't make Ctrl+Z work.
      My start page (Google search form): Ctrl+Z doesn't work.

      --
      The shareholder is always right.
    44. Re:These are the days by uigrad_2000 · · Score: 2

      A way to delete the contents of the URL bar without destroying the contents of my clipboard. Right now, I copy a URL from somewhere else, then click in the URL bar and hit delete, just to have the contents of the URL bar copied to my clipboard.

      put your cursor at the beginning of the line, and then press cntrl-d.

      For some reason, this works for Mozilla/Solaris, but not for Mozilla/linux. Can someone tell me why?

      (I haven't tried it for Mozilla/Windoze)

      --
      Free unix account: freeshell.org
  27. huh? by cabbey · · Score: 2

    hmm... perhaps it's something with your system? I duel boot between linux (suse 7.3 running 2.4.9 at the moment) and Windows (Win2K AS) on a dual PII 450 with 256Mb of RAM. Windows has a few hundred meg of swap defined (and uses it) Linux has 64Mb of swap defined and hardly ever touches it. I run the nightly windows builds and my own builds on linux (updated every few days on each) and for me the two are very nearly at parity... actually I'd say Linux is a bit more responsive than windows.

    The other posibility is that you are getting a mix of debug and production mixes? On linux my debug build is quite pokey, but the -O3 no debug, optimize it all builds absolutely FLY and keep getting better!

    Way to go Moz!

    1. Re:huh? by great+throwdini · · Score: 5, Funny

      I duel boot between linux ... and Windows...

      Freudian slip?
    2. Re:huh? by cabbey · · Score: 1, Redundant

      Freudian slip?

      Nope. Very intentional play on words. ;)

    3. Re:huh? by Malc · · Score: 1

      I have a dual P2-450 w/ 384MB. Under Win2K AS I have 512MB swap, and 256 under Mandrake 8.1 running KDE. (I also multi-boot it into Win2K Pro, Win98 and NT 4 Wrkstn, but I digress).

      I think Win2K uses a very different virtual memory model, so comparing the amount of swap in use is not relevant. According to taskmgr, I have 392752K physical, of which 235960K is available and 183144K is system cache. It's got a hell of a lot of stuff swapped, even though it has tons of memory available. Under Linux, my swap file also gets lots of use, but that's because X and KDE seem quite hungry, and Mandrake 8.1 seems to load a lot of other stuff too.

    4. Re:huh? by Carmen+Electron · · Score: 1, Funny
      "duel"/"dual"



      Sounds like a play on swords, not words!

      --
      (Score:-1, Underranted)
    5. Re:huh? by flacco · · Score: 1
      "duel"/"dual"

      Sounds like a play on swords, not words!

      Please stop now before this gets out of hand! Aaaaghh!

      --
      pr0n - keeping monitor glass spotless since 1981.
    6. Re:huh? by Anonymous Coward · · Score: 0

      FYI warez boy, normal old W2K Pro will run faster on that box that Advanced Server.

    7. Re:huh? by epsalon · · Score: 1

      Please stop now before this gets out of hand! Aaaaghh!

      Or it may get out of band, not hand...

    8. Re:huh? by Yorrike · · Score: 2, Interesting
      Mozilla is actually quite slow for me on my work PC (Athlon 700, 320MB RAM, Redhat 7.2), but my work PC is stuffed (nothing works properly on it).

      My home PC (Athlon 650, 512MB RAM Redhat 7.0), on the other hand, runs most things at a rapid pace. Mozilla, once loaded into memory, is lightning fast, though I'm starting to lean towards Galeon for my browsing needs at home and work. Mainly beacuse it can't be beaten for speed or configuration options. I really dig the RPMfind, Google, Freshmeat etc. search bar (talk about software at your finger tips).

      --

      Looks can be deceiving. Or CAN they?

    9. Re:huh? by Anonymous Coward · · Score: 0

      Um, that wasn't funny. Sorry.

    10. Re:huh? by Anonymous Coward · · Score: 0

      That's correct -- NT 'uses' swap even when it's not 'swapping'. (Not only that, but 2K and below have a bunch of lowmem optimizations that make this worse, athough AS is tuned for 1Gb+ of RAM.)

      There's a discussion on Linux-Kernel about how newer versions of Linux do the same thing -- eat 'unneeded' swap up as an optimization technique.

      The upshot is that benchmarking on swap usage is pointless for almost any OS except Linux 2.0. Start with page faults.

    11. Re:huh? by Anonymous Coward · · Score: 0

      I think it was an out-of-band freudian slip.

    12. Re:huh? by Anonymous Coward · · Score: 0

      But what does out-of-band communication have to do with duels? Nothing. Therefore it's not even relevant, much less funny!

  28. AOL^H^H^HMozilla 0.9.6 is the best Mozilla *ever!* by The_Messenger · · Score: 1, Funny
    But that's not saying much, because Mozilla blows. It's pretty funny to see how Netscape managed to fall from the top of the crop to the laughing stock of the development community in only five years. Oh, wait, I remember now -- that's because they didn't fucking do anything for five years, and UNIX users were stuck with third-rate trash. (4.7 was lovely, by the way. No, don't bother writing a professional rendering engine, you hacks, just add a "Shop" button and we'll call it innovation!)

    Thank God (or Gates) that Microsoft eventually ported IE to Solaris and HP-UX and gave UNIX users (as in real UNIX, of course, not ia32-optimized open-source garbage) hope for the future.

    And Mozilla (NS6) is somehow even worse! Conclusive proof that open-source doesn't work.(TM) I didn't think it was possible to build a slower memory hog than 4.x, but never underestimate the mediocrity of Cheap Software, boys. Does 0.9.6 still use as much memory as five 4.x instances combined, and take six times as long to initially load? Please, someone explain to me how it is possible that fucking IE5.0 is the fastest, smallest, most standards-complaint browser on my Solaris boxes. I mean, that's just sad -- Microsoft, the bloatware behemoth with zero track record on modern UNIX is able to create a better browser than the "hackers" (pronounced "wannabes") in the Cheap Software "community?"

    Mozilla development is unprofessional. Why bother implementing a mail/news client, when Mozilla doesn't correctly or completely implement CSS2, a standard from fucking 1998? We need a sense of priorities hear, boys -- it's a fucking web browser, people would much rather have an open-source browser that works (and I define "works" as "correctly implements all applicable modern W3C standards, including but not limited to XHTML1.0/1.1 and CSS2 and the latest DOM spec") instead of YASOHBWNA (Yet Anoter Suite of Half-finished Bloated Slow Netscape Applications). Maybe someone should open-source a book on project management and help these untalented Cheap Software fucktards out. Among employed software developers, there are a set of common practices -- such as determining and codifying user requirements, design specifications, and frequent reevaluation of project goals -- that help avoid these problems. I don't know, is it that Netscape has the "Fecal Midas touch" (everything it touches turns to shit), or is it that Mozilla is being "developed" by freshman CS (*snicker*) and IT (*snicker*snicker*) students between jacking off to Pokémon porn and pirating copyrighted music? I mean, that's what Cheap Software is, right?

    You make me sick. How do you ever expect to attract us Real Developers(TM) to your lamer hobby projects when you can't even understand the basics of software design? When you don't understand the concept of sacrifice, that Cheap Software applications shouldn't include every possible feature that every developer wants? My guess is that Mozilla is a hacked-together dog because the project "leaders" (if they exist) don't know how to say "no." No, Bob, we aren't going to work on a mail client until the browser works. No, Sue, we don't need skins until we have a good basic product. No, Dave, there is no fucking reason to implement custom widgets.

    I certainly hope that all of you Mozilla "developers" note your involvement in this project prominently on your resumé, so that it will be easy to identify you and deny you all possibility for employment as professionals. I curse you all!

    --

    --
    I like to watch.

  29. Molasses by Anonymous Coward · · Score: 0

    It still fucking slower than molasses!

  30. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    I am on Athlon 1.3G and
    Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.6+) Gecko/20011120
    Works just fine.. Only thing I have to research is how to change the browser identification string.! My bankers can't serve anything other than IE.!!

  31. 0.9.5 in woody. by jonestor · · Score: 1, Funny

    Doh!! 0.9.5 just got into Debian Woody.

    1. Re:0.9.5 in woody. by ThatComputerGuy · · Score: 2

      a woody with 0.9.5?! i wonder what will happen when it finally hits 1.0...

      --
      XML is like violence. If it doesn't solve the problem, use more.
  32. good job mozilla, way to break everyone's stats by smack_attack · · Score: 2, Insightful

    on every first page visit to a site it requests favicon.ico

    I wonder how long until all the stats programmers out there figure out why bookmarked visits spiked in December?

    1. Re:good job mozilla, way to break everyone's stats by Anonymous Coward · · Score: 0

      Given that only a few per cent of web surfers actually use mozilla I doubt the effect will be statistically noticeable.

    2. Re:good job mozilla, way to break everyone's stats by HerrNewton · · Score: 1

      Explorer does it too, I think since v5.0

      --

      ----
      Am I the only one who thinks Microsoft is a misnomer? Perhaps Macrosoft would be a better fit?
    3. Re:good job mozilla, way to break everyone's stats by smack_attack · · Score: 1

      Only if you actually bookmark the site. That's why I'm saying that stats will be skewed. Most programs interpret a GET favicon.ico == 'bookmark'

    4. Re:good job mozilla, way to break everyone's stats by maol · · Score: 1
      Now it's time to think that over.

      Konqueror btw gets the favicon everytime too, and it even shows it as it's window icon. Nice if your window manager supports that.

      --
      Proud User of IceWM

      --
      --
      Du Deutsch -> Du gehe Symlink
    5. Re:good job mozilla, way to break everyone's stats by seann · · Score: 1

      konqueror does this, however I am unsure if it cashays the icon (like it probably does).

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
    6. Re:good job mozilla, way to break everyone's stats by rmathew · · Score: 1
      Mozilla is trying to imitate IE here, which also does the same. It also supports the specification of a FavIcon through the link tag.

      BTW, it supports PNG, JPEG and ICO as FavIcons, and not just ICO as IE does.

    7. Re:good job mozilla, way to break everyone's stats by larien · · Score: 2
      Yes, it caches them, at least for bookmarked sites. It's also a pain to get it to update them, as I discovered when I was working on my website.

      FWIW, I actually like the icons; it gives me a visual clue to what I'm looking for in a list of 20 bookmarks/favourites.

    8. Re:good job mozilla, way to break everyone's stats by WWWWolf · · Score: 1
      good job mozilla, way to break everyone's stats
      on every first page visit to a site it requests favicon.ico

      MSIE has been requesting favicon.ico for ages now! If your stats generation doesn't that into account by now, get a better stats generation program, damn it =)

    9. Re:good job mozilla, way to break everyone's stats by Ian+Bicking · · Score: 2
      BTW -- has anyone found a good way to make favicon.ico on Linux? The Linux browsers don't mind if it's a PNG or something, but IE doesn't seem to like that at all. In order to get something that IE would accept I ultimately had to do it on Windows, which was annoying.

      Special options to ImageMagick? Does a program exist just for this?

    10. Re:good job mozilla, way to break everyone's stats by Simm0 · · Score: 2, Informative

      These two options are the defaults for the icon support pulled from all.js.

      pref("browser.chrome.site_icons", true);
      pref("browser.chrome.favicons", false);

      browser.chrome.site_icons refers to<link rel="icon"> tags which will only load an image if explisitly requested by the page. Whereas the browser.chrome.favicons aka favicon.ico is off by default but can be turned on by default if set to true in prefs.js which will request favicon.ico on every site that you visit regardless of weather the image exists or not.

    11. Re:good job mozilla, way to break everyone's stats by seann · · Score: 1

      kiconedit

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
  33. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    I believe that Galeon is the "light" version of Mozilla.

    KMeleon for Windows Mozilla.

  34. A poem... by Pollux · · Score: 2, Offtopic

    ...ahem...

    Those who write like karma-whores,
    Get (+1) on karma scores.
    Those who read those words of whit,
    Reply to it with posts of shit.

    Thank you.

    1. Re:A poem... by Anonymous Coward · · Score: 0
      Sorry. I was down to 49. ;-)

      But right you are of course.

  35. Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

    Pornzilla's goal is to turn Mozilla into a great porn browser. I started the project because I felt some important bugs were being neglected by Netscape engineers, even though they do a very good job with other bugs. (Are they not allowed to look at porn while at work?).

    The web site includes several modifications to Mozilla that make it better suited for porn browsing and a list of bugs and feature requests related to porn surfing. If you have any other bug numbers or ideas for modifications, please tell me.

    1. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Wow, if that isn't justification enough to cheer for Mozilla, I don't know what is ...

    2. Re:Pornzilla 0.9.1 also released today by litheum · · Score: 1

      *weeping with joy* you guys... seriously. i love you guys.

    3. Re:Pornzilla 0.9.1 also released today by The_Messenger · · Score: 3, Offtopic
      Speaking as someone who masturbates frequently enough to have obtained an honorary doctorate in it, I'd like to mention why IE is the superior porn browser. Are you running Windows 2000? Okay, good. Open an Explorer window, go to the View menu, and select Thumbnails. Now, thumbnails will be dynamically generated for all images in your currently-viewed directory. I have a lot of porn saved on my disks -- over 1.5GB -- so even with my excellent directory structure (categorized by race, number of participants, and insertion types), it can take a while to locate that perfect images to bring yourself to orgasm with. Explorer/IE's "thumbnail" feature has revoltionized my masturbation experience, by allowing me to quickly analyze and navigate picture series -- with one hand. Explorer/IE will even show you the first frame of AVIs and MPEGs on the sidebar with the "preview" function!

      Now you can visually scan directories -- for that perfect Akira Fubuki cumshot, Anna Nicole Smith softcore clip, or nasty nekkid ebony hoe playing with vegetables -- simply by using the arrow keys, Return, and Backspace.

      In order to enjoy a comparable masturbation experience with Linux, you must use a combination of Electric Eyes (for thumbnail browsing) and Netscape (for image viewing). Oftentimes, you will even have to use both hands to get the process started -- very inconvenient. Add in the fact that UNIX-like systems don't function very well with widespread use of spaces in directory names, and you have all the makings of an extremely poor monkey spanking.

      Hey, let's get a MacOS user in on this. TRoLLaXoR, does MacOS provide easy thumbnail image navigation like Windows?

      --

      --
      I like to watch.

    4. Re:Pornzilla 0.9.1 also released today by seann · · Score: 2, Insightful

      konqueror

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
    5. Re:Pornzilla 0.9.1 also released today by jon_c · · Score: 2

      not that funny actually, i use Mozzila on my XP box exlusivly for porn.. but it's not because i feel moz is well suited for it, but rather for privacy. I've found it way to hard to cover your tracks with IE. i mean think about it..

      Clear history: too suspecius, alt: set for 0 day, still keeps 1 day, arg..

      Clear Last day history: tedeius, and don't clear auto-complete address bar stuff

      and don't forget the cookies and browser cache.

      With mozilla i just load it up and close it down, no one knows i have it installed.

      What i want is a secret 'porn' button that i can press and IE won't record JACK nothing nada about whats going on.

      btw, to keep on topic, the last build of moz for windows wasn't that great. from the way i see it isn't just like netscape 4x, slow and clunky and i'll be dammed thats all fixed by 1.0.

      -Jon

      --
      this is my sig.
    6. Re:Pornzilla 0.9.1 also released today by augustz · · Score: 1

      Also well suited to browsing with children beleive it or not. When you mistype a URL 600 hard core porn windows don't pop up in you and your childs face.

    7. Re:Pornzilla 0.9.1 also released today by aberkvam · · Score: 1
      Hey, let's get a MacOS user in on this. TRoLLaXoR, does MacOS provide easy thumbnail image navigation like Windows?
      Of course! Mac OS X has added a new column view in the finder. It displays a preview of any file that you select. Pictures get a thumbnail of the picture displayed. Movies not only get their opening frame displayed but there's a "play" button right there in the preview! And you can browse using only the arrow keys!

      Besides, the Mac has been able to display thumbnails as the icons for picture files for a long time. Once again, the Mac is years ahead of the Windows platform!

      Wank different!

    8. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Feh.

    9. Re:Pornzilla 0.9.1 also released today by Velex · · Score: 2

      In order to enjoy a comparable masturbation experience with Linux, you must use a combination of Electric Eyes (for thumbnail browsing) and Netscape (for image viewing). Oftentimes, you will even have to use both hands to get the process started -- very inconvenient. Add in the fact that UNIX-like systems don't function very well with widespread use of spaces in directory names, and you have all the makings of an extremely poor monkey spanking.

      Bah. Just use Nautilus -- it does everything that IE can do with the thumbnailing and whatnot, and it automagically scales those overhuge images down. Before I used nautilus, I'd end up with these huge images that I had to scale down. Not that the detail was bad sometimes, but I need to see every part of the picture to get off. In fact, I like to take advantage of the fact that my ReiserFS partition for pr0n supports many more characters in filename than an NTFS partition. Linux clearly is the superior pr0n OS.

      --
      Join the Slashcott! Stay away entirely Feb 10 thru Feb 17! Close all tabs to prevent autorefresh!
    10. Re:Pornzilla 0.9.1 also released today by onion2k · · Score: 5, Funny

      What i want is a secret 'porn' button that i can press

      There is one. But its secret.

    11. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      MacOS X allows viewing of directories with thumbnails up to 128x128 (must be pre-generated with any of a handfull of applications) or a file listing with a single image preview at much larger sizes. Keyboard navigation in both cases is very easy involving only the arrow keys and the command key for most operations. (closing fully-opened images requires the W key, but that can be re-assigned with a little work in InterfaceBuilder.) The single-image preview method adds the option of being able to watch temporally-sorted image series as a low frame rate movie*, by simply holding down the down arrow. (* requires a sufficiently fast computer to decompress the images in realtime).

      Aditionally, you can run programs such as popular wget and the amazingly powerful pavuk locally, so you can view your pr0n as it downloads!

    12. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      I finally understand what microsoft engineers are doing all day

    13. Re:Pornzilla 0.9.1 also released today by fredrik70 · · Score: 1

      as the wise men say; Always store your pr0n on journaling FS.

      --
      if (!signature) { throw std::runtime_error("No sig!"); }
    14. Re:Pornzilla 0.9.1 also released today by mav[LAG] · · Score: 2

      Argh - I moderated this as funny and it somehow selected Underrated. Sorry :)

      --
      --- Hot Shot City is particularly good.
    15. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Tweak UI has a paranoia tab that can cover your tracks. You can have it clear history on login, and it also has a "clear now" button.

    16. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Try using one of these cleanup tools especially Spider to eliminate all IE cookies, history, cached files, and index.dat files. Some require a reboot, but you'd be amazed how much history can still be found in the dat files and cache even after 'Clear History' and 'Delete Files' have been used.

    17. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Don't forget Porn-Get

    18. Re:Pornzilla 0.9.1 also released today by macmike42 · · Score: 1

      Nah, not being as hugely commercial as Windows, you need add-on software for the ultimate thumbnail porn experience. Although GraphicConverter vastly outshines what Explorer can do with thumbnails (can you view them at 400x400 in Explorer?) It does slideshows too. Finally the OS X Finder allows you to play the _entire_ movie without having to launch another app.

    19. Re:Pornzilla 0.9.1 also released today by Sentry21 · · Score: 2

      I use Mozilla on my mac exclusively for pr0n, because the default browser on this (MacOS) box is Internet Explorer, so no one ever sees my history.

      I used to tout Mozilla as a superior browser so that everyone else would use it. I've stopped doing that now. =;>

      --Dan

    20. Re:Pornzilla 0.9.1 also released today by bitrott · · Score: 1

      It gets better in XP!

      -Movie editor, for splicing your dwnlded porn vids into one!
      -Slideshow viewer, built in! Screensaver AND power point style!
      -New image viewer! no more "blowing" up the pic in IE to view it in full "glory"! Instead you can blow it up into a image viewer that has perfect resizing algs.
      -If you don't like the image viewer you can do a side scrolling viewer, where the thumbnails scroll by on the bottom and the image selected shows up larger above!
      -vid viewing in a side taskbar!

      It's like they bloody designed the thing for porn viewing!

    21. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Gnome's default file manager (Sawmill, is it? I don't remember.) automatically generates thumbnails of jpegs and gifs in directories too.

      For some reason, at home I don't use KDE nearly as often as I used to.

      And I have callouses.

    22. Re:Pornzilla 0.9.1 also released today by Anonymous Coward · · Score: 0

      Er, Konqueror can also dynamically generated thumbnailis of the current directory.

    23. Re:Pornzilla 0.9.1 also released today by Tackhead · · Score: 2
      > I'd like to mention why IE is the superior porn browser.[ ... ]

      Bah! Thumbnails! You wimps have it easy!

      From a mailing list I frequent:

      In *my* day, of course, we all have well-developed muscles in our right arms *from* whacking off, and well-developed muscles in our *left* arms from typing. ftp and xv are like that, of course. These days, well, just about *anyone* can find (and whack off to) Internet Porn. What *is* this world coming to? Fucking GUIs. Fucking Netscape.
      ...and you tell this to kids raised on GUIs and HTTP these days, and they don't believe you. (Uphill! Both ways, I tell you!)
    24. Re:Pornzilla 0.9.1 also released today by onion2k · · Score: 2

      No matter. I have 50 karma anyway. Any else disappears into the ether.

  36. Try Galeon. by cduffy · · Score: 1

    If you want better tabbability, switch to Galeon.

    Galeon kicks ass. Really, really kicks ass. Try it.

  37. Pornzilla 0.9.1 also released today by aufbau · · Score: 3, Offtopic

    Pornzilla's goal is to turn Mozilla into a great porn browser. I started the project because I felt some important bugs were being neglected by Netscape engineers, even though they do a very good job with other bugs. (Are they not allowed to look at porn while at work?).

    The web site includes several modifications to Mozilla that make it better suited for porn browsing and a list of bugs and feature requests related to porn surfing. If you have any other bug numbers or ideas for modifications, please tell me.

    (Sorry for the duplicate message. I guess using "preview" before posting isn't a good idea when you've temporarily disabled cookies.)

  38. Also try... by Compact+Dick · · Score: 0

    the proxy autoconfig field. That one's too tiny to display my full .pac file's URL.

    There are a few things Moz needs to polish up on. But they are right to focus now on speed and, to a lesser extent, stability.

  39. Crap. The developers won't learn... by Anonymous Coward · · Score: 0

    that not all users use RPM or have access to CVS ? It's not the first time they release src.rpm and not tar.[bz2|gz]. Is it so hard to 'make dist' ?

    1. Re:Crap. The developers won't learn... by Explo · · Score: 1

      that not all users use RPM or have access to CVS ? It's not the first time they release src.rpm and not tar.[bz2|gz]. Is it so hard to 'make dist' ?


      Hm? I downloaded a tar.gz:ed 0.9.6for Linux just a few hours ago from the Mozilla site. The source seems also be available in tar.gz:ed form.

      --
      Everyone who makes generalizations should be shot.
    2. Re:Crap. The developers won't learn... by aonaran · · Score: 1

      Hmm, usually it's the other way around. I wait a day or two after each new release so I can be sure there will be RPMs up and a lower load on the server. tars usually go up first

  40. Massive Improvement by Plinth · · Score: 1

    I used to use moz on windows (2k as it happens) as a kind of token bit of browser resistance, now I use it beacause it's just good, especially the tabs. Great work from the whole mozilla team.

    --
    -- "[The] NSA can eat shit and die until they stop listening to my phone calls" - TastyWheat
  41. Re:Better and Better by urmensch · · Score: 0

    >> - You can disable Mozilla's JS window.open()

    I should probably just look for myself but...

    does this disable all window.open() funcs or just the ones through onload() ?

    cause there are legit reasons to open windows through user initiation. like opening a window for viewing an image.

  42. Themes? by vandan · · Score: 2, Informative

    Can't comment yet as I'm just downloading now, but in the meantime: where have the themes gone? Whenever I try to download others, I'm met with a 'page not found' error. Is this because Mozilla is moving faster than the theme developers can handle? Is there actually more choice than 'classic' and 'modern'? Not that these aren't good themes anyway. I'm just wondering...
    Keep up the good work! (Oh and fix that bloody 'print selection' bug.)

    1. Re:Themes? by philipsblows · · Score: 3, Informative

      According to the nightly build comments for Nov 20, there is a new theme page. If you check out the MozillaZine build comments here, you'll see the mention and the bugzilla bug number...

      Note that I have not actually tried this myself... I'm just happy that other stuff is working as well as it is at this point with the nightly build from last thursday or so.

    2. Re:Themes? by Gareth+Williams · · Score: 1

      It looks as though the themes are at www.themes.org/skins/mozilla
      :-)

      --

      --Gareth
    3. Re:Themes? by Anonymous Coward · · Score: 0

      Mozilla points to a broken link at themes.org. The themes.org site is being renovated and they broke the link.

      The link to the old page, which currently has more themes:

      http://x.classic.themes.org/viewresources.phtml?ty pe=chrome

      The link to the new, renovated page, which doesn't have all the themes yet (since authors have to resubmit their themes):

      http://www.themes.org/skins/mozilla/

  43. For Windows by Compact+Dick · · Score: 0, Informative
    try K-Meleon. The latest build is 0.6, based on Mozilla 0.9.5 .

    It's appreciably faster than Mozilla as it uses native win mfc components for its buttons, dialogs etc.

  44. Fast connection to ftp.mozilla.org by rjamestaylor · · Score: 3, Interesting
    Yes, I just completed installing a nightly build (from the "stock" 0.9.5 build) and reloaded slashdot to see the announcement. According to my reading of MozillaZine earlier I wasn't expecting 0.9.6 until later this week.

    But I'm curious as to why the connection to the ftp server was so solid and fast: is it a great example of load balancing ftp?, a sign that people are happy with pre-0.9.6 versions and aren't rushing to upgrade?, or is it (*gulp*) that people aren't interested in Mozilla anymore?

    I'm not anti-Mozilla at all. I'm using it for browsing, email, IRC, etc. There are things I like about Konqueror, but I depend on Mozilla. Even my biggest "Internet Explorer"-only client is asking about recasting IE-specific development in Moz-compatible terms. Its just that the server is so fast it doesn't feel like the days of M15 - M18 when I had to fight for a connection...

    As an aside: it's perplexing to observe MSFT dropping the ball on browser development. They've got the market wrapped up, but they don't seem to have capitalized on this lead (except the recent MSN fiasco). Or perhaps I'm not giving proper credit to Mozilla developers for pressing ahead with features and usefulness... With the licensing pain with MSFT and the maturation of Mozilla+{Gnome|KDE}+Linux it's getting more and more palpable to switch the enterprise away from the child-settlers.

    --
    -- @rjamestaylor on Ello
    1. Re:Fast connection to ftp.mozilla.org by The_Messenger · · Score: 0

      Not that there's anything wrong with that...

      --

      --
      I like to watch.

    2. Re:Fast connection to ftp.mozilla.org by Anonymous Coward · · Score: 1, Insightful

      1. ftp.mozilla.org is fast.

      2. People that are serious about testing don't use/wait around for milestones, they use nightlies.

      3. People who use KDE don't care about mozilla, they use Konq.

      4. People who use Gnome don't upgrade because it may break programs that depend on it and are compiled against it. (Galeon, Nautilus) They wait til Ximian repackages it.

      5. It hit Slashdot at 12:45, nerds gotta sleep too! (Even if the keyboard is the pillow)

      6. 50-60 percent of slashdot users use and prefer IE (Even if they won't admit it in public)

      7. For most people, Their current Mozilla is already good enough.

      8.CmdrTaco says Konq is better, it must be true, so why bother with Mozilla?

      9. Alot of people in the past few years that did nothing but slam Mozilla, call it every name in the book, And proclaimed it would never amount to anything, won't eat crow and admit its now a damn good browser and and use it.

    3. Re:Fast connection to ftp.mozilla.org by Anonymous Coward · · Score: 0

      so, yes, yes and yes.

    4. Re:Fast connection to ftp.mozilla.org by netwerk · · Score: 0, Troll

      hahaha... When will all those linux fools out there finally realise that BSD is a better OS?

      http://www.freebsd.org/
      http://www.openbsd.org/
      http://www.netbsd.org/

    5. Re:Fast connection to ftp.mozilla.org by Anonymous Coward · · Score: 0

      This is soo funny and soo true, hahahaha

    6. Re:Fast connection to ftp.mozilla.org by Simm0 · · Score: 1

      I'm sure this would have to do with the huge bandwidth mozilla.org has. All of mozilla.org's servers are based in Netscape Corporation's offices in Mountainview, California so its basically running off all of Netscape's and AOL's bandwidth (which would be _huge_).

    7. Re:Fast connection to ftp.mozilla.org by javacowboy · · Score: 1

      3. People who use KDE don't care about mozilla, they use Konq.

      I'm a KDE user and Mozilla is my browser of choice. Konqueror just doesn't render pages the way I expect my browser to.

      --
      This space left intentionally blank.
    8. Re:Fast connection to ftp.mozilla.org by Anonymous Coward · · Score: 0

      yes, but konqueror has better w3c compilance

  45. for speed... by Anonymous Coward · · Score: 2, Informative

    for a quick and reasonable-on-mem-usage browser, please see skipstone. it uses the mozilla-embedded lib for page rendoring, and it doesn't come with all the html editor / mail / news crap.

    see ports/www/skipstone for FreeBSD users

    1. Re:for speed... by Cardhore · · Score: 4, Funny

      I don't know about you but I use mozilla exclusively for the IRC chat program.

  46. I do my part for bugtesting by Compact+Dick · · Score: 1, Interesting

    Immediately after downloading the latest nightly, I visit Netscape's German sige and click on the latest Stripshow gallery. Have to make sure those characters display right. Or something. :)

  47. Re:Face it, Mozilla is dead by Ilgaz · · Score: 0, Offtopic

    I am "honoured" to reply a so-called "flamebait,-1" opensource style cencored article saying "I can put my signature below it".

    Slashdot shouldn't allow mozilla fanatics to moderate on a mozilla article.

    Whats next people? Trace critizers houses and burn them?

  48. cnn.com by bruthasj · · Score: 1

    Wow, I can use Alt-BackArrow on cnn.com now, what a Joy! Hurry and upgrade...

  49. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    Mozilla doesn't even blaze on my 500Mhz. Click on edit/preferences and count to 3 before the dialog even pops up. Horrific.

  50. Re:Better and Better by urmensch · · Score: 0

    all right I looked it up myself and heres the user.js snippet.

    // More important, disable JS windows popping up a new window on load
    // (as lots of porn and spam sites do):
    user_pref("dom.disable_open_during_load", true);

    I hope this includes scripts which pop it open without using an onload() ie. they stick it in the head of the page or something.

  51. Re:I swear watching the version numbers... by Blackneto · · Score: 0

    I was very pleased to sacrifice my Karma so that others that would make similar comments regarding version numbering and performance could go unscathed.

    --
    Ursula Andress, Catherine Deneuve, and Charo, twice...
  52. Re:Mozilla is a great browser if... by ihatelisp · · Score: 2, Informative

    If Opera can run so snappy and fast, why not Mozilla?

    Because Opera can't do what Mozilla can do. Opera handles common HTML and CSS just fine, but if you're pushing your web design further, Opera's rendering engine falls apart.

    I use translucent PNG images on my web page, and Mozilla does alpha-blending beautifully. Opera, on the other hand, can't even handle transparency, let alone alpha-blending. Opera also can't switch style sheets through DOM or the UI. It cannot install components on the fly. The list goes on...

  53. Re:Face it, Mozilla is dead by Anonymous Coward · · Score: 0

    I find it hard to believe that /. would post an article on Mozilla. If anyone thinks this project is anything but a poster child of what not to do in a software project is completely blinded by fantazism. However if I were to root post this sentiment, I know I'd get the obligatory -1 offtopic.

    I however came across your post, which artfully explains why the project was a failure. Moreover, you make a well supported plea that the project should end. It includes fact, conclusion, a well written style, and a lack of grammatical and spelling errors. It does not troll or insult any person or entity.

    Nevertheless the moderators decide you need to be modded down from a zero to a -1. If this is not a clear indictment that the moderation system does not work, I do not know what better proof can be offered.

    So Jaime if you believe all condemnations of /. moderation are trolls. If you are stuck in the Katz world of "I only read my emails." Take a look at the above sentiment.

    You guys are far too enamored with your cause, and your own self importance to take a real look at the descent your site is taking.

  54. Re:Better and Better by b0r1s · · Score: 3, Insightful



    Just my $.02 on why Mozilla is better:
    - Mozilla is Open Source


    Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?


    - Mozilla won't accept activeX or other such nonsense

    Which limit's its use on heavily scripted, harmless, usefull sites. True, it saves you from mailicious porn webmasters who want to install their dialer programs, but that's not a problem if you know how to set up your internet security zones on IE.


    - You can disable Mozilla's JS window.open()


    A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window?


    - Mozilla has tabbled browsing


    Which slows down the quick alt+tab everyone uses to switch between browser windows...


    - Mozilla is standards compliant


    Which is again nice, but means nothing if developers dont make their sites for standards, which they dont ....


    - Mozilla doesn't redirect you to MSN (or AOL for that matter) and spill your privacy for all to see


    Nor does IE, if you configure it correctly.


    - Mozilla has a development team that cares about the end product


    More ramblings from a zealot. I'm sure the IE programmers care about IE. They just dont feel the need to sit around and pat each other on the back in public message boards.


    - Mozilla has site-specific image and cookie management


    Internet privacy zones. From your top menu in IE6: tools -> internet options -> privacy -> click the edit button. Yep, it works in IE on a site by site basis.


    - Mozilla is stable (close to 100%) and won't bring down the OS when it crashes


    Just like IE6 (which hasnt ever crashed on me, even though I use it roughly 14 hours a day, 7 days a week, for the past few months)

    So.... yea, you like mozilla. that's cool. use what you like.... just realize that every one of my arguments is absolutely true, meaning IE is "better and better" too...

    --
    Mooniacs for iOS and Android
  55. Slashdot crashes mozilla ? by stefanlasiewski · · Score: 3, Interesting

    Just upgraded to 0.96, and now I see that Slashdot articles with large number of responses crash mozila (I already sent in reports with that crash feedback thingy). This is Win98 , celeron 366 with 512M of ram.

    Only seems to happen on articles with a large number of responses (I'm a moderator and I'm trying to browse at -1 , but I can't).

    Constantly crashes on Geek Gift Ideas 2001 and Microsoft Would Settle For The Children

    I just uninstalled and reinstalled mozilla, and the crashes still happen.

    --
    "Can of worms? The can is open... the worms are everywhere."
    1. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 0

      tested both: no crash with 0.9.6 on linux. Did you created a clean profile?

    2. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 0

      Although, IE5.5 doesn't do much better. I have widgets spread all over the screen ... but this has happened on IE5.x for ages...

    3. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 0

      Happens here also. Mozilla downloads first chunk of the page, waits, tries to download second chunk of page and crashes.

      I just viewed that page with 0.95, and it ddisplayed correctly. Now, it crashes... I'll try deleting my profile and see if that fixes things...

    4. Re:Slashdot crashes mozilla ? by stefanlasiewski · · Score: 3, Informative

      Yes, and it worked fine in a clean profile, and if I view the pages anonymously in the new clean profile, it works fine.

      But when I log into slashdot, and view the page, it craps out (this is still on a clean profile).

      I'm a moderator, so i have one of those 'score' dropdown boxes by every single post. Hundreds of posts = hundreds of dropdown boxes.

      I used up that one last moderator point, the dropdown boxes no longer appear; and guess what, the page no longer crashes my browser. Works just dandy.

      Off to file a bug...

      --
      "Can of worms? The can is open... the worms are everywhere."
    5. Re:Slashdot crashes mozilla ? by yobbo · · Score: 1

      I'm not experiencing this bug, on my athlon windows 98 machine. I've been using nightlies and milestone releases for the last few months on this installation of windows, same profile, and it's running like a dream.

    6. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 1, Informative

      Ah, that isn't Mozilla, it's Win98 running out of GDI-mem to display all the widgets. Windows 95/ME has the same problem. It's simply running out of window handles (in Windows, EVERY widget is referenced by a window handle).

      Windows NT/2K/XP doesn't have this problem.

    7. Re:Slashdot crashes mozilla ? by Grandpa+Jive · · Score: 1

      Same here, and I browse at +2. Interesting. Seeing as I can't see the actual text, is there some form of javascript involved? This is under windows, and it caused many applications to crash [including winamp, in which I was listening to the latest NegativLand album to be destroyed from my playlist].

      I provided feedback.. I hope to gather some.

      ---
      grandpajive@concordantopposition.net
      co2 - more powerful than a herring.

    8. Re:Slashdot crashes mozilla ? by wildwood · · Score: 2, Funny
      Heh. I can see it now...


      "Hello, Slashdot? This is the Mozilla QA team. Um, can we have 500 moderator points? We, um, need to test out this bug..."


      -----

      --
      normal(adj)- people who don't sit on slashdot all day wondering why everyone else isn't building robots [DECS]
    9. Re:Slashdot crashes mozilla ? by Reziac · · Score: 1
      This sounds like an old Netscape bug that has been in EVERY version (and is also in IE3, so maybe it's an original Mosaic bug??), but only fully manifests in certain versions, notably 3.04 and 4.6x. I've been tracking this bug for YEARS and am fully certain what the trigger is (yet so far I have not been able to interest any coders in fixing it!)

      Pages with a lot of links that each show a lot of text as the link, AND where said links are inside table cells, trigger a Windows resource leak (WinVersion doesn't matter, happens on Win16 as well as Win32). Worst case, the leak is so severe that it can freeze the system solid in 30 seconds flat.

      If the amount of text that is displayed as links (this is the real problem) is much-reduced, or if the table is removed, the problem goes away.

      The standard Slashdot view does indeed trigger the leak, once there are enough comments.

      Side note: can we have an optional Netscape 3 interface?? Pleeeeeez??

      --
      ~REZ~ #43301. Who'd fake being me anyway?
    10. Re:Slashdot crashes mozilla ? by Eil · · Score: 2


      Try deleting ~/.mozilla (or applicable profile / preferences directory). This usually fixes a lot of stuff for me, especially when upgrading to a new Mozilla version.

    11. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 0

      Does this resource leak occur in NT-based systems (NT/2K/XP) as well? I did have that problem when moderating /. using IE/Win98, but it disappeared when switching to Win2k. Maybe I should try moderating a story with an obscene amount of comments and see what happens.

    12. Re:Slashdot crashes mozilla ? by chavo+valdez · · Score: 1

      Like others have said before, this is a Windows 9X bug. It happens to me on IE under Windows 98 when I have moderator points also.

      It's very annoying it usually makes any other app I have running unresponsive and can sometimes crash the system. If I see I have moderator points I'll try to skip the articles with hundreds of posts until I've used up the points.

    13. Re:Slashdot crashes mozilla ? by Anonymous Coward · · Score: 0
      Test

      Just a test.

    14. Re:Slashdot crashes mozilla ? by Electrum · · Score: 1

      It doesn't happen in NT because there is not a fixed size resource area for storing GDI information. This is why you can have 256+ megs of ram on Windows 98, only have open a few small but resource intensive programs (like C++Builder), and still run out of "system resources".

    15. Re:Slashdot crashes mozilla ? by Reziac · · Score: 1
      Electrum is right, I should have distinguished Win9* from WinNT.

      Which version of IE, exactly, did you see the problem with? Since I already know the bug is in IE3, it would be no surprise to find it also manifests in some later versions, just as it does in Netscape.

      Really frustrating to know exactly what the trigger is, yet can't get anyone to look seriously at fixing it. :(

      --
      ~REZ~ #43301. Who'd fake being me anyway?
  56. Threads and Processes by Carnage4Life · · Score: 5, Interesting

    Microsoft's answer to this failing was to make threading as fast as possible, and to push multithreaded programming as a hack around a fundemental OS problem.

    Many OS purists think that using multiple processes is a hack around understanding multithreaded programming especially since traditionally there is a context/address switch cost from process to process versus when using different threads. Linux merely legitimizes this hack by implementing the clone system call and copy on write semantics for pages shared amongst processes which makes the worst problems with using multiple processes instead of multiple threads dissappear.

    So, now Linux has both faster processes and threads, but thread performance still sucks.

    This statement puzzles me greatly. How can Linux threads be faster yet their performance still sucks? Faster than what then?

    mostly to support implementing multithreading in userspace (ick).

    Huh? How is userland programs being able to create multiple threads a bad idea? Should creating multiple processes the only way to handle multiple tasks at once in an application?

    So, the moral of the story is that Linux has a much better core, but seeing that the Linux community actually cares about standards, performance isn't quite up to snuff.

    This statement implies that Linux has POSIX compliant threads which the last time I checked is not true especially since the primary kernel hackers (Alan Cox, Linus, etc) are against it. They specifically had issues with the inconsistent way signal handling is suposed to be implemented amongst threads in the same process if memory serves me correctly.

    1. Re:Threads and Processes by vscjoe · · Score: 2, Interesting
      Many OS purists think that using multiple processes is a hack around understanding multithreaded programming especially since traditionally there is a context/address switch cost from process to process versus when using different threads.

      It's not about "understanding". If you program in a language like C or C++ that is so lacking in fault isolation and safety features, you have to use separate processes to keep things out of each other's hair. The alternative, which is known to be more efficient, is to use safe languages and multithreading.

      This kind of disconnect is also why Java has such a bad name among Linux users. Java doesn't need separate processes--you can run your whole desktop in a single thread, safely. What Java needs is fast threads.

      In any case, as far as Mozilla is concerned, it's slow because it's written that way, not because of anything wrong with Linux. And the Mozilla developers neither seem to understand nor care much about the UNIX and X11 world. The existence of browsers like Opera show that you don't need something as big and slow as Mozilla, and even Opera isn't all that efficient. Rendering HTML is not rocket science, and it is actually kind of amazing how many megabytes people manage to expend on it.

    2. Re:Threads and Processes by MassacrE · · Score: 2, Interesting

      yes, but Java also has very few things which can execute asyncronously (looking forward to java.nio); which means that you need to make threads for *everything*. Its not uncommon to have two threads per socket to handle reading and writing blocks.

      When you count all the synchronization which is happening between all these threads, as well as the sheer amount of context switching, memory usage and the number of processes which have to be scanned to find one capable of being accessed, you see one of many reasons people still use 'unsafe' languages.

    3. Re:Threads and Processes by yorgasor · · Score: 2, Interesting
      There are two main types of threads, user threads and kernel threads. pthreads, or POSIX threads are an example of user threads, while the clone() call is a kernel level thread.

      One of the main drawbacks to user level threads, is that when one thread makes an I/O call, the whole process is blocked from running until the I/O call has completed, even when other threads are available to run since the kernel isn't aware threads are really being used. However, since user level threads can be implemented with a cross platform library, using user level threads like pthreads makes your program very portable.

      In kernel threads, when one thread is blocked on an I/O call, another thread can still be run. You can also have multiple threads running concurrently on multiple processors. However, since the application is written for that particular kernel, it is not portable at all.

      So the original poster was trying to state that, although Linux has blazing fast kernel threads, its POSIX thread library kind of sucks. Since Mozilla makes heavy use of POSIX threads to maintain cross platform ability, it runs a little more sluggishly on Linux.

      --
      Looking for a computer support specialist for your small business? Check out
    4. Re:Threads and Processes by jmalicki · · Score: 2, Informative

      linux's pthreads use clone. they are kernel threads. read the source.

    5. Re:Threads and Processes by Anonymous Coward · · Score: 0

      Looks like you're tired, c4l... :-)

      > > mostly to support implementing multithreading in userspace (ick).

      > Huh?

      Read "fibers".

      Cheers,

      --fred

    6. Re:Threads and Processes by vscjoe · · Score: 3, Interesting
      When you count all the synchronization which is happening between all these threads,

      Synchronization between Java threads is a lot faster than any of the IPC mechanisms that, say, Gnome, KDE, or Mozilla are using.

      as well as the sheer amount of context switching,

      If the Linux kernel and thread libraries provided better primitives, you wouldn't need as many system calls to build threaded applications on top of them.

      memory usage

      If you run a complete desktop inside a single Java process, you end up using a lot less memory than Gnome or KDE: Java applications can share code and data a lot easier and with a lot less overhead inside a single process than C/C++-based systems. In fact, the voracious appetite of C/C++ GUI apps is one reason for abandoning that approach.

      and the number of processes which have to be scanned to find one capable of being accessed,

      I don't understand what you mean by this. If there is only a single Java process, you don't have to "scan" lots of them.

      If you mean that Java using native threads makes lots of kernel threads under Linux and that that has a bit of overhead, you are right. But that's a shortcoming of the Linux threads system and Sun's particular implementation of threads on Linux, not of the Java approach. In a well-designed thread implementation, a thread is no more expensive than an object.

      which means that you need to make threads for *everything*. Its not uncommon to have two threads per socket to handle reading and writing blocks.

      Java lacks some APIs and Sun's Java implementation has limitations, but that doesn't invalidate the approach. There are systems like Java that have better threading support. Still, a single-process approach based on JDK and Linux, with all the limitations of the JDK and of Linux, is already more efficient than the many process approach of Gnome or KDE and similar systems.

    7. Re:Threads and Processes by Anonymous Coward · · Score: 0

      Many OS purists think that using multiple processes is a hack around understanding multithreaded programming
      Many OS purists think that even device drivers, filesystem code and such should be memory protected (main difference between processes and threads).
      How is userland programs being able to create multiple threads a bad idea?
      Simple: when a single thread blocks on a syscall, no other thread can be run, unlike processes or kernel-based threads.
      Many programmers today are brainwashed to think threads are better than processes, probably due to M$ influence, since process management in windows basically sucks.
      Real programmers know that memory protection was a huge step forward from the cheesy ancient systems where all memory was shared. With threads, particularly userland threads, we go back to the old model (for each application). Why anyone prefers this model, especially since the advent of copy-on-write fork(), is beyond my understanding...

    8. Re:Threads and Processes by Anonymous Coward · · Score: 0

      Why is it every time I read a sensible post on Slashdot or kuro5hin, and glance up at the name, 9 times out of 10 it's yours. *shake his head*.

    9. Re:Threads and Processes by bgarcia · · Score: 5, Informative
      This statement puzzles me greatly. How can Linux threads be faster yet their performance still sucks?
      I think he meant to say that the linux kernel threads (clone()) are faster, but the *pthread* calls are slower.
      This statement implies that Linux has POSIX compliant threads which the last time I checked is not true especially since the primary kernel hackers (Alan Cox, Linus, etc) are against it.
      Linux does have POSIX-compliant threads. The kernel does not, but there is a pthread library that implements the pthread functions to work with linux kernel threads.
      --
      I'm a leaf on the wind. Watch how I soar.
    10. Re:Threads and Processes by hkmwbz · · Score: 3, Insightful
      "Rendering HTML is not rocket science, and it is actually kind of amazing how many megabytes people manage to expend on it."

      This would be true if everyone was to stick firmly to the standards. However, due to the sloppy web page coding out there, today's browsers need error correction. It can't just stop loading a page because it finds an error in the HTML code.

      In addition to this, the web is not only HTML anymore. You have other things like images - JPG, GIF, PNG, all of which need to be viewed correctly, and this requires an image viewer built in to the browser.

      A browser today also needs a JavaScript interpreter, which also adds to the size of the code.

      You also have plugins...

      The web isn't just about HTML anymore. It's about displaying a page even if the code is sloppy, and it is about the new technologies that offer improved interactivity and even eye candy. A browser is a complex piece of software - imagine all the different things it has to do!

      I don't think you've through the above comment through. If you look at what is actually going on, you'll see that a browser is a lot more than a HTML interpreter.

      --
      Clever signature text goes here.
    11. Re:Threads and Processes by vrai · · Score: 2, Interesting
      If you program in a language like C or C++ that is so lacking in fault isolation and safety features, you have to use separate processes to keep things out of each other's hair.

      This is a sweeping generalisation. I have worked on a large number of multithreaded applications (at work and home) of which 90+% were written in c/c++ and all of which used threads.

      Without wishing to sound too rude: the myth that production quality multithreaded programming is difficult in c/c++ tends to be propagated by people who are bad c/c++ coders and/or who lack experience developing multithreaded applications.

      In the same way bad java coders produce slow code, bad c/c++ coders produce leaky code. This is not a fault of the language, but of the coder (who should take the time to learn the language properly or stick to QBASIC).

    12. Re:Threads and Processes by roca · · Score: 5, Interesting

      > Rendering HTML is not rocket science

      Oh yes it is.

      Go to the W3C Web site and ingest the HTML4 and CSS2 specifications. Throw in all the I18N requirements (Bidi, charsets, etc) (Opera doesn't do them BTW). Throw in all the image formats and plugin support. Now throw in hacks to make a million differently broken pages work reasonably. NOW, in case you think you're done, make sure your engine is fully incremental so everything updates smoothly when stuff takes a while to load, or when you resize the window, or when the document modifies itself in arbitrary ways using the DOM (Opera doesn't handle the latter). Now make it all robust and fast for when some fool writes a page with 100 IFRAMEs, or 1000 combo boxes, or 10000 paragraphs all nested inside each other. And make sure you have ZERO buffer overruns or your users are toast.

      Sounds easy, huh?

    13. Re:Threads and Processes by inbox · · Score: 1

      Exactly - "parsing" HTML is not rocket science. "Rendering" it certainly is. Otherwise, why has 0.9.6 taken so very long just to get to this point? Is the assumption to be made that the Mozilla team is a bunch of wahoo's? I don't think they are.

    14. Re:Threads and Processes by Anonymous Coward · · Score: 0
      mostly to support implementing multithreading in userspace (ick).
      Huh? How is userland programs being able to create multiple threads a bad idea? Should creating multiple processes the only way to handle multiple tasks at once in an application?
      This makes no sense. In fact, it makes me think you have no idea what you are talking about. If 'userspace threads' meant threading was available to regular processes, what would non-userspace threads be?

      'userspace threads' means implementing cooperative multithreading in a userspace library on a platform that does not have support in the kernel for multithreading.

    15. Re:Threads and Processes by Anonymous Coward · · Score: 0

      'userspace threads' means implementing cooperative multithreading in a userspace library on a platform that does not have support in the kernel for multithreading.

      Oh, really? Then why would Linux have it? Don't think to hard about that one.

    16. Re:Threads and Processes by dmelomed · · Score: 1

      Not true, there are state threading libraries that do not require programmer synchronization.

      Threads are better than processes where threads are better than processes: depending on the requirements.

      One of the reasons why threads are used for scalable software is threads are lighter, either on Windows or *nix. No matter how sofisticated your process management is, threads are still lighter for solving some problems. It should be obvious. One of the other reasons for using threads is shared memory space which simplifies programming depending on the problem at hand.

      Create a few dozen thousand processes on a *nix server each handling a TCP/IP connection, and see how well the kernel will manage them. If you don't run out of resources for that may processes that is. Have a nice meltdown.

      Create a few processes on a *nix server using a few threads each, each thread handling many connections per second, and compare to the previous model.

      Real programmers use the best tool for the job instead of bashing one or another equally usable approach :).

    17. Re:Threads and Processes by Anonymous Coward · · Score: 0

      Not really. Every time you read a sensible pro-microsoft post on Slashdot or kuro5hin [...]

    18. Re:Threads and Processes by YU+Nicks+NE+Way · · Score: 4, Insightful

      No, parsing HTML on the Web is not rocket science. It's much close to neurosurgery -- theoretically trivial (cut, cauterize, and close), really incredibly delicate.

      You see, HTML has traditionally been interpreted by parsers that will accept lots of errors: missing cell closure, misplaced tags, heaven only knows what else. That means that every real HTML renderer contains a huge error recovery routine which watches what the parser is doing, then backs up and recovers from erroneous source. If parsing HTML meant the same thing that parsing C did, it would be easy. But parsing HTML means much more than that -- and that's why it's so hard.

    19. Re:Threads and Processes by warrior · · Score: 1

      Now make it all robust and fast for when some fool writes a page with 100 IFRAMEs, or 1000 combo boxes, or 10000 paragraphs all nested inside each other

      Make the common case fast. I don't think there's too much effort going on in compiler development to make code that was poorly written to begin with fast, so why should your html engine? Make the rare case correct. Design your html renderer likewise. Really, layout isn't rocket science, only rocket science is rocket science. UI toolkits (Xm, Qt, gtk, etc) have been making fast, resizable layout engines for years.

      Mike

      --
      Intel transfer the difficult from Hadware to software, for get more power, programmer need more technology. -- chinaitn
    20. Re:Threads and Processes by Anonymous Coward · · Score: 0

      ...due to the sloppy web page coding out there...

      Sorry, I'll start writing HTML by reading the standard instead of testing it on the browser 80+% of people use.

    21. Re:Threads and Processes by BZ · · Score: 2

      One problem with this reasoning. The common case is poorly written code on the web. The common case is the one that has broken syntax (something compilers usually error on, not correct). The common case is the one that has 10 levels of nested tables (fairly common on major commercial sites).

      The fact of the matter is, a typical webpage has more "boxes" involved than a typical UI (where a "box" is something that has to be sized and then placed).

      Also, if you look carefully at the capabilities provided by the toolkits you mention you will see that they are not nearly as flexible as CSS. Trasparent backgrounds? Not really. Translucent boxes? No. Decent bidi? Not in gtk as of last time I checked (not sure about QT).

      There is a separate issue. When you write a toolkit you can pick a box model that will allow you to make a fast resizable engine. With web content there is an existing box model (CSS) and it's not exactly optimized for performance....

      I agree that this is not rocket science. It's completely orthogonal and in some ways much harder (I can do rocket science; I can't write a decent HTML _parser_ much less layout engine).

    22. Re:Threads and Processes by Anonymous Coward · · Score: 0

      Linux is a kernel, it does not have Posix threads.
      pthreads are a hack of glibc.

    23. Re:Threads and Processes by bgarcia · · Score: 1
      Linux is the name of a kernel, true. But Linux is also the name for the system. And Linux "the system" has posix threads.

      And it's a fairly complete implementation. I wouldn't call it a "hack".

      --
      I'm a leaf on the wind. Watch how I soar.
  57. Re:Playboy.com, hacked at 7 by Anonymous Coward · · Score: 0

    God sees all.

    localhost# nmap heaven

    Interesting ports on heaven (192.168.1.1):
    (The 1521 ports scanned but not shown below are in state: closed)

    Port State Service
    21/tcp open ftp
    23/tcp open telnet
    25/tcp open smtp
    80/tcp open http
    110/tcp open pop-3
    113/tcp open auth

    Nmap run completed -- 1 IP address (1 host up) scanned in 0 seconds

  58. BUTTER by Anonymous Coward · · Score: 0
  59. Slow Mozilla by Anonymous Coward · · Score: 0

    Can't anybody fix or patch Mozilla so that we can get rid of the slow and memory eating themes! Mozilla should atleast have the posibility to have no theme. Mozilla is a good bowser but way to slow and eats way to much memory.

  60. Me3 by crisco · · Score: 1

    Heh, me too. Friends and family think I'm a freak. They might be right. Now I can say "Hey, there are at least two other people that read /. that do the same thing". Not sure of what benefit that is though...

    --

    Bleh!

    1. Re:Me3 by seann · · Score: 1

      I too..
      am a member of this "cult click read"
      as well for a few others I know.

      Your not alone, neo.

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
  61. Opera 6.0 by popeyethesailor · · Score: 3, Interesting

    This is not meant as a Troll. If you are a Windows user, checkout the latest beta from Opera, it rocks. Choice of Single/Multiple document interface,new skins, and mouse gestures too! Still retains fastest browser credits. Give it a try.

  62. Re:Face it, Mozilla is dead by Anonymous Coward · · Score: 0

    Whatever, people who troll a product without even trying it deserve to be modded -1.

    Fact of the matter is that Mozilla is becoming very non-slow as of late(ESPECIALLY 0.9.6) and only people who actually use it would know.

  63. An MSers take on Mozilla by Kraft · · Score: 3, Interesting

    I have tried to go over to mozilla as part of my slow conversion from Win to Linux. Thought it might be a good place to start.

    When I installed Mozilla at 0.9.5 I was impressed. This app has come a loong way!

    However, I have a couple of hickups, which someone might be able to help me with

    - Load time Compared to IE, which takes 1-2 secs to load, Mozilla take around 8 secs to load. Not that much extra, but when my short term memory is 5 seconds, I most often choose to load IE, so I don't forget what I wanted to check out.
    - Shortcuts I don't know who fucked up the shortcuts, but I must use alt-d over 100 times a day in IE, the shortcut that brings you to the address bar. I had a (not too investigative) look at the Mozilla help, and couldn't find any info on shortcuts, which brings me to
    - Help You can't search the help! Hello.
    - Search My seconds favorite feature in any program is text search, and I have found the search in Mozilla to be buggy (forgetting last search word and settings, needing to 5 click before it starts, not finding text which is there)

    The most important to me is load time. I just don't see myself, only using Mozilla until load time is decreased. But hey, good luck to the dev team, I will hang in there.

    --

    -Kraft
    Live and let live
    1. Re:An MSers take on Mozilla by Dr.+Sp0ng · · Score: 3, Informative

      I don't know who fucked up the shortcuts, but I must use alt-d over 100 times a day in IE, the shortcut that brings you to the address bar. I had a (not too investigative) look at the Mozilla help, and couldn't find any info on shortcuts

      Ctrl-L (for Location) is the keystroke you're looking for.

    2. Re:An MSers take on Mozilla by tswinzig · · Score: 2

      Load time Compared to IE, which takes 1-2 secs to load, Mozilla take around 8 secs to load. Not that much extra, but when my short term memory is 5 seconds, I most often choose to load IE, so I don't forget what I wanted to check out.

      I'm assuming you're not using the 'turbo' option, since you didn't specify that?

      IE loads when Windows starts up, which is why opening an IE window is so fast. Therefore the Mozilla turbo option competes by pre-loading just like IE (well almost).

      If you are using the turbo option, and it still takes 8 seconds to load a Moz window, then something is WRONG.

      --

      "And like that ... he's gone."
  64. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    I get decent speeds on my abacus, but nothing to write home about.

  65. Project Mongoose by Anonymous Coward · · Score: 0

    What's up with Project Mongoose? I heard Phase III was supposed to start Thursday, now the word all over irc is that Phase III was moved to Saturday. Anybody got the scoops? Thanks in advance (don't forget the code word when replying).

  66. Re:MOD PARENT DOWN!! by seann · · Score: 1

    Let's get him!!!!

    --
    I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
  67. Versions have nothing to do with the code by HanzoSan · · Score: 3, Troll



    Mozillas codebase currently is IE 6.0 level in terms of features quality, and speed.

    It took Microsoft 6-7 years to get to this point, It took Mozilla 4 years.

    4 Years is pretty good.

    Opera is about 3 years behind Mozilla so dont even mention Opera. Opera isnt nearly as powerful, Opera is a light weight browser thats nothing special, its something anyone could have written up in a year or two.

    Mozilla on the other hand has alot more features and the only browser to compete with it feature for feature is IE, currently Mozilla supports more standards, has better security and is more stable than IE 6.0 making Mozilla more complete.

    When IE 7.0 releases, it will essentially be updated to be more secure, support more standards and basically be more like Mozilla.

    As far as Mozilla 2.0, Mozilla has the base done, the base what took 4 years, once the base is done all they have to do for 2.0 is add a few new features most likely to support new standards, optimize it for speed to make sure its faster than IE and Opera, fix bugs so it never crashes, and then allow Netscape and AOL to intergrate ICQ, AOLIM, Winamp and so on into it in a way that doesnt make it seem overwelming.

    Right now AOL isnt properly intergrated, but once it is, i see it being very useful, more useful than email for sure.

    And ICQ intergration would be good too.

    From there intergrate netscape into AOLs software suite.

    Now while Microsoft fixes all their bugs and security, Mozilla will be adding new features.

    If Mozilla developes at the pace it is right now, it will be about 2 -3 years ahead in development of Microsoft when 2.0 comes out.

    --
    If you use Linux, please help development of Autopac
    1. Re:Versions have nothing to do with the code by Yosho · · Score: 1

      Just out of curiousity, would you please justify your statement about Opera being three years behind Mozilla? What features does it lack? Out of those, which do you actually use?

      In my opinion, it could be said that Opera is *ahead* of Mozilla. It had tabbed browsing first, and it does it better. It also had mouse gestures first -- and to even enable them in Mozilla, you have to get a plugin. It's much, much faster. I've yet to see any page Mozilla can render that Opera can't. There's a single window for *all* file transfers, so if I have 10+ transfers going at once, they don't squish everything else in the taskbar. Granted, Opera's built-in newsreader, e-mail, and ICQ clients are very simplistic, but I'd rather they not be complex; I'll use other programs designed just for that purpose, thank you. And as you've said, Mozilla doesn't have ICQ integrated yet, either.

      But anyways, that's just my opinion. What's yours?

      --
      Karma: Terrifying (mostly affected by atrocities you've committed)
    2. Re:Versions have nothing to do with the code by rafelbev · · Score: 1

      Instead of going the AOL/ICQ way, i would prefer if they go the Jabber way, and concentrate on doing ONE good client and let Jabber do all the underlying gateway translations. This will open the gates against IE which is trying to push MSN down our troats in IE.
      Like this, people will choose Mozilla because it has both MSN as well as... well all other IMs.

      --
      Dodge this !! --Trinity, The Matrix
  68. Use the turbo feature and shut up! by HanzoSan · · Score: 1



    Before you say something is slow, turn on the features!

    --
    If you use Linux, please help development of Autopac
    1. Re:Use the turbo feature and shut up! by frleong · · Score: 1, Offtopic

      Really? What exactly Mozilla/Netscape has that makes it so dog slow that it requires a turbo mode, when IE and Opera don't need at all? A browser is a browser! Skin? But WinAMP is also pretty fast with skind. Just tell me the "features" that warrant me to run that turbo mode.

      --
      ¦ ©® ±
    2. Re:Use the turbo feature and shut up! by Anonymous Coward · · Score: 0

      umm
      actually ie is always in "turbo mode"
      as in its always running on your system even if no ie windows are open.. this is pretty much what mozilla turbo mode is.. ymmv

    3. Re:Use the turbo feature and shut up! by Anonymous Coward · · Score: 0, Flamebait

      actually ie is always in "turbo mode"

      So what about Opera, dumbshit?

      Whoops, exposed how shitty Mozilla is, guess I'm gonna get modded down.

    4. Re:Use the turbo feature and shut up! by unapersson · · Score: 1

      All turbo mode does is to allow it to preload in the same way that IE does. The difference being that you can switch it off, or unload it, something you ca't do with IE.

  69. Not even full 4.x functionality by Anonymous Coward · · Score: 1

    The thing that sucks most about mozilla is that they didnt even implement those features which are in ancient Netscape 4.x. Examples of nice features in 4.x but missing in mozilla are: saving HTML pages as plaintext, opening multiple mailnews windows easily, an option for quoting the original mail/news article in a reply and others. This will piss off many users who have used (and often still do use) 4.x.
    Its beyond me why netscape put so much effort in toy features like themes instead of concentrating on productivity and at least reimplementing what was already there.
    Dont get me wrong, there are many improvements, more stability, other nice features too. But I bet serious users would have been hapy without themes, favicon and other toys if the got their old features instead.

  70. OmniWeb by anfloga · · Score: 1

    I like OmniWeb (on Mac OS X), though I know it isn't open source (too bad! I wish it were..) It's fast, very IE compatible, and just plain good. Lots of nice options like no popup's on load, that kind of thing. It costs money but they let you use it for free hoping that guilt will convince you to pay for it, as it did for me. Also the integration is very, very good on Mac OS X. Much, much, much faster than Mozilla and even faster than IE.

    Erik

    1. Re:OmniWeb by motherhead · · Score: 1

      I agree, i love Omniweb's use of quartz anti-alaised fonts as well, reading text heavy web content is a delight with omniweb, what i don't like about omniweb is how it chokes sometimes on flash vectors or animations. also, the latest build seems far less stable then the previous one.

      it's easily my preffered OSX browser though. but i do still have to launch IE every so often and that breaks my heart.

      Opera is cool but there is so much going on with that damn browser i always feel like i am walking through a Thai red-light district whenever i launch it.

    2. Re:OmniWeb by Anonymous Coward · · Score: 0

      OmniWeb has nice fonts, but it is NOT a modern browser by any means. It's DOM and CSS support put it only a half a notch above Netscape/IE 3.0

      And on my poor old PB G3/333, it's the slowest browser I have installed.

  71. Wow!.. No sh*t man?!.. by Abnornymous+Howard · · Score: 0, Offtopic

    What did they do?
    Did they deface it?
    Did they put a link to some page with naked chix on it?
    Errr... Never mind...

  72. JRE not included by wbav · · Score: 1

    It seems even with this release you still have to download netscape (so that it can process the xpi) to install java. Quite annoying.

    --

    =================
    Unix is very user friendly, it's just picky about who its friends are.
    1. Re:JRE not included by chefren · · Score: 1

      Or maybe you can download a sun's JRE. You get the java plugin and can run real java applications as well. Some people (like me) already have this installed, so why include this with mozilla and add another 5-10MB to the download?

    2. Re:JRE not included by wbav · · Score: 1

      It's the old ease of use vs. useablity debate. If it was documented well (which it might be, I just didn't look at the right documents) then it's fine. Otherwise, you should include the extra dl.

      --

      =================
      Unix is very user friendly, it's just picky about who its friends are.
  73. Feech by Anonymous Coward · · Score: 0
    If you have any ... ideas for modifications, please tell me.

    Well Ok.

    This comment is based on using Mozilla 0.95, so it may be improved already. It is easier to locate ... interesting .. newgroups in the newsgroup list in MS Outlook Express. You can enter multiple keywords (e.g. "sex bin pic teen"), and the newsgroup list will be filtered to the ones that match all of them. Mozilla 095 only allows one keyword, leaving you with a very long list to scroll through to find the ones that you want.

    Hope this helps.

  74. Re:Mozilla is a great browser if... by marcovje · · Score: 1


    Note that I would increase that Windows memory requirement for Win2000 and XP.

    (these OSes use more memory by default, less mem for apps)

  75. Mozilla does not take 8 seconds to load by HanzoSan · · Score: 2, Informative



    Use the turbo feature, Mozilla loads faster than IE.

    --
    If you use Linux, please help development of Autopac
    1. Re:Mozilla does not take 8 seconds to load by Kraft · · Score: 2

      Ok, that sounds great.

      But how do I load it? Do you have more info on it?

      --

      -Kraft
      Live and let live
    2. Re:Mozilla does not take 8 seconds to load by The+Evil+Beaver · · Score: 2, Informative

      Edit->Preferences.

      The Advanced page in Preferences has a check box near the bottom that turns it on and off. However, I (and quite a few others) have found it to be pretty buggy, and a source of memleaks. Hopefully it's better now, but I'm not using it until the 1.0 milestone.

      Of course, other than that, no worries. I've been using Mozilla as my default browser since M18, and haven't looked back since!

      --
      Chris 'coldacid' Charabaruk Meldstar Entertainment
  76. shouldn't that be 10 and 10 (binary)?

    1. Re:hmm by smileyy · · Score: 1

      Or for those of us too poor to afford zeroes, I can see how he was dreaming of a richer world, and type "binary", when he really meant "unary".

      Then again, the unary world can be a nice one, where addition is done via concatenation.

      --
      pooptruck
  77. A bug they must fix is by HanzoSan · · Score: 1



    When i change my font settings, it should save damnit!!

    --
    If you use Linux, please help development of Autopac
    1. Re:A bug they must fix is by Anonymous Coward · · Score: 0

      The font settings in the view menu are temporary settings. If you want the changes saved, set them in the preferences dialog box.

  78. Re: Face it, Mozilla is **** -Rulez!! by asciimonster · · Score: 1

    I concur.

    I'm useing Windows (So shoot me)since all programmes I need are for that platform. I started using it because I din't want to use M$IE and I found this one to have (in my opinion) the nicest interface. It started out to be pretty slow, even slower than M$IE. But it just started to get better and better. With 0.93 it even rivalled IE.

    I'm curious if they can keep this pace of improvement up. Pity it doesn't load the slashdot page when it's not the first page loaded.

  79. harsh wording but most of it true by Anonymous Coward · · Score: 0

    even if the wording is harsh, most of what is said in the article is true. netscape failed to manage that project so that it produces something productive instead of something cool. i couldnt agree more on the point about XUL: how many manyears went into this? now we have the most wonderful skinning language on earth. but it doesnt even have those features already in 4.x (look into bugzulla to find out more).

    1. Re:harsh wording but most of it true by Anonymous Coward · · Score: 0

      Do you honestly believe that a political and imflammatory propaganda piece like that was authored in the two hours following the release? The write doesn't even mention having tested mozilla 0.9.6. And if he did so to any valuable extent - when did he have time to write that garbage? It's well written - but that's ALL it is. Lack of spelling errors hardly proves correctness of content. Development of Mozilla is steady going forward, getting better every single day and it's simply pretty damn good by now - THAT is the hard fact. Consider that before trusting anyone wanking his dicktionary.

  80. Still a few missing features by Anonymous Coward · · Score: 0

    * View Source on a HTTP-POST generated page still does not work, making mozilla useless for cgi development testing.

    * Every time I visit a page that requires flash (or similar), I'm asked if I want to download the plugin. Why can't it remember that I said no the last X times I was asked that very question?

    Apart from that it is a fast and very stable browser (linux 2.4).

    1. Re:Still a few missing features by xah · · Score: 1

      Please file your bug reports/feature requests with http://bugzilla.mozilla.org/ .

      --
      I am not a lawyer. Do not take my words as legal advice. If you need legal advice, consult an attorney.
  81. it's about time: will i be able to export? by Sfing_ter · · Score: 1

    Now maybe we will be able to export our address books (without 3rd party software, thanks dawn)
    now.

    --
    A computer once beat me at chess, but it was no match for me at kick boxing. Emo Philips
  82. Re: My mozilla also rocks by Anonymous Coward · · Score: 0

    My mozilla also does the work well on http://www.joepetrow.com

    ;))

  83. Re:Mozilla is a great browser if... by The_Messenger · · Score: 0

    But if you were to write home about it, you'd use heiroglyphics.

    --

    --
    I like to watch.

  84. scoring of articles by Anonymous Coward · · Score: 0

    well, just rate each article here roughly by how
    positive it is about mozilla, say on a scale of 1 to 3, then note for each article the slashdot score.
    do a statistical analysis. think.
    isnt it a bit uhm ... unprofessional to assign scores like this?

  85. Re:Mozilla is a great browser if... by nil_null · · Score: 1

    Pentium-120mhz? I just bought a P2-266mhz motherboard w/ integrated audio and video and 64mb PC100 mem for $25. Upgraded my Linux PC from a P1-166 to something of reasonable speed. But yeah, I know, upgrades tend to have hidden costs. Anything that can't boot from CD I don't want to use (no more @!$#ing floppy drives!)

  86. Re:Mozilla and Brittney Cleary by Anonymous Coward · · Score: 0

    i CAN'T AGREE ... !!! I use mozilla for three months now !!! on Linux, Win200, WinXP's ,...

    I didn't crash once !!!

    Try to look at alpha transparecy images with IE ... and what will you get ? piece of shit ...

  87. Re:Better and Better by Stary · · Score: 1, Insightful
    - Mozilla has tabbled browsing

    Which slows down the quick alt+tab everyone uses to switch between browser windows...

    Here's where your post fails for the first time... It pretty much shows that you're only doing PR when you just throw out something as lovely as this.

    1. Why does it make alt+tab slower? I sure hadn't noticed that.
    2. You're perfectly allowed to use new browser windows instead if you want.

    - Mozilla doesn't redirect you to MSN (or AOL for that matter) and spill your privacy for all to see

    Nor does IE, if you configure it correctly.

    That's a bit besides the point. A good program should be secure by default. Almost any program can be secured by "configuring it correctly". This implies that it's secure for you and me, but not for Joe and Jane Normaluser.

    It sounds like typical Microsoft-ish to me:
    '- Oh, but you have to turn the "we-have-full-control-of-your-private-data"-switch off. It's in File->Options->(click the lower right corner)->My Pictures->Settings->Fonts'

    A browser is one of the programs where it's most important that the user's privacy is protected, from the beginning, for all users, not just for the know-how powerusers.

    --
    Tomorrow will be cancelled due to lack of interest
  88. Nice by Anonymous Coward · · Score: 0

    I actually am using the nightly build from last night. It's not quite perfect, but still really really good.

    One thing that could be improved dramatically is when you type file:///

    I like the new icon things next to the URL. I think there may be a way to make that the icon that is shown when minimized but I haven't figured it out.

    Other than a few other minor polish bugs, I'd say Mozilla is ready for 1.0

  89. Who really cares? by boltar · · Score: 0

    Its just a friggin browser. Does anyone get this
    excited when a new version of telnet is released??

  90. Comment was a ripped off Hotwired story (NT) by Anonymous Coward · · Score: 0

    fefwe

  91. Re:Better and Better by CaptnMArk · · Score: 1


    >>- Mozilla has tabbled browsing

    >Which slows down the quick alt+tab everyone uses to >switch between browser windows...

    Agreed 100% Tab browsing is just overhyped UI bloat. For many people it's just a workaround for crappy new-window performance

  92. This is all well and good... by FyRE666 · · Score: 0

    ... but I still believe Konqueror under KDE to be the best browser for the Linux platform, even though it seems to get less coverage than the gradual development of Moz. I now use it as my primary browser on there - it loads up in under a second, can also be used as a file manager and has excellent stylesheet and improving DOM support. One thing I particularly like is the fact you can apply your own theme to form elements within pages - no more ugly looking SUBMIT buttons and checkboxes! It's also faster than Moz. End of sermon :-)

    1. Re:This is all well and good... by jonathan_ingram · · Score: 1

      Very odd place to refer people to for KDE themes. The place to go is currently KDE-Look.org.

    2. Re:This is all well and good... by Nicolas+MONNET · · Score: 1

      Konqueror is very good, however it lacks one feature that made me switch to Mozilla last week:

      The ability to disable pop-up windows on page load, page close or timer events.

      If you disable window.open entirely, you get fucked on sites like Cnn.com where some links open tiny windows to display, say, photos or infographics.

      Also there's the "tab" feature ... Now that's awesome.

      Last, I found Konq still has a nasty memory leak, the process grows to hundreds of MB after a couple days; while Mozilla doesn't seem to leak significant memory so far.

    3. Re:This is all well and good... by FyRE666 · · Score: 0

      Ah yes, I couldn't remember the link off the top of my head. One thing I have noticed is that www.themes.org is bereaft of any themes for KDE! Maybe their site is having a problem, but it's been that way for at least a month...

    4. Re:This is all well and good... by fault0 · · Score: 2

      try using linux > 2.4.10
      I had probs with konq and leaks before that

    5. Re:This is all well and good... by Anonymous Coward · · Score: 0

      How do you disable pop-up windows on page load?

    6. Re:This is all well and good... by Nicolas+MONNET · · Score: 1

      I'm using 2.4.13. Still leaks.

  93. Re:Better and Better by b0r1s · · Score: 0

    That's a bit besides the point. A good program should be secure by default. Almost any program can be secured by "configuring it correctly". This implies that it's secure for you and me, but not for Joe and Jane Normaluser.

    Apply this concept to the default linux install. (yes, the one that installs bind, apache, sendmail 8.11.3, wu-ftpd, and telnetd) ...

    sure, security is important. but knowing how to secure something is more important than running something that comes secure. Otherwise we'd all be running openbsd (instead of me running freebsd and you probably running linux).

    --
    Mooniacs for iOS and Android
  94. Re:Better and Better by pthisis · · Score: 4, Informative

    - You can disable Mozilla's JS window.open()
    A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window?

    The mozilla anti-popup feature disables popups on window open, page load, and window close (and timers). So obnoxious auto-pops don't happen, but e.g. The Onion's horoscopes still work.

    Sumner

    --
    rage, rage against the dying of the light
  95. Re:Mozilla is a great browser if... by Lispy · · Score: 1

    Yup, youre right. Opera has some issues, but i would love to see its download management in Mozilla...

    Lispy

  96. I have the "x" to close the Tab in 9.5 by Lispy · · Score: 1

    Since Im at work i wont install the new release right now. Is it gone in 9.6 or maybe you just didnt find it?

    The Tab Feature rocks btw. I really like it a lot, only thing that got me worried was reading it was only an "experimental" Feature wich might not make it into 1.0.

    Lispy

  97. Re:Better and Better by itarget · · Score: 2, Informative

    - Mozilla is Open Source
    Zealots aside, why is this better?


    It's there if it's needed or wanted, and can't be taken away.

    - Mozilla won't accept activeX or other such nonsense
    Which limit's its use on heavily scripted, harmless, usefull sites.


    I honestly don't know of any sites that are heavily scripted while remaining both harmless and useful.

    - Mozilla has tabbled browsing
    Which slows down the quick alt+tab everyone uses to switch between browser windows...


    Then use windowed browsing. It didn't go anywhere.

    - Mozilla doesn't redirect you to MSN (or AOL for that matter) and spill your privacy for all to see
    Nor does IE, if you configure it correctly.


    I never found an option to prevent getting passed off to MS on a DNS lookup failure, but then I almost never touch IE outside of HTML testing purposes.

    - Mozilla has a development team that cares about the end product
    More ramblings from a zealot. I'm sure the IE programmers care about IE. They just dont feel the need to sit around and pat each other on the back in public message boards.


    I'm sure the IE developers pat each other on the back all the time, but you won't see it since they don't have public mailing lists.

    - Mozilla has site-specific image and cookie management
    Internet privacy zones. From your top menu in IE6: tools -> internet options -> privacy -> click the edit button. Yep, it works in IE on a site by site basis.


    That it does, though personally I prefer the format of Mozilla's privacy tools. Probably a familiarity thing.

    - Mozilla is stable (close to 100%) and won't bring down the OS when it crashes
    Just like IE6 (which hasnt ever crashed on me, even though I use it roughly 14 hours a day, 7 days a week, for the past few months)


    Last time I used IE (5.5) it crashed several times a day (usually on malformed javascript or activex), taking the whole OS with it half the time. I haven't tried IE6 though.
    I've been using the Mozilla nightlies, and I haven't had a crash since before the summer. Some really funky regressions like the expando url bar... but no crashes.
    I put my browsers through HTML/Java/Flash/script hell though, so YMMV.

    --

    "Where shall the word be found, where will the word resound? Not here, there is not enough silence." -T.S. Eliot
  98. It is as bad as it ever was by evilviper · · Score: 1, Insightful
    And boy, is it getting good..."

    I can answer that question with a firm NO. For every bug they fix, another pops up to replace it. I know this as I've been a major bug submitter since M8. While they are solving the bugs that cause major problems (and replacing them with many minor bugs) they are not cleaning up the code, making it more proper, portable, or reliable.


    Netscape version 0.x-4.x were very simple, and effective. They all just got the HTML, and rendered it as the page said so.

    With Mozilla, they are really reverse engineering open web standards. They go to a web page, impliment the code in mozilla that allows it to render the page properly, then move on to the next web page. In other words, instead of making a simple engine that handles the code in a systematic way, they will need to look at every different design possible in order to get mozilla to work properly with them all. This is obvioiusly the wrong way to do things. Nobody in the Mozilla crew wants to hear the fact that they are doing things ass-backwards and should look at other ways to do the same thing. They've got code, and just want to continue adding more work arounds till the code takes multiple Gigs of RAM, eats CPU power like candy, and bloats out of control.


    I may use it to find bugs and submit many many bug reports, but I prefer not to use Mozilla.


    On Windows, I stick with Netscape 4.x, on Mac I use iCab, and on Unix... Well, I've got high hopes for dillo but will be using Netscape 4.x on Unix until dillo gets better.

    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    1. Re:It is as bad as it ever was by Jagin · · Score: 1

      Eek!! Someone say this ain't so! That's a TERRIBLE way to design an engine! When I've done web development, the most impressive thing about IE was its rendering engine -- you can throw almost anything at it and its still cool... I think that they must have some excellent parsing code in there.

      I've not looked at the Mozila code, but I assumed they were just writing good parsers. This exception to the rule writing is dangerous... can anyone confirm that they're this?

    2. Re:It is as bad as it ever was by Anonymous Coward · · Score: 0

      The "standards-mode" parser is a relatively good, clean parser. The problem is the deluge of people who insist that their site has to work in "quirks-mode" EXACTLY as it does in IE/NS 4.x or whatever, so a lot of effort gets diverted to tweaking quirks mode to make it replicate old browser bugs better. Admittedly, there are quite a few bugs with table layout algorithms (mostly because an optimization went wrong), but usually one patch will fix a bunch of these at once. (I should point out parenthetically that a parser that handles "everything you throw at it" is hardly what I'd consider a feature-it will be considerably harder to maintain, tend to break strangely in apparently unrelated places when people change things, and encourage people to write bad code.)

    3. Re:It is as bad as it ever was by Jagin · · Score: 1

      I hear what you're saying about the parser -- if it allows to much -- you get away with writing bad code. That's exactly whats happened with web developers that write for IE only.

      I also wish more people would fix their code instead of calling a browser crap if their crappy code does render right. Guess we have to accept that as far as conforming to standards goes, the web sucks.

  99. Re:Better and Better by nathanh · · Score: 5, Informative
    [Re: Open Source nature of Mozilla] Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?
    • No single entity (person or company) can control the distribution or ownership of the browser. This neatly avoids the problem of a single vendor trying to control standards.
    • No product lock-in: "must have" features can always be lifted and used in another piece of software, if the mozilla monster turns out to be an unwanted burden.
    • The software is not rushed to completion (2 years of delays proves this!) so I have faith that the quality is better than most other browsers.
    • Development is driven by demand not money. This means the engine implements features that people wanted, not just feature "checklists".
    • The GECKO engine is portable and has been ported widely. This means I'm not locked into a single operating system or hardware platform.
    • There is no limits on how the engine is used. This means I see the same engine rendering my help files, my email, my webpages, etc.
    • Though I might never read the code, I know somebody else can, will, and has.
  100. Re:Mozilla is a great browser if... by fredrik70 · · Score: 1

    methink NS3 would be better for you.. or perhaps Opera?

    --
    if (!signature) { throw std::runtime_error("No sig!"); }
  101. Re:Better and Better by Stary · · Score: 1
    Apply this concept to the default linux install. (yes, the one that installs bind, apache, sendmail 8.11.3, wu-ftpd, and telnetd) ...

    No, I don't like this either. The default install should basicly not install any server software at all, or at least turn it all off.

    Thats one of the points where all freebsd and linux fail in the desktop-aim, mainly. Of course it's more important to know how to secure something; however, I don't expect Joe Normaluser to use bind, apache or sendmail... but I do expect him to use a browser. And I don't think you should have to take a 2-day beginner course to be able to browse the web safely.

    --
    Tomorrow will be cancelled due to lack of interest
  102. Tabs are cool - don't use em if you don't like em! by Jagin · · Score: 1

    The subject line says it all! I have a friend who is IE crazy and didn't like Mozilla (well.. I showed him some early builds). He's becoming more and more impressed with Mozilla and when he saw the tabs he freaked (in a good way)! He said that a tabbed interface is one thing Microsoft can learn from Mozilla (he even hopes they implement tabs in IE). He's a UI and Windows freak, so this says a lot.

    And if you really don't like tabs.. and love having hundreds on windows in your taskbar: d-o n-o-t u-s-e t-h-e-m!

  103. Build Options by Simm0 · · Score: 4, Informative

    Here are a couple of build options that I frequently use in my .mozconfig when building mozilla to keep it running extreemely well also cutting alot of the cruft out.

    These build options are for all the people that are complaining about shoddy mozilla performance under linux and people that would like to have a look at some really new features.

    ac_add_options --with-extensions=all
    Enables such things as the Chatzilla IRC client and the dom inspector(which I think is extreemely neat for debugging and viewing dynamicly changing html object model) also contains some very experimental things such as xmlterm.

    ac_add_options --enable-mathml
    Very neat standard for displaying math of all types and sizes in xml.

    ac_add_options --enable-crypto
    Great option, about a year ago this option wasnt even possible due to netscape not realeasing it's code due to US laws afaik. Now everyone that want to compile the lizard can get ssl support built right into the browser.

    ac_add_options --enable-optimize="-O3 -march=i686 -mcpu=i686"
    The main optimization part. This option has the biggest leaverage affect on the actual quickness of the browsre itself.

    ac_add_options --disable-tests
    Get rid of the unneccesary tests.

    ac_add_options --disable-debug
    We don't need any debuging symbols in th build if where not a developer do we.

    ac_add_options --disable-shared
    ac_add_options --enable-static
    A nice new enhancement of the moz build system which links all of the modules in statically, im experiencing a big speed increase and a decrease of startup times with this option probably because it doesnt need to read each individual shared object from the hard disk.

  104. Re:Better and Better by 7seconds · · Score: 2, Informative

    You forgot to itemize the good XML-CSS-rendering, Mozilla or Galeon are pretty close to w3-standards. I saw some XML documents which were not correctly rendered in IE or Opera. I nearly want to call Mozilla not only browser, but also HTML/CSS/XML-Validator:-) It helps to find bugs in page code!

  105. It�s just a numba! by Lispy · · Score: 1

    Oh, come on...you prefer a buggy Netscape 6.0 Release just because its got a "final" Number in its name? I dont think so...

    Lispy

  106. Mozilla has gestures too! by Jagin · · Score: 1

    Check out http://optimoz.mozdev.org/gestures/! Installs painlessly and works well -- it might be integrated into the main Mozilla package one day. So there!

  107. Re:Me4 by KeyserDK · · Score: 0

    I belong to this cult aswell.

    --
    still reading?
  108. Browser wars? Sigh. by hkmwbz · · Score: 1
    "Opera, on the other hand, can't even handle transparency, let alone alpha-blending."

    Close, but no cigar. Opera 6.0 has perfect support for PNG alpha transparency. Opera 6.0 beta 1 for Windows was released a week ago, and Opera 6.0 for Linux is just around the corner.

    "Because Opera can't do what Mozilla can do"

    This is the worst argument of all. To counter it, one can simply say that "Mozilla can't do what Opera can do". Why can't we all just accept that Opera and Mozilla are two different browsers? Both of them are damn good at what they do. Comparing Mozilla and Opera is like comparing apples and oranges.

    If anything, Mozilla and Opera users should unite, since they all share the same ideas about open standards and a web accessible to everyone.

    At least, with two great browsers like Opera and Mozilla out there, users have a choice! They don't have to use Microsoft's inferior (my opinion only, not stated as a fact*) product. Both Opera and Mozilla are great browsers - why fight over it? Some like Opera, other like Mozilla.

    Opera still has mouse gestures (Mozilla's still aren't really comparable), keyboard shortcuts for everything, and now even has the choice between MDI and SDI, where SDI is a lot more powerful than any other browser.

    Yes, Opera lacks the "modularity" of Mozilla and other things, but as I've said, Mozilla lacks a lot of what Opera has. But who cares? Use the browser which best suits your needs.

    To see that Opera can actually be used for advanced HTML, CSS and JavaScript, have a look at this gem:

    http://www.cross-browser.com/

    You never thought those things were possible in Opera, did you?

    *) To explain why I think IE is inferior: One example is that it fails to provide the user with basic functionality. IE appears to be created to allow the web page author to control where the user goes (much in Microsoft's tradition), while Mozilla and Opera both allow the user to control more of their surfing. IE just fails in such basic areas, so for me, it is an inferior product. There are other things as well (such as terribly buggy CSS and XHTML support), but I think I'll stop now, because this is very much off-topic.

    --
    Clever signature text goes here.
    1. Re:Browser wars? Sigh. by krmt · · Score: 2
      To explain why I think IE is inferior: One example is that it fails to provide the user with basic functionality. IE appears to be created to allow the web page author to control where the user goes (much in Microsoft's tradition), while Mozilla and Opera both allow the user to control more of their surfing.

      I'm curious about this. How do you mean? The only example I can really give for this is in Mozilla (I've never used Opera) that you can disable popups. Other than that, I don't really see IE preventing the browser user from controlling their own destiny. The prefs aren't any harder to get to, and it does have security zones and whatnot. It's also got great fantastic plugin support (runtime install kicks ass) and a convenient sidebar.

      Granted, I like Mozilla better for a variety of reasons, but I don't really understand yours. Could you clarify them a bit?
      --

      "I may not have morals, but I have standards."

    2. Re:Browser wars? Sigh. by platypus · · Score: 2
      I can give two examples, things that I really hate with IE and which IMO clearly exist for websites to dictate what I do:
      1. If you configured IE to ask whether it should accept cookies, it asks. But where's in the dialog which pops up to get IE to _ignore_ cookies from this page. If you check "don't ask again" it will accept cookies from now on. This is wrong.
      2. If you disable ActiveX, IE will always pop up a window which informs you that this page may look sucky because of your current security settings.

        Maybe I'm just to dense to configure IE correctly, but then it's too hard to find, IMO.
    3. Re:Browser wars? Sigh. by antek9 · · Score: 1

      One thinh that always bugged me about IE is that it won't show you the raw URL of a link you're pointing the mouse at, as opposed to Netscape/Mozilla (dunno about Opera) displaying it in the bottom bar. If that's not overridden by some javascript, of course. But then, it is Mozilla that I would expect an option to disable those from rather than from Microsoft.
      The original poster is right, IE does patronize surfers too much, and their security zones concept is pure crap. Set your preferences according to secure standards, and try to visit microsoft.com or to download some plugin then...

      --
      A World in a Grain of Sand / Heaven in a Wild Flower,
      Infinity in the Palm of your Hand / And Eternity in an Hour.
    4. Re:Browser wars? Sigh. by gpinzone · · Score: 1

      This is the worst argument of all. To counter it, one can simply say that "Mozilla can't do what Opera can do". Why can't we all just accept that Opera and Mozilla are two different browsers? Both of them are damn good at what they do. Comparing Mozilla and Opera is like comparing apples and oranges.

      This is the worst argument of all. Apples and oranges? Web browsers should all work the SAME. Netscape and Mozilla have given me tons of grief. One time I tried to embed a RealAudio file in a web page in Netscape 6.0 and Mozilla (granted an older version) and it LOCKED UP the browsers. Ever see how slow a page with lots of nested tables loads in Netscape? No problem for IE, though. Opera is no prize either. Ever try to execute methods in a Java applet through JavaScript in Opera? You can't.

    5. Re:Browser wars? Sigh. by hkmwbz · · Score: 1
      "Web browsers should all work the SAME"

      Let's face the facts here. Web browsers do not work the same. Nor will they ever - they all have different features. However, what they should do is to implement the same standards, and do this correctly. Other than that, one browser is not the same as the next.

      "Ever see how slow a page with lots of nested tables loads in Netscape? No problem for IE, though."

      Netscape 4? It is a bad excuse for a browser. It was decent once, but it is hopelessly outdated today. As for pages working better in IE - has it occurred to you that this perhaps is because most pages are created specifically for IE, taking all bugs, errors and problems in IE into account, often ignoring other browsers?

      I also think you should look at the quality of Mozilla 0.9.6. Imagine what Mozilla 1.0 will be like if they can squeeze some more speed and stability out of it.

      "Ever try to execute methods in a Java applet through JavaScript in Opera?You can't."

      Yes you can. LiveConnect is supported in Opera 6.

      Finally, let me repeat that no browser is the same, but out of all browser, I find IE to be the worst. It completely lacks basic keyboard shortcuts for people who want to use the keyboard for surfing. Its support for CSS is a bad joke - buggy and badly implemented. Their box model just doesn't cut it. Ever tried absolute positioning of elements? IE can't even do this correctly.

      Yes, I am bashing IE, and people should. It is the biggest (sic) browser, not because it is a good browser, but because it is distributed with an operating system. It caters for developers' needs but completely forgets things like security, privacy and accessibility for the user. It is horribly bloated and unstable as well.

      Believe me, I have to work with browsers like Opera, Mozilla and IE every single day.

      --
      Clever signature text goes here.
    6. Re:Browser wars? Sigh. by gpinzone · · Score: 1

      Don't assume that most webmasters are too lazy to code their pages for anything other than IE. The real problem is once a non-standard buggy piece of crap browser like NS 4.x enters the marketplace, webmasters must support it or risk alienating users from their websites. I always end up having to code twice just so things like layer effects work on NS browsers as well as IE.

      Geez, what's with all this IE bashing? Every version of Internet Explorer (past 3.0) are all incredible browsers. Version 4.0 does alpha blending, DHTML, layers, etc. and did it way before Netscape coughed up their pitiful non-standard methods of achieving a fraction of what's possible in IE. Even an organization that has continued to bash IE repeatedly for deficiencies in its compliance with W3C standards (www.webstandards.org) admits that, "Microsoft's implementation of CSS1 has thus far always been the best available..."

    7. Re:Browser wars? Sigh. by hkmwbz · · Score: 1

      No, IE does not have the best CSS1 support, and especially not CSS2. Opera has lead the race here, and Mozilla is doing rather well. IE has too many mistakes, such as their misunderstanding of padding and margins, and absolute positioning.

      --
      Clever signature text goes here.
    8. Re:Browser wars? Sigh. by hkmwbz · · Score: 1
      Yes. For example, Opera gives you easy access to numerous useful function (in fact, pretty much all functions) through the use of keyboard shortcuts. If I just want to read the text, I can press G to toggle images on/off. In Opera 6, a Quick-Prefs menu has been added. Pressing F12 will allow you to enable and disable a number of things, including popups, JavaScript in general, Java, etc. without wading through several levels of irrelevant settings. You can also switch between your own user style sheet and the web page author's style sheet with Ctrl+G.

      This is a level of user control which leads to IE feeling limited. What keyboard shortcuts are available for IE? Do they allow you to control your surfing like that?

      And then there's mouse gestures. Both Opera and Mozilla have these. It might sound like a gimmick, but once you try them, you will be hooked.

      These are examples of why surfing with IE feels like being trapped. It doesn't feel like the user is in control.

      --
      Clever signature text goes here.
  109. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    Yep - it's pretty slow on my C64 as well.

    IE4 ran quite well on my old 486 DX4/100, with only 16 MB of RAM.

    What's Mozilla's excuse?

  110. Re:Better and Better by Platinum+Dragon · · Score: 2

    Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?

    Does IE even give you that option at all? Can you directly e-mail any of the IE developers? Were the IE developers a diverse team from multiple companies and institutions?

    Which limit's its use on heavily scripted, harmless, usefull sites. True, it saves you from mailicious porn webmasters who want to install their dialer programs, but that's not a problem if you know how to set up your internet security zones on IE.

    Can your mother do that? Should your mother have to do that, just to be able to surf the web without having crap installed without her even being aware? This is assuming your mother looks at porn sites; substitute dad/brother/yourself as necessary...

    A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window?

    The UI for turning the feature on and off at will hasn't been implemented in Mozilla that I know of, but Galeon currently allows for this. I think it's also possible to selectively allow and disallow popups from certain sites.

    Which slows down the quick alt+tab everyone uses to switch between browser windows...

    'Course, there are those who find it more convenient to have one window with multiple tabs, than several windows to flip between. Ever since Galeon picked up tabbed browsing, I haven't gone back; just saves desktop space, looks cleaner, and doesn't give that much of a performance hit. At least with Mozilla, the option exists, and works rather well.

    Which is again nice, but means nothing if developers dont make their sites for standards, which they dont ....

    Nice to see you speak for all web developers.

    Nor does IE, if you configure it correctly.

    Again, can your mother do that, and should she have to just to be able to safely surf the web? Keep in mind, I'm not talking about the inevitable process of upgrading and patching bugs here; I'm talking about closing potential privacy and security holes deliberately set as defaults by the browser manufacturer.

    More ramblings from a zealot. I'm sure the IE programmers care about IE. They just dont feel the need to sit around and pat each other on the back in public message boards.

    No, they just have MS Marketing to whip up press releases and hype it as the Next Big Thing. Seriously, do you think the developers spend their time in the netscape.mozilla.* and Bugzilla boards holding public circle jerks?

    Internet privacy zones. From your top menu in IE6: tools -> internet options -> privacy -> click the edit button. Yep, it works in IE on a site by site basis.

    In short, they're about equal, and the Mozilla team doesn't have the need to give it the wankeriffic term of "privacy zones" or whatnot. Just cookie management and image management. Works damn well, too.

    --

    Someday, you're going to die. Get over it.
  111. Feedback by Anonymous Coward · · Score: 0

    Most people don't visit the Mozilla forums to feedback all their 'i want'/'i hate'/etc.
    So this slashdot forum is probably prescious for the mozilla developers.

    use it wisely

  112. Re:Better and Better by hkmwbz · · Score: 1
    "- Mozilla won't accept activeX or other such nonsense
    Which limit's its use on heavily scripted, harmless, usefull sites. True, it saves you from mailicious porn webmasters who want to install their dialer programs, but that's not a problem if you know how to set up your internet security zones on IE.

    The problem is that ActiveX is a proprietary Microsoft technology, and it has a proven track record of insecurity. Don't expect Joe Schmoe who just got his first PC to understand anything of what's going on. He'll go on surfing anywhere, and he will be at the mercy of the webmaster and Microsoft.

    Sadly, Microsoft have failed to take security into consideration when creating their developer-friendly, yet user-unfrienly technologies.

    ActiveX is supposed to make things easier to the user, but just ends up making things worse than ever, since security is near non-existant, unless you are a veteran, and since Microsft forcing their proprietary, insecure technologies on webmasters means that alternative, better software (browsers) will be locked out.

    "- You can disable Mozilla's JS window.open()
    A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window?"

    You can disable it for onLoad() and onUnLoad(), which pretty much avoids popup-spam, while still allowing user initiated popups.

    "- Mozilla is standards compliant
    Which is again nice, but means nothing if developers dont make their sites for standards, which they dont ....

    That kind of depends on what kind of sites you visit. You are also underestimating people if you think no one knows about open standards. You obviously haven't been paying attention lately. For example, the MSN.com fiasco meant that millions of people learned about alternative browsers like Mozilla and Opera. People who previously had no idea there was something outside Microsoft land opened their eyes.

    You see, when you dominate a market like Microsoft does now, the only way is down. Microsoft cannot increase their market share, because it is based on ignorance. As more and more people learn the truth about what is going on, Microsoft will slowly start losing its dominance of the browser/Internet market.

    --
    Clever signature text goes here.
  113. .. as an alternative by GauteL · · Score: 2
    .. if you are considering moving to Linux.. Galeon is a good alternative.

    It uses the Mozilla-engine, so it renders excactly the same, and uses the mozilla-plugin-system etc.

    It takes care of a few things for Mozilla:
    • Load time - Load time on Galeon is for me at 3 seconds with all my plugins installed.
    • Look - it adds a GTK+-interface, which fits very nicely in with GNOME
    • Shortcuts - they are at least way better than Mozillas.
    • Search - more simple and standard search-dialog
    1. Re:.. as an alternative by Ian+Bicking · · Score: 2
      I like Galeon too, but it's keyboard shortcuts still need a lot of work -- mostly in terms of focus. Half the time I try to use a shortcut it doesn't work, because the focus is on the URL or tabs or some other pointless area.

      Apparently this is a problem with integrating with Gecko, though... IMHO the basic problem of keyboard focus exists across all GTK apps... I wish there was never any concept of focus besides being in a text-entry area. You always have to guess what the behavior will be when you hit a key otherwise. It bugs me a lot in evolution, too (which I otherwise quite like)

    2. Re:.. as an alternative by GauteL · · Score: 2

      You'll be happy to hear that accessability is THE big promise for the GNOME2-platform and GTK+ 2.0.

  114. Use Nautilus, dimwit! by Jeppe+Salvesen · · Score: 2

    Damned wanker. All salami-slapping, no brains.

    Nautilus is the best thing on Linux. It's all that windows wanted to make. I'm not sure if it thumbmails movies, but it sure thumbnails pictures.

    Linux is made by geeks. Geeks also look at porn and masturbate. Why would our technical solution be technically inferior to Microsofts?

    --

    Stop the brainwash

  115. Re:Better and Better by Dudes · · Score: 1

    The lack of ActiveX is the only stumbling block to me using this on our Order Processing intranet site, sure I have used HTML for the part the outside world sees But I have spent many months creating an extremely powerful order entry grid for my purposes.

    And dont tell me to use Java, because the rest of the site is in Java it just was not fast enough for this purpose.

    If mozilla ever gets ActiveX its replacing IE 5.5 on all machines here thats for sure.

  116. Re:Better and Better by volkris · · Score: 1

    IEs 5.5 and 6 both crash greater than 6 times more than Mozilla on every computer I've used in the past 6 months. That's not an overstatement at all.

    These numbers are obtained running on a clean install of NT4 and also on Windows2000 on a completely different computer.

  117. Actually.. by Deleted · · Score: 0, Informative

    Although I'm not 100% sure if Konqueror is included, I have tried the KDE for windows package a while back, and it was erm kind of functional. And on their page it says they've successfully ported KDE 2.2.1 to cygwin too. If memory serves me Konqueror is in the kdebase package, which is available (for windows) at.. sourceforge

  118. Nice tiny fonts by hey · · Score: 1

    This version of Moz on Linux finally draws up sites like CNN legibly. The text in small fonts can be read. Now I don't feel like a second class citizen. Yipee. (I have RedHat 7.2 with Windows 95 TrueType fonts added.)

  119. Insightful post, not flamebait by GodWasAnAlien · · Score: 1
    The fact that the post was moderated to flaimbait only highlights the problem with the moderation system. Insight is often crushed when it is contrary to the majority (mob) opinion.

    Years ago, netscape source became available. I thought "great, now netscape split up into separate executables (browser, mail, news, html editor, all sharing dynamic libraries". This never happened. Instead many more features and applications have been assimilated into this one package.

    I wish that the "mozilla is dead" comment were true. Unfortunatly, the majority hope and demand will prop it up for an enternity.

    1. Re:Insightful post, not flamebait by Anonymous Coward · · Score: 0

      Sure you hope that it's dead, but let's face it: Mozilla isn't dead until nobody is mainting and/or using it.
      As long as I'm using Mozilla, Mozilla is not dead.

      And about Navigator/Mail/News/Whatever not being seperated executables, that's totaly untrue.
      Those are all components, stored in optional DLLs or shared libraries.
      How else do you think it's possible to install Mozilla without MailNews, if MailNews integrated in the executable?

    2. Re:Insightful post, not flamebait by GodWasAnAlien · · Score: 1

      I did say separate executables, not dynamic libraries.

      Can you exaplain how to configure mozilla to use another mail or news reader?

      The mozilla model of turning all applications into a dynamic library, then having one "everything" application link them, is quite different than the unix model, and is an unsafe model because a crash kills everything.

  120. Re:Better and Better by b0r1s · · Score: 1

    you missed my point ... i was simply saying that there are LOTS of stupid default installs, and IE's privacy-leaking-go-to-msn-on-404-errors is the least of the problems.

    --
    Mooniacs for iOS and Android
  121. Blame the OS, resources, and compiler patents by Anonymous Coward · · Score: 0

    I've asked about performance in various Mozilla forums including the mozilla irc channels. There are three primary reasons why Linux builds are slower than Windows builds:

    • The OS/XFree86 calls are slower than the Windows equivalents
    • Netscape's engineering staff have to prioritise their resources per customer levels, thus if an identified performance issue is XP (cross-platform) and significant, it gets fixed; if it's a significant Win32 problem, it gets fixed; if it's a significant Linux problem, someone will look at it as soon as they are available. For the Mac, give them a year or two.
    • The compiler sucks. GCC has often been branded sucky, partially because as open source software, they cannot use optimised algorithyms that the commercial compilers do (thus losing a huge performance boost for programs) because, guess what, the algorithyms are patented. Apparently, even the new Intel compiler for linux produces faster builds than gcc.

    So there you have it, slower OS/environment calls, lack of resources, and a compiler tied down to basic optimisations. Life sucks like that.

    1. Re:Blame the OS, resources, and compiler patents by ksheff · · Score: 2

      Has anyone compiled mozilla with the Intel compiler? If so, please post the results.

      --
      the good ground has been paved over by suicidal maniacs
  122. Re:Better and Better by b0r1s · · Score: 1

    the only time ie6 has ever crashed on this win2k box is after installing the ws_ftp "browser plugin" ... ever since then, it crashes on ftp sites. Other than that, no bugs or crashes at all.

    --
    Mooniacs for iOS and Android
  123. Better cookie viewing before accept/refuse by weave · · Score: 4, Informative
    IE 6 now tops Moz in the cookie/privacy area because you can set IE to prompt before each cookie and remember the accept or refuse action for later (as you can with Moz), but it also allows you to see the cookie contents to help you decide what to do with it as well.

    Opera and Konq also have this nice feature.

    I'm hoping Moz steps up to that plate soon....

    1. Re:Better cookie viewing before accept/refuse by xah · · Score: 1

      Then go to http://bugzilla.mozilla.org/ and file the feature request.

      --
      I am not a lawyer. Do not take my words as legal advice. If you need legal advice, consult an attorney.
    2. Re:Better cookie viewing before accept/refuse by pyros · · Score: 1

      I haven't tried any of the other browsers you mention, but my favorite cookie feature in mozilla is you can have them expire when your session is over. So I can enable cookies for the originating site, and they all go away quietly when I'm done.

    3. Re:Better cookie viewing before accept/refuse by Anonymous Coward · · Score: 0

      Ya, but the cookie options are still stupid. I much rather choose the sites that I wish to accept cookies from and block everything else. Both Moz and IE seem to have this backwards

    4. Re:Better cookie viewing before accept/refuse by Replicant7 · · Score: 1

      There is a bug on this already. You may wish to spend some votes here:

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

  124. get a better computer, cockmaster by Anonymous Coward · · Score: 0

    besides, theres a "quick start" option that leaves it in the tray, 0 wait time for the browser to load.

  125. Re:Better and Better by anthony_baxter · · Score: 1
    Internet privacy zones.
    How does this let me block images from particular sites?

    - Mozilla is Open Source
    Zealots aside, why is this better? Have you modified any of the source code? Have you contributed?
    Yes, and yes. When you hit a bug you can go hunting - it came in between this and that date, and so check the CVS logs, and then to the individual checkins.

    Not just that, but the bug lists and feature lists are nearly all public too - so you can see how a bug is progressing, and see when/if it's likely to be addressed. And if it's not, you can talk to the responsible people and make a case for it to be fixed. This is _absolutely_ _completely_ impossible to do with MS. For all MS's bitching about people releasing security exploits, it still seems to be the only way to actually get them to fix them.

  126. Why I still read Slashdot by Anonymous Coward · · Score: 0

    I never noticed the Thumbnail menu item...Slashdot may be pretty lame sometimes, but every month or so you will see a vital piece of information that makes up for all Katz, all trolls, all flames.

  127. Re:Me4 by GypC · · Score: 1

    I though I was the only one with this strange habit. We need a name for this compulsive behavior. "Selectivitis?"

  128. Lovely... by Anonymous Coward · · Score: 0

    I'm sure your Microsoft experience doesn't need FTP anyway.

  129. Re:Better and Better by yatest5 · · Score: 1

    Again, can your mother do that

    Was getting a little tired of this argument, so just thought I'd stick my oar in. My mother can't install Linux, so maybe we should dump that as well?

    Or could it be that maybe we shouldn't have to design for the lowest common denominator - i.e. your momma ;-).

    --
    • Mod parent up! [a] by Anonymous Coward (Score:5) Thurs, June 31, @13:37
  130. opera is also gay by Anonymous Coward · · Score: 0

    only fag0tz would support opera

  131. Re:Better and Better by Stary · · Score: 1

    Agreed. But if you look at the discussion as in "mozilla doesnt do this, but IE does", then I would say that mozilla gets a point there... regardless of the other software examples you could figure out.

    --
    Tomorrow will be cancelled due to lack of interest
  132. using IT now by Anonymous Coward · · Score: 0

    very sleek. NO payper liesense scam. NO intrusive information sucking. NO funnelling feechurns. VERY fast. that's IT.

  133. Re:Me4 by Smoking · · Score: 1

    holy shit:
    when reading your post I just selected the word "selectivitis"...
    It seems it's even contagious...

  134. Mozilla 0.9.3 with hotmail by totierne · · Score: 0, Offtopic

    It looks like one has to jimmy the useragent field to get Mozilla 0.9.3 working with hotmail. Being lazy I switch back to Netscape 4.7 . Is this a microsoft plot or is my paranoia misplaced..

  135. Middle click by Mandrias · · Score: 1

    If you middle click on a tab, that will close it also... I find it very useful.

    --
    Use the Z-modem protocol between Information Superhighway routers to compress the plaintext. ~LordOfYourPants
  136. Re:Better and Better by damiam · · Score: 1
    There are actually two ways to do it. You can say:

    user_pref("capability.policy.default.Window.open", "noAccess");

    which disables all Javascript popups, or you can say:

    user_pref("dom.disable_open_during_load", true);

    which disables opening windows on page open and close.
    Both of these examples are from the excellent Mozilla Customization page.

    --
    It's hard to be religious when certain people are never incinerated by bolts of lightning.
  137. Why does Galeon still req full Mozilla install? by PRR · · Score: 2, Informative

    I use Mozilla with KDE, and haven't used Gnome for nearly a year. At the time Galeon required you to have a full Mozilla install - this was because of the licensing of some of the main Gecko components. Supposedly the licensing was changed, and word was that Galeon would no longer require a full Mozilla install because it could just ship with the few Gecko components it needed. However, I notice on the Galeon site it still requires a full Mozilla install - was the component license issue never resolved? What's up? (not a flame, just curious)

  138. Re:Me5 by Gutzalpus · · Score: 1

    I've also got this habit. Everyone always gives me weird looks when they see me reading web pages and selecting paragraphs for no apparent reason.

  139. Thank you! by jonabbey · · Score: 1

    Already done: Highlight the URL you want in some other application and then middle-click in a blank spot on any Mozilla page. You can even set this up to open a new tab with the tabbed browser by going to the new tab preferences under 'Navigator'.

    Not knowing how to do that has been my number one complaint about Mozilla lately. Thanks!

    1. Re:Thank you! by DahGhostfacedFiddlah · · Score: 1

      Mine too - I was wondering what the middle mouse button was doing sometimes when it would sometimes bring me to a seemingly random page.

    2. Re:Thank you! by jonabbey · · Score: 1

      Ahhhh, right! That's what's been driving me crazy.

      Now that I think of it, I really wish they would just support middle-clicking in the address widget, or enable the 'paste' menu option like IE does.

  140. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    Gecko is unusable on my Timex Sinclair. The main problem is memory swapping. Swapping to tape is SLOWWWWWWWW. I also hate having to change tapes every few minutes.

    The Mozilla website recommends at least 64K RAM upgrade, but unfortunately, at $100 per 4K RAM expansion, it would be cheaper to by a C64. Apparently, even the C64 port has problems too.

    Come on Mozilla. Get your RAM usage under control!

    ;-)

  141. Re::-( / Uninstall by Anonymous Coward · · Score: 0

    Huh?
    I have 0.9.2 -> 0.9.6 installed concurrently in different directories with no problems at all.

  142. Tabbed browsing vs MDI by EditDroid · · Score: 2, Interesting

    This has puzzled me... Why are people raving about tabbed interfaces, while at the same time ridiculing MDI? Aren't they, for all practical purposes, the same thing?

    1. Re:Tabbed browsing vs MDI by Explo · · Score: 2, Interesting

      This has puzzled me... Why are people raving about tabbed interfaces, while at the same time ridiculing MDI? Aren't they, for all practical purposes, the same thing?


      With MDI applications everything tends to be inside the one master window. For me, the difference between tabs in Mozilla and typical MDI applications is that you can freely mix and match the approaches between one window with everything (MDI) and N windows with one specific thing (SDI). For example, when at work, you can keep your work search engine queries ("what the hell this isolated parameter meant in tc command syntax") in one window tabbed and have another window with more leisure-spirited (eg. slashdot and friends) material tabbed inside, possibly even keeping the windows in different virtual desktops. Or whatever is your ideal preference between pure MDI and SDI (or either extreme, if you wish so).

      --
      Everyone who makes generalizations should be shot.
  143. Tabbed browsing by InodoroPereyra · · Score: 1
    The tabbed browsing is almost up to galeon-level, though the speed is still slow, and its missing an (X) to close individual tabs. Use ctrl-w to close tabs in the meantime. This feature is quickly becoming my favorite.

    I am running the RedHat 7.* RPMS. There actually IS an (X) to close tabs. It is at the right end of the TAB bar. It closes the active tab.

    To configure tab browsing:
    Edit -> Preferences -> Navigator -> Tabbed browsing

    It is a nice feature. It is much faster to open a new tab rather than a new window.

    -- Don Inodoro

  144. on the whole by anlprb · · Score: 1

    I use Mozilla at work (Win) and at home (Mandrake) I have been using it since milestone 12. I think I still have the tarball around somewhere. I am very impressed with how far the browser has come. I do have the key to stopping Mozilla in its track when executed. DevX.com. Try going to this link with Mozilla and see what I mean. The animated GIF support is still kind of a pain. Other than that, When I got a reliable HTTPS connection in Mozilla, and did not have to compile PSM separately, I was as happy as a pig in slop. Don't get me wrong, I love the Moz.
    http://www.devx.com/free/newsletters/hotlinks/2001 /HL111901.htm
    By the way, this is not a shameless plug, I am in no way associated with devx, I just happen to use them every once in a while.

    --

    One Token Ring to Rule them All, One Search Engine to Find Them, One WAN to bring them in, and TCP/IP Bind them...
    1. Re:on the whole by RGRistroph · · Score: 1

      I just went to devx.com and the longer link you offered with no problem. It's an ugly site, with lots of colors and ads, but it loaded up just fine.

      I'm not even using 9.6, I'm using build 200111109, a couple of weeks old.

    2. Re:on the whole by anlprb · · Score: 1

      the problem is not that it loads, but that when you try and scroll, the CPU spikes to 100 for forever and a day. try actually scrolling the site, and see what i mean

      --

      One Token Ring to Rule them All, One Search Engine to Find Them, One WAN to bring them in, and TCP/IP Bind them...
  145. Re:Better and Better by Anonymous Coward · · Score: 0

    come on. two years of delay, and it still isnt up to the quality of the competition... how is that a good thing? If anything, it proves the shortcomings of open source of dealing with feature creep and quality of final product.

  146. That's strange.... by Anonymous Coward · · Score: 0

    Can you explain why Mozilla loads within 20 seconds, and renders Slashdot's front page within 5 seconds, on my old Pentium 166?

    1. Re:That's strange.... by Anonymous Coward · · Score: 0

      Because you're probably not loading it from tape and using a 300 baud modem.

  147. It's probably the X-server by MongooseCN · · Score: 2

    Moz for linux has to push every request and event through the Xserver which is sloooow. Windows on the other hand has no clue about user space and lets every application have direct access to all the hardware it wants. Much faster buch much less secure.

    1. Re:It's probably the X-server by Eugene+O'Neil · · Score: 1

      The X server is quite capable of doing things much faster than the human eye can follow. Even the non-accellerated "put image" method, the slowest and least efficient operation in X windows, can be used to implement semi-decent animation. We are talking about delays measured in milliseconds at most.

      If an X application is slow, that is the application's fault.

  148. Re:Mozilla is a great browser if... by Dr.+Evil · · Score: 2

    Internet Explorer 5 still runs on a 386 with Windows 3.1 and 8 MB of RAM. Slow yes, but quite usable, and think about what the Internet used to be when such machines were common... Animated Gif's were cool and high-tech.

    Odd that it is MORE usable than Mozilla under Linux on a P200 w. 48MB of RAM. Unless of course you open more than one window... then the 386 just can't deal with the RAM requirements. The Mozilla machine can open at least two or three before it drives the swap too hard.

    I really hope they get the memory usage down. I don't think it will be THAT important for long. RAM is cheap and systems are getting faster, but no matter how you look at it Internet Explorer or even Netscape 4 is far more lean.

    I have a feeling that Mozilla is not out to compete with those browsers though... it is out to set a new standard... it just looks like a browser.

  149. Re:good job mozilla... - Not in release notes by Tim+Macinta · · Score: 2
    on every first page visit to a site it requests favicon.ico

    Take a look at the release notes for 0.9.6. They say that to define an icon for a page you need to use the <LINK REL="icon"> tag in your document and I don't see anything that would indicate that Mozilla will be requesting icons automatically as you have implied. To me, it sounds like Mozilla will only request an icon if the page defines the <LINK> tag (which would indicate that's what the author intended) or if the user bookmarks a page (coming in 0.9.7). That seems like a pretty non-intrusive way to handle things and doesn't sound like it will skew stats at all.

  150. Re:Better and Better by Anonymous Coward · · Score: 0

    > I never found an option to prevent getting
    > passed off to MS on a DNS lookup failure

    Tools > Internet Options > Advanced > Search from the address bar = Do not search from the address bar

  151. Imagine.... by sebol · · Score: 2, Funny

    Imagine if IE change it version number to IE 0.9.7 just to compete with mozilla

    --
    -- Hasbullah bin Pit (sebol)
  152. dhtml is worthless in mozilla by sh0rtie · · Score: 3, Informative

    Sorry but after installing mozilla and doing some performance tests with dhtml, mozilla is about 70% slower than IE6 (p4 1g ram winXP) even in simple animations making practical dhtml worthless in it and flash seems more attractive by the day as this isnt dependant on a slow javascript and rendering engine, which would be a shame.

    Load time isnt even an issue as its so slow even when its loaded.

    Javascript to plugin communication still doesnt work out of the box (contrary to what the moz site says) at least ns4 supported it.

    standards support is meaningless as no-one supports them , making it more of an "ideal" than a standard.

    quote : "standards are great because there are so many to choose from"

    i don't think m$ has anything to fear from mozilla in its current state, at least not in this decade :p

    1. Re:dhtml is worthless in mozilla by Anonymous Coward · · Score: 0

      "Sorry but after installing mozilla and doing some performance tests with dhtml [sourceforge.net], "

      It's a known bug that mozilla sucks when viewing dhtml. Currently there are 24 (known) different bugs causing this.

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

      "Javascript to plugin communication still doesnt work out of the box (contrary to what the moz site says) at least ns4 supported it. "

      Where does the moz site say that? Liveconnect, which I believe you are talking about, works with Java applets but not JavaScript. The reason why is because Netscape 4 had it's own propriatary java engine. Now you can plugin any java engine and they can't control live connect. New plugins are supposed to be made using xpcom so they essentially become part of the program and you have far more control. Unfortunatly, the popular plugin companies don't seem to want to make one.

    2. Re:dhtml is worthless in mozilla by roca · · Score: 2

      > It's a known bug that mozilla sucks when viewing
      > dhtml.

      That's a bit of an overstatement. Tons of complex DHTML works fine. Some of the major remaining DHTML bugs are being fixed (e.g., "Cannot modify contents of dynamically created IFRAME" was just fixed). We'll slowly but surely track down the rest.

      Believe it or not, Mozilla is faster than IE for some DOM operations. Of course you don't see bugzilla reports about those :-).

  153. Re:Better and Better by Anonymous Coward · · Score: 0
    And if it's not, you can talk to the responsible people and make a case for it to be fixed. This is _absolutely_ _completely_ impossible to do with MS. For all MS's bitching about people releasing security exploits, it still seems to be the only way to actually get them to fix them.


    In IE, go to Help > Send Feedback.

  154. Re:Better and Better by Jucius+Maximus · · Score: 2
    "Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?"

    I try. I am not a coder to begin with but I frequent bugzilla and have at least one non-duplicate bug submitted.

    "- You can disable Mozilla's JS window.open() A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window? "

    If you disable it correctly, it only disables during page load and unload.

    "Which slows down the quick alt+tab everyone uses to switch between browser windows... "

    I can live with that. It's better than having 8-10 browser windows open and not knowing exactly which one you're trying to alt-tab to.

    "- Mozilla doesn't redirect you to MSN (or AOL for that matter) and spill your privacy for all to see"

    I have blocked off the relevant msn domain in my hosts, but you are right on this one. But IE's behaviour defaults to an insecure mode which troubles me.

    "More ramblings from a zealot. I'm sure the IE programmers care about IE. They just dont feel the need to sit around and pat each other on the back in public message boards. "

    Uhm. I was iffy about putting that line in there in the first place ...

    "Internet privacy zones. From your top menu in IE6: tools -> internet options -> privacy -> click the edit button. Yep, it works in IE on a site by site basis."

    Like I'm going to load IE6 which has the set of WinXP core technologies.

    "Just like IE6 (which hasnt ever crashed on me, even though I use it roughly 14 hours a day, 7 days a week, for the past few months) "

    Damn man. I was about to put "you need to get a life" but that would make me no better than the flamers. If you spend > 50% of your day surfing ... well ... it sounds unhealthy to me.

    "More ramblings from a zealot. "
    Correction: "More ramblings from a karma whore ..." I have paid. ;-) There original thread is now at zero.

  155. Re:good job mozilla... - Not in release notes by smack_attack · · Score: 1

    It asks for it regardless of whether is declared or not.

  156. Re:Me6 by Diclophis · · Score: 1

    Not sure why i do it, but i do it everywhere.. the desktop around icons, when i am in windows explorer i end up randomly selecting files by window... very strange... i typically start from the bottom right and goto the upper left.. which way do you people go?

    -Jon

  157. turbo by mattdm · · Score: 2

    Use the turbo feature, Mozilla loads faster than IE.

    What this does, by the way, is preload most of Mozilla when your system starts -- which is exactly what IE does to make it appear to start so quickly.

  158. Emperical test - original statement is not true by Tim+Macinta · · Score: 2
    It asks for it regardless of whether is declared or not.

    Repeating this will not make it true. Your statement goes squarely against what the Mozilla release notes imply. So, thinking that maybe this is undocumented or implemented improperly I decided to test it out for myself. I tested it by using Mozilla 0.9.6 to look at my local copy of Apache (http://192.168.55.111/ for me) which does not have any pages with the necessary <LINK> tag. The results? There were no requests for favicon.ico as you have stated that there should be. Please indicate where you are getting your information from that Mozilla always loads favicon.ico because this contridicts both the Mozilla release notes and direct testing. Here are all my log entries from today (note the lack of ".ico" files):

    192.168.55.111 - - [21/Nov/2001:09:44:05 -0500] "GET / HTTP/1.1" 200 4716 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/back.gif HTTP/1.1" 200 216 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/blank.gif HTTP/1.1" 200 148 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/folder.gif HTTP/1.1" 200 225 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/unknown.gif HTTP/1.1" 200 245 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/tar.gif HTTP/1.1" 200 219 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"
    192.168.55.111 - - [21/Nov/2001:09:44:06 -0500] "GET /icons/text.gif HTTP/1.1" 200 229 "http://192.168.55.111/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120"

    1. Re:Emperical test - original statement is not true by smack_attack · · Score: 2

      This guy explained it better than I could, and had more insight to the nightly builds. I'll just assume that someone overlooked this in the nightly build that I have 2001112003.

      I don't know why it would be different in the nightly than it is in 0.9.6, but I am not claiming this as fact simply to be belligerent.

      chicago.national-net.com - - 21/Nov/2001:11:23:09 -0500] "GET / HTTP/1.1" 200 826 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.6+) Gecko/20011120"
      chicago.national-net.com - - 21/Nov/2001:11:23:10 -0500] "GET /favicon.ico HTTP/1.1" 404 217 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.6+) Gecko/20011120"
      chicago.national-net.com - - 21/Nov/2001:11:23:10 -0500] "GET /images/logo.png HTTP/1.1" 200 11437 "http://www.gurucode.com/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.6+) Gecko/20011120"

  159. Re:Better and Better by drsquare · · Score: 2, Insightful

    Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?

    No, but I know that there won't be any backdoors or trojans in there. Can you say the same about closed-source? No, you can't.

    - You can disable Mozilla's JS window.open()
    A nice feature, true, but what happens when you go to click on a "help" icon and it can't open a new window?


    Then enable it for that site only. Can this be done in IE? No. IE is shit.

    - Mozilla has tabbled browsing
    Which slows down the quick alt+tab everyone uses to switch between browser windows...


    Have you ever heard of "Ctrl+tab"?

    - Mozilla doesn't redirect you to MSN (or AOL for that matter) and spill your privacy for all to see

    Nor does IE, if you configure it correctly.


    You mean you actually have to delve into the slow, complex configuration just to stop it automatically sending you to sites you don't want to go to? Wow, I never realised IE was this bad.

    - Mozilla has a development team that cares about the end product
    More ramblings from a zealot. I'm sure the IE programmers care about IE. They just dont feel the need to sit around and pat each other on the back in public message boards.


    In that case, why is IE so bare and featureless compared to Opera, Mozilla, Galeon etc? Why does it provide such a basic, lacking browsing experience? Does it even have tabbed windows?

    - Mozilla has site-specific image and cookie management
    Internet privacy zones. From your top menu in IE6: tools -> internet options -> privacy -> click the edit button. Yep, it works in IE on a site by site basis.


    Unfortuanetly, IE's configation is slow and confusing. It really is the worst browser out there. With Galeon, I can turn off javascript via a single menu. With IE I'd be delving into countless menus and windows, trying to find elusive checkboxes.

    When will you idiots realise that IE is literally the worst browser out there? Even Netscape is better.

  160. Depends on the version by lkolesza · · Score: 2, Informative

    The current daily builds 0.9.6+ do ask for /favicon.ico by default. The released 0.9.6 build does not.

  161. Re:Better and Better by drsquare · · Score: 1

    Can your mother install Windows? No, so fuck off.

  162. Re: "X" to close tabs by cnladd · · Score: 1

    There is an "X" to close individual tabs. It's not on the tab itself, however. Instead, it's the "X" in the upper-right corner of the browser window, just above the scroll bar and below the logo. This "X" will close the currently active tab.

    I agree that the "X" may be better placed on the tab itself, that way you don't have to switch to another tab to make it active, then close the tab. But, this way works well and it makes the tab feature that much cooler. :)

    --

    --
    Welcome to the land of the easily amused...

  163. Woohoo by Anonymous Coward · · Score: 0

    Three hurrays for Mozilla.

  164. rpm -Uvh mozilla*.... by thedeacon · · Score: 1

    What should happen?

    I should be running mozilla 0.9.6 right? Nope! Thanks to Galeon's dependancy on the older mozilla. In the words of Cartman "son of a bitch!". So, Red Hat 72ers...I guess we will have to go the compile route.

    any suggestions

    --the deacon

    --
    the deacon...that's all you need to know for now
    1. Re:rpm -Uvh mozilla*.... by mnordstr · · Score: 1

      I have RedHat 7.2:

      rpm -Uvh mozilla-*.rpm
      Preparing... [100%]
      1:mozilla [ 16%]
      2:mozilla-chat [ 33%]
      3:mozilla-devel [ 50%]
      4:mozilla-js-debugger [ 66%]
      5:mozilla-mail [ 83%]
      6:mozilla-psm [100%]

    2. Re:rpm -Uvh mozilla*.... by Anonymous Coward · · Score: 0

      The galeon RPMs have a version-dependency on
      0.9.5 at the moment (maybe that should have been
      ">= 0.9.5", which I believe you can do with
      RPM dependencies).

      Three solutions to getting mozilla 0.9.6 RPMs
      installed on system that also has galeon:

      1. Uninstall galeon, then install mozilla RPMs.
      Unfortunately, you can't re-install galeon,
      so if you like to run both, you're stuck.

      2. Wait for the 0.9.6-dependent galeon RPMs
      to come out (surely due in the next week or
      so I'd have thought).

      3. Build galeon from source and keep your
      fingers crossed (will also need mozilla
      source).

      I'd suggest 1 or 2 myself...

    3. Re:rpm -Uvh mozilla*.... by lal · · Score: 2

      I have 7.2 with mozilla and galeon. I installed the mozilla 0.9.6 (--nodeps) and galeon segfaults. So it looks like the latest galeon binary is not compatible with 0.9.6 which is pretty much the way it always works with galeon and mozilla.

    4. Re:rpm -Uvh mozilla*.... by Lu1g1 · · Score: 1

      Well. I asked Redhat support about this problem. They said that they will provide arrata upgrade to mozilla 0.9.6 and galeon. So we just have to wait.

    5. Re:rpm -Uvh mozilla*.... by thedeacon · · Score: 1

      Well, I removed the version of galeon that came with RH 7.2 and upgraded Mozilla. Lo and behold, galeon 1.0 is out. So, I downloaded it and installed it after Mozilla. It's all gravy like Thanksgiving dinner thus far.

      the deacon

      --
      the deacon...that's all you need to know for now
  165. Windows Icon by javacowboy · · Score: 1

    When will they replace the Mozilla icon in Windows with the lizard that they use in Linux? What *IS* the Windows icon supposed to be, anyway?

    --
    This space left intentionally blank.
    1. Re:Windows Icon by Anonymous Coward · · Score: 0

      A seamonkey. Mozilla SeaMonkey. I agree though - swap it for the beast!

  166. Re:Mozilla is a great browser if... by roca · · Score: 2

    Google for the "Mozilla user agent toolbar"

  167. Re:Open Source=Unbloated/Sleek Software? by Anonymous Coward · · Score: 0

    Yeah this is the same company that said that Win95 would run on a 386 with 8 MB of RAM.

  168. Mozilla and Secure IMAP by Anonymous Coward · · Score: 0


    Is anyone out there using Mozilla Mail with secure IMAP ? Do they have this down to a stable state ?

    1. Re:Mozilla and Secure IMAP by Anonymous Coward · · Score: 0

      Yes, yes they do.

  169. What is this tabbed browsing thing? by Robotech_Master · · Score: 2

    At the risk of seeming a little stupid...how do I use this tabbed browsing feature? Mozilla 9.6 still looks the same as any other Mozilla; I hit control-N and a new window pops up--I don't see any tabs anywhere.

    Is there some configuration option I forgot to set?

    --
    Editor Emeritus and Senior Writer, TeleRead.org
    1. Re:What is this tabbed browsing thing? by gorgon · · Score: 2
      Is there some configuration option I forgot to set?
      Look in Preferences|Navigator|Tabbed Browsing.
      --

      And I'd be a Libertarian, if they weren't all a bunch of tax-dodging professional whiners.
      Berke Breathed
    2. Re:What is this tabbed browsing thing? by Fnkmaster · · Score: 3, Informative

      Try right-clicking on any link. The context menu that pops up has an option for opening a new tab. Likewise, right click on the newly appeared tabs and you can close them.

    3. Re:What is this tabbed browsing thing? by Zulfiya · · Score: 2
      At the risk of seeming a little stupid...how do I use this tabbed browsing feature? Mozilla 9.6 still looks the same as any other Mozilla; I hit control-N and a new window pops up--I don't see any tabs anywhere.


      Try control-T instead.

      Or File -> New -> Navigator Tab

      -S
      --
      -- I'm not evil, I'm ... differently motivated!
    4. Re:What is this tabbed browsing thing? by Robotech_Master · · Score: 2

      Thanks for the responses. One more possibly stupid question...is there a keyboard shortcut, like Control Tab, to switch between tabs without having to take my hands off the keyboard? Or is there a way to configure one?

      --
      Editor Emeritus and Senior Writer, TeleRead.org
    5. Re:What is this tabbed browsing thing? by Elfshadow · · Score: 1

      Try Ctrl+PageUp/PageDown - switches between tabs
      if you aren't unlucky guy :)

  170. Any way to disable that feature? by Anonymous Coward · · Score: 0

    I use the middle button to open links in a new window, and when I accidentally click a blank spot I end up with some random text from my clipboard in the address bar. Can this feature be turned off?

    Konqueror has a clear button beside the address bar, which seems like a better solution. You can also right-click on the address bar and select "empty contents". It shouldn't be too hard for Mozilla to implement something like this.

    1. Re:Any way to disable that feature? by Tadu · · Score: 1
      I use the middle button to open links in a new window, and when I accidentally click a blank spot I end up with some random text from my clipboard in the address bar. Can this feature be turned off?
      Konqueror has a clear button beside the address bar, which seems like a better solution. You can also right-click on the address bar and select "empty contents". It shouldn't be too hard for Mozilla to implement something like this.

      Unfortunately, Konqueror supports the middle-click as well. Very annoying. Middle-clicking on the clear button to insert clipboard would be nice, as well as beeing able to move links onto it (since eg the image plugin won't recognize them).

  171. Re:Build Options - Warning by Time+Doctor · · Score: 1

    After playing around with a couple different compiles,
    ac_add_options --disable-shared
    ac_add_options --enable-static,
    seemed to disable something that allowed plugins to work properly, at least flash, anyway.
    Instead of playing the many flash files I have stored on my local apache, moz popped up a dialog asking if I wanted to download them...
    Now on my forth build I will definately be leaving those two out configure options.
    Thanks for the other suggestions however, I was unaware you could pass gcc flags to
    --enable-optimize

    --
    Check out ioquake3.org for a great, free, First-Person Shooter engine!
  172. OT: Taliban Retreat by rpk · · Score: 0, Offtopic

    The problem with the Taliban's "head for the hills" strategy (if indeed it is a strategy) is that they have no support from the population and they will be not supplied anybody from inside or outside the country. The big difference between now and the Soviet occupation is that the CIA and Pakistan were happy to supply the mujahedin with what they needed. Where are the Taliban's supplies going to come from ?

  173. Re:Better and Better by Anonymous Coward · · Score: 0

    Just my $.02 on why Mozilla is better:
    - Mozilla is Open Source

    Zealots aside, why is this better? Have you modified any of the source code? Have you contributed? Have you searched through it to make sure there are no back doors that mail out your keystrokes? Or are you karma whoring?


    You are in error if you think that I personally have to change the code for there to be an advantage to Free Software. No. Anyone can make improvements to the code for the greater public good. That is a good thing. This is only feasible and possible because the code is available. Instead of having to write from scratch, anyone can begin where anyone else left off. And after this is done, I can look through the code personally, but I don't have to because, once again, the code is available and someone will look through the code and someone will improve upon the code. In the end, what you are left with is a Free software product formed and reviewed by the ingeniuity of all willing programmers in the public for the greater good of all the community.

    There are MANY subtle advantages to a concept as simple as sharing. Micro$oft knows this very well, and, like the devil, they will attempt to deceive the gullible in their pursuit of financial gain and control of both the industry and the public. Hence their campaign of propaganda against Free Software in general and Linux in particular.

  174. Roaming Access by Orp · · Score: 1

    is the one feature that Netscape has (and Mozilla does not) that is keeping me from switching to Mozilla.

    Orp

    --
    A squid eating dough in a polyethylene bag is fast and bulbous, got me?
  175. slow speed? try galeon/k-meleon by David+Jao · · Score: 1
    I use Galeon on my k6-266 with 128 MB of ram, and I find that on this machine Galeon / RedHat 7.2 is faster than IE / Windows 2000 in every respect--including load time, user interface, rendering, and page navigation.

    For links, see this post.

  176. Re:Better and Better by yatest5 · · Score: 1

    Er, exactly, fuckard. The point is, the fact that anyone's mum can't do anything is irrelevant.

    Plus only the most fervent Linux-loving Windows-blind idiot (see mirror for details) would argue that any distribution of Linux was anything like as easy to install and set up as Windows.

    --
    • Mod parent up! [a] by Anonymous Coward (Score:5) Thurs, June 31, @13:37
  177. tabbing really is better than separate windows by David+Jao · · Score: 2
    Which slows down the quick alt+tab everyone uses to switch between browser windows...

    Try Ctrl-PgUp/PgDn to switch between tabs. Yes this is configurable.

    Personally I actually prefer a separate key command to switch between tabs because then I have an easy way to switch pages without interference from other windows that aren't browsers.

  178. Re:Better and Better by Anonymous Coward · · Score: 0

    > Zealots aside, why is this better? Have you
    > modified any of the source code? Have you
    > contributed? Have you searched through it to make
    > sure there are no back doors that mail out your
    > keystrokes? Or are you karma whoring?

    Trolling aside, why is open source a bad this? I don't know about you, but I like the fact that I can compile it and thus the possibility to customize it.

    > Which limit's its use on heavily scripted,
    > harmless, usefull sites. True, it saves you
    > from mailicious porn webmasters who want to
    > install their dialer programs, but that's not a
    > problem if you know how to set up your internet
    > security zones on IE.

    Have you ever seen any *usefull* websites that use ActiveX, except Windows Update? I don't, they all use Java because it's portable.ActiveX is definitely *not* portable, thus will prevent Mozilla from being cross-platform.

    > A nice feature, true, but what happens when you
    > go to click on a "help" icon and it can't open
    > a new window?
    That's why popups are only stopped when the page is still loading.

    > Which slows down the quick alt+tab everyone
    > uses to switch between browser windows...

    But gain more speed, save memory usage, and doesn't clutter your taskbar.Really, how much time do you save by using Alt+Tab?
    2 or 3 seconds *at most* even when you're a beginner.

    > Which is again nice, but means nothing if
    > developers dont make their sites for standards,
    > which they dont ....

    But it does mean something when developers *do* follow the standard.
    Really, how many sites do you know that are 100% HTML 4.0 incompatible and incompatible with other standards?
    I can view Slashdot using Mozilla just fine.
    I can view 99.9% of the "MSIE optimized sites" just fine.
    Heck, I can even view Microsoft.com!

    > Nor does IE, if you configure it correctly.

    As you're saying, if you *configure* it correctly.
    How many newbies dare to touch the configuration dialog?I know a lot of people who don't want to see MSN.com, but almost none of them have the courage to configure it because they're afraid they'll break something.

    > More ramblings from a zealot. I'm sure the IE
    > programmers care about IE. They just dont feel
    > the need to sit around and pat each other on
    > the back in public message boards.
    Great, more clueless trolling.
    If the IE developers don't have time to visit public message boards, then they can create a "Send feature request" form or something.
    But they don't; in fact, they don't even accept bug reports!

    > Internet privacy zones. From your top menu in
    > IE6: tools -> internet options -> privacy ->
    > click the edit button. Yep, it works in IE on a
    > site by site basis.
    That's nowhere near as advanced as Mozilla's.And the last time I tried it, it doesn't work at all.

    Sure, you Microsoft zealots all complain about how Linux and Mozilla are bad and how Microsoft rules, but remember that *a lot* of people don't agree with you, whatever you say.

  179. Re:Mozilla is a great browser if... by WowTIP · · Score: 1

    Ok, then maybe you should try this browser instead.

    Yes, I saw the sarcasm there. But seriously, why shouldn't you be able to run a browser on a relatively "modern" computer?

    --

    --

    "I'm surfin the dead zone
    In the twilight, unknown"
  180. 0.9.6 looks good but... by secs · · Score: 1
    For milestones 0.9.7 and 0.9.8, the focus is on performace enhancingment, and stability of the Mail/News end of the suite. And boy, is it getting good..."



    I just installed 0.9.6, opened up the messenger program, and what did i hear.. the outlook mail sound. uuuugggh... who ever implemeted that should be shot.

    1. Re:0.9.6 looks good but... by tempfile · · Score: 1

      Wild guess: Perhaps Moz on Windows uses Windows' default "Mail notification" sound, which is what Outlook uses as well. Try to change that and see what happens.

  181. Mozilla and NS 6.2 interchangable? by Grock · · Score: 1

    I've been using NS 6.2 and it works ok..with a few
    annoying bugs. Can I run NS 6.2 and Moz interchangeably, as in mail/news/preferences changes by Moz will be seen by NS 6.2 and visa-versa?

    Thanks,
    Ben

    1. Re:Mozilla and NS 6.2 interchangable? by sconest · · Score: 1

      They are...more or less... but it is not advised to do so.

      --
      Guvf vf abg n EBG zrffntr
  182. Mozilla vs. Netscape 4.7x by Super+Grover · · Score: 1

    It seems to me, from my experience with Mozilla, that after 4 years and starting from scratch, it has nearly reached the quality and usability of Netscape 4.7x. I have yet to see any really major feature enhancements (besides tabbed browsing and support for multiple mixed - IMAP, POP3 - email accounts) that would prompt me to replace IE with it as my or my company's default browser or replace Netscape 4.7x as our default email client. And it is still too darn slow!

    I desperately want to replace IE - please give me a reason to believe!

    --
    Salsa Shark. We're gonna need a bigger boat.
    1. Re:Mozilla vs. Netscape 4.7x by zericm · · Score: 2, Informative

      It seems to me, from my experience with Mozilla, that after 4 years and starting from scratch, it has nearly reached the quality and usability of Netscape 4.7x. I have yet to see any really major feature enhancements (besides tabbed browsing and support for multiple mixed - IMAP, POP3 - email accounts) that would prompt me to replace IE with it as my or my company's default browser or replace Netscape 4.7x as our default email client. And it is still too darn slow!

      I've had IE5, Netscape 4.7x and Mozilla on my desktop for almost two years now. IE is our corporate standard, so I only use it when forced by certain web pages. Until the middle of this year, Netscape was my day-to-day browser. I would load a Mozilla nightly or milestone on a regular basis, but found that it was a bit too buggy and unstable to meet my needs. I was waiting for the day when Mozilla was ready.

      That day came in early August with the release of 0.9.3. Ever since, I've been using a version of Mozilla as my default browser, with no problems. Sites that are "optimized" for IE load just fine, and I grit my teeth when I have to go back to Netscape (regression testing, dont' you know). In fact, I've been so damn pleased that I decided to skip 0.9.5, wait for 0.9.6 (downloading right now) and continue running a nightly instead (20010928-09-trunk, to be exact). Sure, there were bug fixes, feature enahancements and performance imporvements that I didn't get, but what I'm running right now worked great. When you skip an application upgrade because you don't see the need, then you have a good appliction on your hands.

      Mozilla is a good application that I'm going to push as our new corporate standard.

      eric

      --
      The welfare of the people has always been the alibi of tyrants. - Albert Camus
  183. Aargh! Old versoin now. by Matt · · Score: 1
    This just got uploaded to Debian-testing (woody) yesterday:

    Package: mozilla-browser
    Priority: optional
    Section: non-US
    Installed-Size: 23956
    Maintainer: Takuo KITAME <kitame@northeye.org>
    Architecture: i386
    Source: mozilla
    Version: 2:0.9.5-5

    That replaced M18. Just when I thought Debian finally got a modern version...

  184. Other Apps by Vapor · · Score: 1

    The thing I like most about Mozilla and what is coming from the development team isn't the browser (although it is really nice IMHO). I like XUL, and Gecko, and all the other neat little parts in it. I mean there is Galleon and Komodo which are two really cool apps based on the technology. I have thought about using XUL and maybe even Gecko in a game as the engine for the user interface and help system. The browser is great, but I think the ideas, API's, tools, and what not coming out of the whole thing are the most impressive part. Eh, My .02

  185. there is a x for closing tabs by bendawg · · Score: 1

    over on the far right

  186. Re:Better and Better by Anonymous Coward · · Score: 0

    IE crashing: you might want to check for spyware on your system. The only time I've ever had problems with IE stability was when some app sneaked some spyware in. There's a good spyware remover available at www.lavasoftusa.com

    Versions 5 and up of IE no longer run in the same process as explorer.exe (the shell) so an IE crash will not take anything with it (again, excepting the effects of obnoxious spysoft - some of which overwrite system DLLs).

    Another potential option you might like to try is finding the 'fixie.inf' file in your program files\internet explorer folder. Right click and select install. That'll make sure that DLL versions are correct and restore any registry keys that have been damaged, prbably requiring a reboot.

  187. Closing tabs by Rupert · · Score: 1, Troll

    I find that I use the RLR mouse gesture almost every time I want to close a tab.

    DULR (think "T") to open a new tab is sweet, too. I just wish I had a 3 button mouse so I could use the "drag over the link" gestures.

    --

    --
    E_NOSIG
  188. Low end, alternate platform browsing (~OT) by saintlupus · · Score: 2

    I realize that this isn't specifically related to the Mozilla release, but it seems somewhat germane to the topic.

    I've got an old Sparc IPC workstation running OpenBSD that I'm playing around with right now. Does anyone know of a decent, lightweight browser that I can compile and use on this platform? I'd prefer not to install Netscape, both because of the closed source and because I'd have to compile SUNOS compatability into my kernel for one stinking app.

    I don't need Flash or anything like that, just something barebones that I can read static pages on.

    (And yes, Lynx is already installed, but I do sort of like graphics.)

    --saint

  189. Re:Better and Better by Platinum+Dragon · · Score: 1

    My mother can't install Linux, so maybe we should dump that as well?

    Sure. If it's too difficult, she should either find someone who knows how to set it up, or just find something simpler.

    Mozilla is available for Windows; I hope you remembered that. And, my parents have actually successfully installed NS 6.1.

    Point being, software writers, when trying to make a dumbed-down, easy-to-use product (such as IE), shouldn't leave those same users hanging when it comes to concepts they may not even be aware of, such as security and privacy. The business about cookies and images is excusable, simply bebause so many sites throw cookies at the user these days, although quietly routing a user through your own servers for tracking purposes is a bit squirrelly. But allowing non-users to install software, invisibly, without the user's knowledge? That's downright negligent.

    --

    Someday, you're going to die. Get over it.
  190. Multiple start pages by wessto · · Score: 1

    I'm waiting until it supports setting multiple tabs as your "start" page. Then it will be awesome. Launch the browser and have all the pages you normally visit first thing in the morning all loaded up and ready to go!

  191. I confess... by laserjet · · Score: 2

    I confess, I have selectivitus too. I have been selecting (highlighting) test as I read in web browesers for as long as I remember. I thought I was the only person who did this. I think it helps me remember where I am in the page, despite the negative color shifting. Band together, selectors!

    --
    Moon Macrosystems. Sun's biggest competitor.
    1. Re:I confess... by Tackhead · · Score: 2
      > I confess, I have selectivitus too. I have been selecting (highlighting) test as I read in web browesers for as long as I remember. I thought I was the only person who did this. I think it helps me remember where I am in the page, despite the negative color shifting. Band together, selectors!

      Another selector speaks!

      Me? I started when I realized I no longer needed to load images - 90% of the graphics were crap, or banners, or both.

      So when some d00f decides to code his web page as all-white text on an all-white background, with a black .GIF as a background image, I just select the text, and voila, I can read.

      Even now that I've Junkbustered-out all the banners, surfing without graphics and selecting the text still beats wasting time for 20 "spacer.gif" "upperleftroundedcorner.gif", "upperrightroundedcorner.gif" and similar files to get DNS lookups and download.

  192. Thrashing bug by Anonymous Coward · · Score: 0

    I can visit any other site out there and browse along happily, but when I load Slashdot, it starts to load, Mozilla thrashes the disk for a good 45 seconds (it's not swapping), gains about 10 megs, and then Slashdot shows up. This has happened since about 0.9.3 under Windows 2000, what gives?

    1. Re:Thrashing bug by xah · · Score: 1

      This doesn't happen to most users. Try uninstalling Mozilla and deleting all its leftover files. Then install a fresh copy of 0.9.6. You might also scan your hard disk for plugin directories. Maybe you have some old or buggy plugins.

      --
      I am not a lawyer. Do not take my words as legal advice. If you need legal advice, consult an attorney.
  193. I switched back to 0.9.4 by mrm677 · · Score: 1

    I'm back to Mozilla 0.9.4 because the Mail application has some changes I don't like. For example, in the message preview, extra headers are shown that I don't care about. This limits how much of the actual mail message I see. I have not found a settings change to correct it. They also added a search bar to the top of the message list.

    1. Re:I switched back to 0.9.4 by Anonymous Coward · · Score: 0

      Duh, turn it off. View > Show/Hide > Search Bar

  194. Still memory pig? by WyldOne · · Score: 1

    given that 9.5 uses about 3X more memory than netscape, I can't afford that on my work PC. It was slow, resourse intensive, and when I try to hit the case mod section of HardOCP the thing drive thrashes my PC to a crawl. Sorry but until they deal with the bloat, I'm not interested.

    --

    make Linux, not Microsoft. sin(beast) = -0.809016994374947424102293417182819
  195. congrats, you're stupid by Anonymous Coward · · Score: 0

    yes, essentially, that's what they were focused on, because they were trying to make it work first before making it work well.

  196. please file a bug report by xah · · Score: 1

    Please file a bug with http://bugzilla.mozilla.org/ . This sounds like a memory leak as other posters have described. If so, it should be fixed before 1.0.

    --
    I am not a lawyer. Do not take my words as legal advice. If you need legal advice, consult an attorney.
    1. Re:please file a bug report by Anonymous Coward · · Score: 0

      Yeah, but does the memory leak occur in Mozilla or Win98? My bet is on the latter.

  197. Re:Mozilla is a great browser if... by MaufTarkie · · Score: 1

    I have no problem running the nightlies on my VIC-20. Here's my current browser id string:

    "Mozilla/5.0 (GEOS; U; VIC-20 6502; en-US; rv:0.9.6+) Gecko/20011119"

    Perhaps you need more memory?

    --
    Without you I'm one step closer to happiness without violence.
  198. Re:Mozilla is a great browser if... by Anonymous Coward · · Score: 0

    Hey, howz it going in Afghanistan?

  199. You fucking bible thumpers are all alike.. by Anonymous Coward · · Score: 0

    You think you're better than everyone else because you think you've found god.

    Go fuck yourself. Satan and the flames of hell will be licking your BALLS for your indignance...

    Remember - SATAN and SANTA are the SAME LETTERS... :-O

  200. could be a rogue plugin by xah · · Score: 1
    Please file this as a bug with http://bugzilla.mozilla.org/ .

    In the meantime, here is a hint for your troubleshooting procedure. Look for "rogue plug-ins." Go to *all* of your Netscape 4.x, Netscape 6.x, and Mozilla binary directories. Look for "plugins" subdirectories. Mozilla seems to use plugins from all of these directories, which can be problematic. Get rid of plugin files that are out of date or questionable.

    Here's a story. I was having major problems with crashing. Mozilla hung frequently. Mozilla would crash sometimes with an error report. Sometimes I would get a crash error report, but Mozilla wouldn't actually crash. I could move the report window out of the way and continue browsing indefinitely. Then I got rid of my old Quicktime Plugins, and out of date Java plugins from my Netscape 4x plugins subdirectory. Now Mozilla is rock solid stable. No hangs and no crashes so far. Just an anecdote.

    One more note. Update your JRE if you haven't done so lately.

    --
    I am not a lawyer. Do not take my words as legal advice. If you need legal advice, consult an attorney.
  201. its not slow, use the turbo feature by HanzoSan · · Score: 2


    Then mozilla is as fast as IE. I admit some parts of the code are slower because its not a native app, but they are working on speed right now. It should eventually be just as fast.

    --
    If you use Linux, please help development of Autopac
  202. Mail and news...why? by closedpegasus · · Score: 1
    Why do browsers bundle mail and news software? Aren't we past the days when every application had to be the "one stop shop" for everything internet related? If I download a browser, I want something that I can view web pages with...period.

    There are plenty of free mail and news readers out there, if mozilla would just concentrate on the browser side of things, wouldn't that speed development?

  203. Re: Polling Newservers by stu42j · · Score: 1

    I've had that same problem with it trying to access the news servers when my cable modem is down. The best solution I have found is to keep it 'closed'. You know, click the little arrow thingy?

  204. Lets see by HanzoSan · · Score: 2



    Opera doesnt support even half the standards of Mozilla.

    Opera doesnt have an email app.

    Opera doesnt have spell checking, composer.

    Opera doesnt have very good bookmarking.

    Opera doesnt have good security features.

    Opera doesnt have password auto complete, form complete etc.

    Opera may have tabbed browsing but so does everything else.

    Opera doesnt have themes.

    Opera doesnt support MathML.

    Opera to me is at the level of Netscape 3x

    Its a slim downed browser, compareable to other slim browsers, but not to something like Mozilla.

    Opera has built in ICQ but so what, Mozilla is owned by AOL and will always has the best built in ICQ and AOL support so lets not go here.

    MOzilla has built in AOL, opera does not. MOzilla has built in jabber support so you can load ICQ, MSN, AOL, Yahoo, etc.

    MOzilla has a full functioning news reader, Email Client, Composer, Spell checker, IRC chat, Address book features, Multiple Language support, Themes, Security features, Full plugin support, Java support, XML support, XUL support.

    Opera is more compareable to konq for linux, or kmeleon for windows than to Mozilla.

    Mozilla beats it feature for feature, standard for standard.

    --
    If you use Linux, please help development of Autopac
    1. Re:Lets see by Tackhead · · Score: 2
      > Opera doesnt have good security features.
      > Opera doesnt have password auto complete, form complete etc.

      Consistency is the hobgoglin of small minds, no?

  205. yawn.... by Anonymous Coward · · Score: 0

    Wake me when they get to a 1.0 release. These announcements for each beta are getting frigging old.

  206. glad someone mentioned Opera's new release. by Anonymous Coward · · Score: 0

    IT would seem to me that anything that encourages
    people to not use IE is a good thing.
    Maybe not as much as a good thing as getting off
    Windows entirely and using the Linux browser of your choice, but an improvement, none the less.
    Accordingly, Opera should get more coverage on /. but
    sadly the slashdot powers that be appear to think
    otherwise.
    Maybe when Opera 6.0 final comes out, /. will deign
    to give it some bits.

  207. Replace new window with open tab by joeykiller · · Score: 1

    Is it any way I can make CTRL+N (open new window) open a tab instead of a new window?

    I love the tabbed feature, and would like it to replace new window altogether.

    1. Re:Replace new window with open tab by Todd+Knarr · · Score: 2

      Use Ctrl-T (open new tab)? Seriously, I can understand wanting to replace a mouse click that would open a new window with one that'd open a new tab, but a command keystroke? No, if I tell it deliberately I want to open a new window I want it to do what I told it, not do something else. There's a way to rebind the menu accelerator keystrokes, but frankly I'd prefer to leave them the way they are and just use the proper keystroke.

  208. Wow -- a place where Lynx wins out! by devphil · · Score: 3, Informative
    * Ability to bring up my $EDITOR when typing in a textarea

    Go figure. Who would have thought that Mozilla users would be asking for a feature that Lynx has had for years. :-)

    This is one of many reasons why I keep Lynx around: when I'm using a web interface to a bug-tracking system, and I want to, say, paste some code in to the "explanation" textarea before I close the report, I can just pop into my $EDITOR.

    I don't know of any other *nix browser which lets me do this (but I haven't looked very hard).

    --
    You cannot apply a technological solution to a sociological problem. (Edwards' Law)
  209. Dillo by Anonymous Coward · · Score: 0

    Check out Dillo. Its a small graphical browser that does the basics. I run it on a xfce desktop and its fast. dillo.sourceforge.net

    Have fun!

  210. try GeekZilla by BroadbandBradley · · Score: 2

    from Mozilla or NS6.x click the link to get an early "mockup-preview" of my new XUL application Geekzilla everything a geek needs in one place!!!
    GeekZilla

  211. This is NOT XML by evilviper · · Score: 2

    This is not XML, HTML renders should handle bad code. Netscape 4.x does this with no problems. If it finds something written badly, or that it doesn't understand, it ignores it and still has no problem rendering the rest of the page correctly. Now why is that too much to ask from Moz?

    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    1. Re:This is NOT XML by Anonymous Coward · · Score: 0
      Netscape 4.x does this with no problems. If it finds something written badly, or that it doesn't understand, it ignores it and still has no problem rendering the rest of the page correctly.

      *me laughing my ass off* Seriously? I've never seen that happen with n4.xx!

  212. the troll got me. by Anonymous Coward · · Score: 0

    First off, Mozilla is not owned by AOL or anyone.
    Netscape is owned by AOL.

    Obviously, Opera is not better than Mozilla on
    every feature. There are some things about Mozilla that _are_ better than Opera.
    Having said that ,many of your opinions on Opera are wildly overstated.

    "Opera doesnt have an email app."

    Wrong.

    "Opera is more compareable to konq for linux,"
    Nothing wrong with that. Konq has a lot of fans.

    ".. or kmeleon for windows than to Mozilla."

    Pure Bombast. I have used both. Please be serious. (for the record , I like K-Meleon and
    wish them well)It is coming along nicely.

    "Opera to me is at the level of Netscape 3x"

    Trolling is the kindest thing that can be said
    of this comment.

    "Opera is about 3 years behind Mozilla so dont even mention Opera. Opera isnt nearly as powerful, Opera is a light weight browser thats nothing special, its something anyone could have written up in a year or two."

    I would like to believe that you are a only
    practising the Troll's art.

    "Mozilla beats it feature for feature, standard for standard"
    On some, for sure , but all.?

    PBS = please be serious or pure bull shit.
    take your pick.

    I can't even navigate Netscape Bookmarks with
    the keyboard.

    I like Moz and wish it all the success in the
    world. If you are going to slam another browser
    stick to the facts.

  213. Mozilla 0.9.6 is not applying stylesheets to UTF-8 by mawis · · Score: 1

    It seems that the new version of Mozilla is not applying stylesheets to html files that are encoded in UTF-8. (But the stylesheet gets loaded.) If you want to try it: http://future.matthias-wimmer.de/charset/.

  214. gqview by Anonymous Coward · · Score: 0

    gqview works well for this on unix.

  215. Re: HTML re-writing proxy (Was: These are the days by wickline · · Score: 1

    you don't need to re-write packets on the fly. You need to re-write entire HTML pages (individual packets probably won't give you enough context to properly apply your regex).

    You need an http proxy server.

    Search for the word proxy on:
    http://web.stonehenge.com/merlyn/WebTechniques/
    for a couple of samples, or write your own.

    -matt

  216. Hot Dog I'm Hooked by dozing · · Score: 1

    Everytime slashdot has posted a major Mozilla release I've downloaded it and given it a whirl. I've been waiting impatiently to leave Netscape 4.7x in the dust and finally use a new browser (and forget about IE with all those nasty security flaws.) Unfortunatley, everytime I've used Mozilla in the past it wasn't quite up to my standards. I'm happy to say that this time I'm finally switching to Mozilla. Thanks to all the wonderfull developers who have made this possible.

    --
    Dozings.com -- Its kinda funny... If you're as crazy as me.
  217. page icons! by jejones · · Score: 2

    The page icons are quite cute, though I was disappointed in one respect...I went to www.microsoft.com, and the page icon wasn't Bill Gates as Borg. Can I correct this?

  218. Re:Better and Better by b0r1s · · Score: 1

    But they don't; in fact, they don't even accept bug reports!

    They absolutely do ... I'm convinced that IE6 is as stable as it is because IE5.5 had the option to send in core dumps every time it crashed (with a privacy pop-up first making sure you WANTED to send it in) .... yep, I'd call that a sufficient bug report ...

    Also, if you click the "help" tab, then "send feedback report", .... yep, that's for bug reporting too...

    --
    Mooniacs for iOS and Android
  219. Middle-click tabs by carpe_noctem · · Score: 1

    The tabs are by far one of the best features of Mozilla, since 0.9.5. It would be significantly cooler if one could map the middle click button to open to a new tab (rather than a new full-size window, as it currently does). Anyone out there have a hack to make it do this?

    --
    "Quoting famous computer scientists out of context is the root of all evil (or at least most of it) in programming." - K
    1. Re:Middle-click tabs by Anonymous Coward · · Score: 0

      It's already implemented. Go the Edit-->preferences
      and under 'Navigotor --> 'Tabbed Browsing' there is a radio button where you can map the middle click to open to a new tab.

      By the way, check out the Optimoz project (mouse gestures for navigating). It works very well.

  220. find in page doesn't work! by Anonymous Coward · · Score: 0

    ok, am I a moron? find in page never works for me in Mozilla. Am I missing something obvious? Shouldn't this just be a given for a browser thats about to reach 1.0?

  221. Mozilla is shit... by Anonymous Coward · · Score: 0

    ...end of story.

  222. Couldn't agree more... by linuxjack55 · · Score: 1

    Each build is getting worse, instead of better.

    --
    The trouble with practical jokes is that very often they get elected. -- Will Rogers
  223. performance on Windows is better than IE6 by porky_pig_jr · · Score: 1

    I have fairly low-end PC dedicated for Win98 (Pentium III, 128MB). Somehow I've found performance of IE6 (compared with IE5) is seriosly degraded. Have no idea why. So I have finally bit the bullet and started using Mozilla for the most of the time. Boy, it REALLY makes the difference. No longer annoying waits.


    By using Mozilla most of the time, we can help the developers by discovering and reporting bugs. (I've found a few and reported every one of them. At least one of them should have been fixed, I haven't check it yet). It is outstanding browser, as compared with IE6. I did try to use Opera but it is very unstable, keeps crashing, so I give up on it. Mozilla - not a single crash for over a week - and I've used it extensively.

  224. More silly browser wars? by hkmwbz · · Score: 1
    I hope you realize that by doing a "feature by feature" comparison, you can make any product appear to stand out from the others, by selecting the features carefully. I can tell you why Pong is a better game than Quake 3, for example: Pong has a bouncing ball, Quake 3 does not. Pong is easy to get into, Quake 3 is not, etc. etc. Anyway, I want to respond to some of your points anyway.

    - "Opera doesnt support even half the standards of Mozilla."

    Is that so? I would like to see a list of these standards.

    - "Opera doesnt have an email app."

    Yes it does, actually. Not that I use it - I have already found my favourite e-mail client - "The Bat!". I don't think these features belong in a web browser anyway. Luckily, it does not slow down Opera.

    - "Opera doesnt have spell checking, composer."

    This is correct. However, what is the use of a spell checker if it does not have an e-mail client (as you falsely state above)?

    - "Opera doesnt have very good bookmarking.

    "Not very good bookmarking"... Wow, that says a lot. I find it to be excellent, though. The Hotlist is a powerful tool when you want to organize your bookmarks. Matter of opinion, I guess. Have you even tried Opera (see false comments above)?

    - "Opera doesnt have good security features."

    That depends on what "good security features" is supposed to mean. It sounds like you don't even know what you mean yourself.

    - "Opera doesnt have password auto complete, form complete etc."

    Yes, it can auto-complete forms.

    - "Opera may have tabbed browsing but so does everything else."

    Good attempt to minimize a great feature in Opera. Opera has "tabbed browsing", and does it better than any application. In fact, you can choose between full MDI and enhanced SDI.

    - "Opera doesnt have themes."

    Yes it does. Skins and button sets can be customized any way you want.

    - "Opera doesnt support MathML."

    True. But so what?

    - "Opera to me is at the level of Netscape 3x Its a slim downed browser, compareable to other slim browsers, but not to something like Mozilla. Opera has built in ICQ but so what, Mozilla is owned by AOL and will always has the best built in ICQ and AOL support so lets not go here."

    Useless, empty statements. If you are going to bash Opera (or any browser), at least go for its weaknesses, and don't think up a random list of things you know little or nothing about.

    - "MOzilla has built in AOL, opera does not."

    Thank God for that :)

    - "MOzilla has a full functioning news reader, Email Client"

    Opera's got both.

    - "Composer, Spell checker, IRC chat,"

    True, but I have no use for these things.

    - "Address book features, Multiple Language support, Themes, Security features, Full plugin support, Java support, XML support"

    WRONG. Opera supports all of these. Oh, and you mentioned themes and these vague "security features" of yours again. And Opera has support for LiveConnect (communication between JavaScript and plugins/Java), which Mozilla does not, due to its changed plugin interface.

    - "XUL support. Opera is more compareable to konq for linux, or kmeleon for windows than to Mozilla. Mozilla beats it feature for feature, standard for standard."

    I beg to differ. You carefully selected features. Sadly, you don't quite seem to know what you are talking about. It sounds like you haven't even used Opera.

    --
    Clever signature text goes here.
    1. Re:More silly browser wars? by steemonk · · Score: 1

      - - "Opera doesnt support even half the standards of Mozilla."
      - Is that so? I would like to see a list of these standards.


      How about CSS1 and CSS2. Mozilla has the best support of CSS1, while having partial support of CSS2. Opera has partial support of CSS1. (IE has broken support of CSS1 and broken partial support of CSS2).

      - - "Opera to me is at the level of Netscape 3x Its a slim downed browser, compareable to other slim browsers, but not to something like Mozilla.
      Opera has built in ICQ but so what, Mozilla is owned by AOL and will always has the best built in ICQ and AOL support so lets not go here."


      Mozilla is not "owned" by AOL. Mozilla also does not have ICQ and AOL support.

      - - "MOzilla has built in AOL, opera does not."

      Mozilla does not have built in AOL.

      - - "Composer, Spell checker, IRC chat,"
      - True, but I have no use for these things.


      Wysiwyg HTML editors are not useful. Mozilla does not have a spell checker. IRC chat is a good thing, but it is not used by most people.

      A few notes: Opera supports themes, but not nearly to the extent that Mozilla does (Opera supports skins, not themes). Opera is much faster than Mozilla. Opera has a GUI-based method to lie in the UA string. Mozilla has better standards support. Mozilla is FREE in more than one way. Opera is not.

    2. Re:More silly browser wars? by hkmwbz · · Score: 1
      - "How about CSS1 and CSS2. Mozilla has the best support of CSS1, while having partial support of CSS2. Opera has partial support of CSS1. (IE has broken support of CSS1 and broken partial support of CSS2)."

      Correction - Opera supports all of CSS1. Opera also has just about complete CSS2 support with a few exceptions, like limited styling of form elements, aural CSS (Opera is a visual browser), as well as a couple of other things.

      Opera is one of the browsers with the best CSS support. Mozilla and Opera both do CSS far better than any version of IE anyway.

      But claiming that Opera does not support CSS1 completely (which it does 100%) and not CSS2 at all (which it almost does completely), is wrong. Just FYI :)

      -"Mozilla does not have built in AOL."

      And who needs AOL anyway? 8)

      Apart from that, I agree with your points. I don't like WYSIWYG editors either, and Opera needs better support for themes (which will come soon, AFAIK). And yes, Opera costs money and isn't free as in speech either, which is probably an important point to some.

      --
      Clever signature text goes here.
  225. Re:Aargh! Old versoin now. by tempfile · · Score: 2, Informative

    Have you tried getting/making patches for 0.9.5->0.9.6, fetching Debian source and making your own 0.9.6? I've found the Debian mozilla packages rather slow to update, so that's probably what I'll do to get to 0.9.6, if it's feasible without pain.

  226. Here are two excellent Opera Links. by Anonymous Coward · · Score: 0

    http://browserwatch.internet.com/news/stories2001/ news-20011119-1.html

    http://www.searchengineworld.com/opera/

  227. Bullets bug .. by Anonymous Coward · · Score: 0

    It will be the greatest browser if only they could fix the bug http://bugzilla.mozilla.org/show_bug.cgi?id=91816

    Shoot the bullets ...

  228. Favorite thing I saw when seeking new Mozilla by Karl+Cocknozzle · · Score: 1

    Direct quote from the downloads page for the new 0.9.6 release...

    We do not guarantee that any source code or executable code available from the mozilla.org domain is Year 2000 compliant.

    Does this mean I have to set my clock to 197x again?

    When does the Mac OS X build come out? Every time there's a milestone build they instantly post the OS9 version, and several days later we see the OS X build. It seems logical to me to reverse this if possibble.

    A lot of will get iBooks this fall and christmas, pre-loaded with OS X. Many people buy Macs because they don't like the quality of Microsft software, and they will seek out products like Mozilla. It would make sense then to set our best foot forward.

    How do you build the concept of project management into an open-source project? How do you get volunteers to focus their work? The Salvation Army gives ranks and has a formal heirarchy...Maybe it's time...Can I be a Captain of TCP/IP?

    --
    Who did what now?
  229. Even worse than the old one by Anonymous Coward · · Score: 0

    I use Linux. Just crashes on me all the time. When will this crap finally die?

  230. Opera beta does most of Unicode by Anonymous Coward · · Score: 0

    It doesn't yet render RtoL scripts or complex alphabets properly, but it does nicely with Chinese, Japanese, and Korean, and all European/Cyrillic/Greek/Former Soviet U. alphabets. They want to get BiDi going, you can bet.

  231. Has Unicode, too by Anonymous Coward · · Score: 0

    Does nicely with all the European and "Southwest Asian" languages, as well as Chinese, Japanese, and Korean. No BiDi yet, but they are by no means forgetting that. No fancy alphabets like those of India, yet.

  232. Possibly X server performance by Anonymous Coward · · Score: 0

    Make sure you are running the right accelerated X server and make sure you have MTRR support enabled. And make sure your graphics card/chip has a good accelerated X server. Even then, if you are using a PCI card rather than AGP, or an AT card (if so, throw it out now), you will probably see worse performance because most XFree86-based X servers won't put large (>256x256) pixmaps in graphics memory. Mozilla renders everything in an off-screen pixmap and then copies the pixmap to the screen to do double buffering. The copy step can be slow if it has to go over the bus, especially if MTRR isn't set up right. (Windows display drivers set up MTRR.)

  233. Lo-Fi Classic Skin for 0.9.6 by Anonymous Coward · · Score: 0

    HERE 's a kind of simple skin. Use it if you like.

  234. Re:Better and Better by Anonymous Coward · · Score: 0

    I use it roughly 14 hours a day, 7 days a week

    Stop surfing pr0n and do some fucking work.

  235. Simplified Classic Skin for 0.9.6 by Gashu · · Score: 1

    Here's a simplified classic skin(Lo-Fi Classic Skin) for mozilla0.9.6.
    For the people who miss themes.org...
    gashu.org/mozilla

  236. It won't run on my computer! by Newer+Guy · · Score: 1

    It locks up every time! I'm uninstalling and going back to .95......

  237. Bug fixes! by patrikr · · Score: 1

    More important than the new features to me is that Opera 6.0beta1 is MUCH more stable than 5.12 was. 6.0 final is gonna rock... :)

    --
    All Glory To The Hypnotoad!