Slashdot Mirror


Mozilla 0.9.4 Released

asa writes: "Lots of bug fixes (1,467 at last count) since 0.9.3 including the ability to disable the JavaScript window.open() method during page load and unload events. You can find more information on what's new at the release notes and mozillaZine."

6 of 388 comments (clear)

  1. Wow! by zachlipton · · Score: 3, Informative

    Wow, what a great release! I think that 0.9.3 really is a key step in the right direction for 1.0. See http://www.mozilla.org/roadmap.html for more details on the roadmap and plans for 1.0.

    Also, as a mozilla developer, I would like to thank all those who have joined the project recently and done something to help. Even if you cannot code, there is still lots that you can do. I urge you to download 0.9.4 or even better, a nightly build, and to look at http://www.mozilla.org/start, http://www.mozilla.org/qa/help, and http://www.mozilla.org/get-involved.html. There are many things that you can do to help which will help get 1.0 out the door sooner and better.

  2. How to manage popup windows in the new Mozilla by davidu · · Score: 5, Informative
    Ok folks, here is a really cool feature: The Ability to manage, on a site by site basis, which sites can give you popups and which can't. A very effective way to manage pop up ads. Here's how:

    No POPUPS whatsoever:
    user_pref("capability.policy.default.Window.open", "noAccess");

    But...if some sites need popups, make a zone for them like this:
    user_pref("capability.policy.strict.sites", "http://www.evil.org http://www.annoying.com");
    user_pref("capability.policy.strict.Window.alert", "noAccess");
    user_pref("capability.policy.strict.Window.confirm ", "noAccess");
    user_pref("capability.policy.strict.Window.prompt" , "noAccess");
    ... you get the idea....

    It is very cool, and there is a lot of scripting and other trickery you can do with these prefrences.
    Btw, this is all from: Configurable Security Policies

    -David
    --

    # Hack the planet, it's important.
    1. Re:How to manage popup windows in the new Mozilla by abischof · · Score: 3, Informative

      UI for controlling popups is bug 75371. Feel free to vote for the bug, if that issue is important to you.

      --

      Alex Bischoff
      HTML/CSS coder for hire

    2. Re:How to manage popup windows in the new Mozilla by Spy+Hunter · · Score: 5, Informative
      Actually, what is in Mozilla now is much cooler yet, which is the ability to disable 99.9% of advertising popups while letting 99% of wanted popups through, with no user intervention necessary ! No need to maintain a list of sites that need popups to function. It disables popups during page load and unload, but lets through popups that happen due to an actual mouse click.

      Of course, if this feature ever gets widespread use we'll just see javascript links that open up advertisements in addition to their targets, but that won't happen unless IE gets this feature, which is unlikely. So download Mozilla and free yourself from evil automatic popups!

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  3. Re:Mirror by pete-classic · · Score: 4, Informative

    Why? If they can tamper with the releases, they can tamper with the MD5s.

    For mirrors. You get the MD5 (AFAIR, 128bits, conceiveably double that when including the filename ;-) from the "official" site and use it to verify that the bins on the mirror haven't been altered.

    -Peter

  4. What's new in 0.9.4 by mbrubeck · · Score: 4, Informative
    The difference in 0.9.4 is that you can disable popups on page-load/page-close only. This gets rid of most popup ads, while preserving less-annoying uses of popup windows (unlike 0.9.3).

    See this newsgroup post for details.