Slashdot Mirror


Mozilla Rising ... As A Platform

ceswiedler writes "Salon is running a story about Mozilla's potential dominance as a platform for application development. They discuss the community development centering around Mozilla, and point out that its cross-plaform GUI environment is 'exactly the kind of thing Microsoft was trying to prevent when it launched its war against Netscape. It didn't want Netscape around, because Netscape was becoming a platform.' In what might be a Salon first, they even include a reference to a Slashdot comment by SkyShadow."

21 of 397 comments (clear)

  1. OooO! by scaramush · · Score: 5, Funny

    I wonder if this is Salon's attempt to /. Slashdot for all the times Slashdot has hammered Salon? ;)

    --
    "...you can steal my woman, but you ain't done nuthin' smart."
    1. Re:OooO! by scaramush · · Score: 5, Funny
      Which site has the largest number of zombies reading the articles and clicking on all the links?

      Well, if you'd just said "which site has the largest number of zombies clicking on all the links", I'd would have to have given it to Slashdot.

      But when you throw in that tricky "reading" thing...

      --
      "...you can steal my woman, but you ain't done nuthin' smart."
  2. a slashdot comment... by bashbrotha · · Score: 4, Funny
    ...about a salon article in which a slashdot comment is used. the thought is just funny.

    now only if salon would write an article about the comments posted on slashdot referring to the article on salon that referenced a slashdot comment. than, slashdot would have to post a story about the article on salon about the story on slashdot that arose from an article on salon that featured a slashdot comment...

    sorry, its been a long day.

  3. mozilla as a common library for linux? by Luke+Skyewalker · · Score: 4, Insightful

    it seems that mozilla, as a whole, will evolve into a framework of reusable components that will transcend the browser application itself.

    this will pose to be a problem for microsoft; why bother using microsoft components, which are bound to windows, when i can program across multiple platforms using mozilla components?

    1. Re:mozilla as a common library for linux? by NineNine · · Score: 4, Insightful

      a framework of reusable components that will transcend the browser application itself.

      IE's already there. IE has been there for several years. Hell, I use IE components daily.

      IE's already in place, and it works very, very well, and the components are well documented. I'm seeing *many* shrinkwrap programs coming out now that DO use IE as a framework. Quickbooks Pro 2002, for example, is built on IE.

    2. Re:mozilla as a common library for linux? by 1010011010 · · Score: 5, Insightful


      IE! Ooo... it's sooo cross-platform...

      --
      Napster-to-go says "Fill and refill your compatible MP3 player", which is a lie. It's not MP3. It's WMA with DRM.
    3. Re:mozilla as a common library for linux? by sphealey · · Score: 5, Interesting
      IE's already in place, and it works very, very well, and the components are well documented. I'm seeing *many* shrinkwrap programs coming out now that DO use IE as a framework. Quickbooks Pro 2002, for example, is built on IE.
      What was that quote attributed to Lenin? "The capitalists will sell us the rope we use to hang them"? It amazes me when I see independent software developers build their products on Microsoft tools when Microsoft has already announced their intention to attack that market in the future!

      A good example here is midrange ERP systems. Vendors are embracing Microsoft tools including .Net and IE. Of course, Microsoft acquired Great Plains and has already stated that it plans to "embrace" 90% of the functionality of the ERP products. Yet there the ISVs go, paying for the privilage of using the tools that will make them obsolete.

      It makes Microsoft's statements in the antitrust trial that its competitors were just too stupid to keep up seem more believable.

      sPh

  4. SVG by 4of12 · · Score: 5, Insightful

    My vote is for SVG, even though the current support for it in Mozilla is pretty fragile [YMMV, I'm on 1.1 Linux].

    With full support for SVG, Web applications could really take off in a big way (graphical and not just text interaction) that is unhindered by platform specific nonsense.

    One big hitch though seems to be in rendering quality outline fonts. Everyone would love to have the precision of PostScript for determining exactly where text is located, how far it extends, etc, but there seems to be big players that are nervous about releasing outlines of their fonts and have punted about precise layout of fonts inside SVG, deferring to upper level CSS specifications and what not that permit layout decisions to change when we really need a web layout engine that doesn't change from platform to platform (and is free and open).

    --
    "Provided by the management for your protection."
  5. I wonder if Tim is in on this by adamy · · Score: 4, Informative

    I've been looking forawrd to the Mozilla Programiing book from O'Reilly coming out. According to their web site it is coming out this month. Conspiracy anyone?

    I've played with Mozilla some. Java script with CSS is a powerful way to do UI development. The question is how are we going to build apps that

    1) Havethe install flexibility of a website
    2) Have access to the local hard drive.

    One cool thing about Mozilla is that you can remote an XUL reference just like an html, and it will render. This means that you get a pretty huge toolbox of UI available for anyone browsing using mozilla. One development tactic might me to use a XUL interface for layout, and swap out the javascript file to have different behavoir if you want to process locally or remotely.

    I'd love it if SVG got into the main branch. As I understand it, the reason it hasn't was due to Licensing Issue. The original is under LGPL and GPL, but Mozilla is also licensesd under the MPL. Not sure what the SVG authors view on the MPL is.

    --
    Open Source Identity Management: FreeIPA.org
  6. This reminds me of law of software envelopment by jukal · · Score: 5, Funny
    "But the best part about Mozilla is that it is not just a browser. Scores of developers are now talking about using Mozilla as a "platform" -- that is, using Mozilla's underlying code to build non-browser applications, like calendar programs and e-mail programs"

    Law of Software Envelopment jwz edition
    ``Every program attempts to expand until it can read mail. Those programs which cannot so expand are replaced by ones which can.''

  7. I think a cross-platform GUI is a red herring. by gblues · · Score: 5, Insightful

    Sure, there is initial appeal to having your application look the same on all platforms. Who really wants to write the same application N times? However, cross-platform consistency isn't necessarily a good thing.

    Each platform has its own quirks with how it should behave. For example, menus in Windows are expected to be static (that is, they stay visible after the user releases the mouse button), while Macintosh menus tend to be rubber-band (menu disappears when user releases mouse button). In Windows, a menu action simply happens while on Macintosh, the selected menu item flashes several times.

    I could go on and on with the differences between the Windows and Macintosh platforms (to say nothing of UNIX!). The point is that an application that acts differently from every other program is an application that is harder to learn. Users are forced to keep two sets of expectations, which completely defeats the purpose of using a cross-platform GUI!

    Yes, you can tweak the UI so that it looks more like the host operating system. This is a thin veneer, however, as the emperor's proverbial clothes come into view when the OS theme is changed.

    It makes sense that the UI should be abstracted from the rest of the application, but XUL is not the answer.

    Nathan

    1. Re:I think a cross-platform GUI is a red herring. by Phroggy · · Score: 5, Interesting

      For example, menus in Windows are expected to be static (that is, they stay visible after the user releases the mouse button), while Macintosh menus tend to be rubber-band (menu disappears when user releases mouse button).

      Actually since Mac OS 8, Mac menus behave the same way that Windows menus are supposed to. I say "supposed to" because Windows is a buggy pile of crap.

      Want to see something amusing?

      Open Notepad. Click-and-hold on a menu. Drag down, below the menu, off to the side. Release the mouse. The menu disappears. This is the correct behavior.

      Open an Explorer window. Click-and-hold on the Favorites menu. Drag down, below the menu. Release the mouse. The menu disappears, just like in Notepad.

      Click-and-hold on any other menu within Explorer. Drag down, below the menu. Release the mouse. The menu remains open.

      Explain to me how this behavior can be inconsistent between different menus within the same application? Mozilla's behavior is Bug 32494.

      In Windows, a menu action simply happens while on Macintosh, the selected menu item flashes several times.

      This is Bug 66120.

      Mozilla has multiple versions of the Classic skin, one for each platform. I don't use it. I use the Modern skin, which looks and behaves the same way on all four platforms I use.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
  8. Tutorial here by Cap'n+enigma · · Score: 5, Informative

    If you want to get an idea of what is possible, check out this tutorial.
    http://www.xulplanet.com/tutorials/xult u/

    I played with it about a month back and was amazed at how easy it makes GUI development.

  9. Woo!!! by Skyshadow · · Score: 5, Funny

    This is where I do my little dance and feel special. Salon quotes me, *and* I get an article on the front page! Then I post this OT, worthless post and burn off my karma.

    --
    Every year during my review, I just pray the words "slashdot.org" aren't mentioned.
  10. Mozilla OS=ByzantineOS by ZillaVilla · · Score: 5, Interesting

    there already is a MozillaOS, it's called:
    ByzantineOS it's bare bones Linux with Mozilla and sawfish. Boots and runs from a CDrom without touching the local harddrive. it's small...and I tried it on 2 machines, all I had to do was pick low or high res, get my connection "dhcpcd" , and start the GUI "startx" real slick once it loads you can remove the cd, and when you're done you don't 'shutdown' you just kill the power....and it's FAST.

    --
    ZillaVilla.com for Mozilla profile roaming.
  11. Re:This reminds me of law of software envelopment by Uruk · · Score: 4, Offtopic

    Every program attempts to expand until it can read mail. Those programs which cannot so expand are replaced by ones which can

    Yep, that's one of those quasi-funny computer "laws" that actually has a very disheartening core of truth to it. Of course some programs such as emacs expanded until they could read mail and then kept going :) I think the ultimate stopping point of development on emacs is going to be when the emacs hackers sit down to make improvements in the program, and the program ends up responding, "I wouldn't do that if I were you, Dave"

    Here's another one of those informal computer laws that's ha-ha funny...but serious:

    Greenspun's Tenth Rule of Programming:
    "Any sufficiently complicated C or Fortran program contains an ad-hoc informally-specified bug-ridden slow implementation of half of Common Lisp."

    --
    -- Truth goes out the door when rumor comes innuendo. -- Groucho Marx
  12. Re:Mozilla vs. Netscape by aengblom · · Score: 5, Informative
    Add in pop up blocker to Netscape 7:

    (it exists. I think this is it)

    Download the adblocker.xpi file (Shift+click to download). When you download the adblocker.xpi file in Netscape 7, it will add .txt to the filename (adblocker.xpi.txt). Before saving the file, remove .txt from the filename and save the file to disk. Then in Netscape 7 click File | Open to install.

    In Netscape 7 click Edit | Preferences | Advanced - Scripts & Windows to unselect or select the Open unrequested windows

    --


    So close and yet so far from the world's perfect ID number
  13. Mozilla Web Development by antidigerati · · Score: 4, Interesting

    When the absolute best things going for Mozilla for developers is its array of integrated development tools. Mozilla's DOM Inspector and JavaScript debugger are absolute heaven after coding for IE and MS's poor excuse for a browser development environment.

    The DOM Inspector lets you interactively walk through the DOM of a page viewing each containers attributes and children. You can interactively change values and appearance. You can turn on the 'blink' feature to temporarily 'blink' whatever element you are selecting in the DOM. You can also view all CSS elements on the page and inspect how they are cascading. And lots more. Wow!

    The JavaScript debugger is everything we have come to expect in a 'standard' development environment... but it is for JavaScript. Set breakpoints.. set watches.. step through code.. evaluate javascript in context.. change code on the fly..

    And included in the JavaScript debugger app is JavaScript profiling! Turn it on and play with the page.. then save the results to a number of different formats. You get an excellent breakdown of what code was executed and for how long, how many calls were made, where the execution time was spent etc etc.. just like you would expect from a Profiler. Now I can definitively show how much overhead comes with using DynAPI!

    And all of this built into the browser! I think from the development standpoint alone, it will boost productivity by an order of magnitude. Takes out so much of the guesswork that usually goes along with front-end development.

    I think Microsoft should be afraid. Very afraid. Mozilla is what browsers should have been 5 years ago. I've now switched my development environment to developing under Mozilla and then testing IE later for any quirks. The dev time is radically decreased.

  14. Re:This reminds me of law of software envelopment by William+Tanksley · · Score: 4, Funny

    Greenspun's Tenth Rule of Programming:
    "Any sufficiently complicated C or Fortran program contains an ad-hoc informally-specified bug-ridden slow implementation of half of Common Lisp."


    "Including Common Lisp."

    - Robert Morris

    (I love this one -- I found it on Graham's webpage, you know, the one developing the 'arc' programming language.)

    -Billy

  15. New rating by MongooseCN · · Score: 4, Funny

    Skyshadow:

    Why use Netscape (Score:6, Linked)

    by Skyshadow on Thursday August 29, @02:56PM

    "Why should/would I use Netscape instead of Mozilla? Not getting enough pop-up windows in my life? Feel the need for a more closed solution?"

  16. For inevitable slashdoting by aengblom · · Score: 4, Funny

    Here's the google cache for the Sky Shadow page... oh wait. heh.

    --


    So close and yet so far from the world's perfect ID number