Slashdot Mirror


Microsoft and Nokia Adopt OSS JQuery Framework

soliptic writes "The jQuery blog today announced that 'Both Microsoft and Nokia are taking the major step of adopting jQuery as part of their official application development platform.' So the open-source javascript framework will be shipped with Visual Studio and ASP.NET MVC. Microsoft's Scott Hanselman notes: 'It's Open Source, and we'll use it and ship it via its MIT license, unchanged. If there's changes we want, we'll submit a patch just like anyone else.'" There's also a story at eWeek about the decision.

8 of 126 comments (clear)

  1. Same ol' embrace, extend, extinguish? by Anonymous Coward · · Score: 2, Informative

    Additionally Microsoft will be developing additional controls, or widgets, to run on top of jQuery that will be easily deployable within your .NET applications. jQuery helpers will also be included in the server-side portion of .NET development (in addition to the existing helpers) providing complementary functions to existing ASP.NET AJAX capabilities.

  2. But... by Junta · · Score: 5, Informative

    MIT license is not a source-required license. Companies may sell, close it up, whatever they wish so long as they continue to give credit to the original product.

    --
    XML is like violence. If it doesn't solve the problem, use more.
    1. Re:But... by StrawberryFrog · · Score: 4, Informative

      MIT license is not a source-required license. Companies may sell, close it up, whatever they wish so long as they continue to give credit to the original product.

      And is that relevant? This issue has been addressed:

      Scott Guthrie says:
      "We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch."

      The Scott Hanselman says:
      "It's Open Source, and we'll use it and ship it via its MIT license, unchanged. If there's changes we want, we'll submit a patch just like anyone else."

      --

      My Karma: ran over your Dogma
      StrawberryFrog

  3. Re:Will they by Phil+John · · Score: 3, Informative

    jQuery is designed specifically to be extended, by the programming of plugins. Have a look at their plugin repository.

    I find it highly unlikely that Microsoft would require anything adding to the jQuery core that couldn't be better implemented with a plugin.

    --
    I am NaN
  4. Re:Just makes sense... by Bogtha · · Score: 4, Informative

    jQuery is entirely contained within its own namespace. Multiple versions of jQuery can coexist on the same page, so upgrades wouldn't be a problem, sites could just include the latest version if the version shipped with browsers wasn't suitable.

    --
    Bogtha Bogtha Bogtha
  5. Re:Will they fix it? by Chaos+Incarnate · · Score: 4, Informative

    Said Googling does indeed show that your memory is playing a trick on you; it's Prototype that you're thinking of.

    --
    Benford's Corollary to Clarke's Law: "Any technology distinguishable from magic is insufficiently advanced."
  6. Re:Coincidentally by thelawal · · Score: 3, Informative

    This may provide a reason why the chose jQuery over prototype: http://blog.creonfx.com/javascript/dojo-vs-jquery-vs-mootools-vs-prototype-performance-comparison

  7. Re:Will they by Jellybob · · Score: 3, Informative

    jQuery is the core library, with widgets usually being distributed as independent packages, so it makes complete sense for them to do it this way.

    jQuery's aim isn't to be the source for calendar and date-picker widgets, it's to provide a solid base to build those things on.