Paradigm | Declarative (markup language) |
---|---|
Developer | Mozilla Foundation |
Implementation language | C++ |
Platform | Gecko/Goanna |
OS | Cross-platform |
License | MPL |
Filename extensions | .xul MIME type: application/vnd.mozilla.xul+xml |
Website | https://wiki.mozilla.org/XUL:Home_Page |
Majorimplementations | |
Mozilla | |
Influenced by | |
HTML,XML |
XUL (/ˈzuːl/ZOOL), which stands forXML User Interface Language, is auser interface markup language developed byMozilla. XUL is anXML dialect for writinggraphical user interfaces, enabling developers to write user interface elements in a manner similar toweb pages.
XULapplications rely on the Mozillacodebase or afork of it. The most prominent example is theFirefox web browser. However, Mozilla has significantly reduced the usage of XUL in Firefox after their rewrite of the browser engine in version 57.[1][2] This resulted in the removal of the legacyadd-on system, which relied on XUL andXPCOM, another cross-platform technology Mozilla decided to deprecate shortly before the release of Firefox 57. Firefox originally permitted add-ons to extensively alter its user interface, but this capability was removed in 2017 and replaced with the less-permissiveWebExtensions API.[3][4] Severalforks of Firefox retain support for XUL and XPCOM-based add-ons.Waterfox maintains a fork of the legacy Mozilla codebase for theWaterfox Classic browser.[5] ThePale Moon browser,[6]Basilisk browser,[7]Hyperbola operating system,[8] and numerous smaller projects collectively use and maintain the Unified XUL Platform (UXP) implementation.
XUL was devised atNetscape in 1997 as part of the development effort that eventually became theMozillacodebase.[9] XUL is similar to web technologies implemented by theGecko rendering engine. When XUL was introduced, it added features beyond the then standardHTML 4. It was designed as an extension of HTML to be used with applications rather than documents.[10]
XUL was used by various Mozilla projects,forks of Mozilla projects, and projects closely related to Mozilla. Some software projects such asSongbird,Komodo IDE, andZotero started as desktop applications that utilizedXULRunner to render and compose their UI. In the early 2000s, there was some interest in using XUL by other parties, includingAmazon,[11] but those have switched over toHTML5.[1][2] Many of the features of modern web technologies such as HTML5, CSS3, ECMAScript 5+, WebGL, and WebAssembly that made rich and modern web applications possible, without the need of utilizing legacyNPAPI/PPAPI/ActiveX browser plug-in technologies likeAdobe Flash,Silverlight,Java, orShockwave, also made much of XUL redundant.[10]
Mozilla released Firefox 57, also known as Firefox Quantum, in November 2017. As part of this, Firefox finished transitioning to a multiprocess architecture. Although XUL add-ons could work in this architecture, they often created significant performance issues. Because of this, Mozilla removed support for legacyadd-ons, including the use of custom XUL code.[3][4] Mozilla switched their browser extensions system to the cross-browser WebExtensions API, which is largely based on the Chrome extension API. In late 2017, Firefox still included 289 XUL bindings for native browser components. By the end of 2019, Mozilla had removed all XUL files from theirmozilla-central
repository.[12][1][2]
When Mozilla removed support from Firefox, there were still several applications using XUL. Mozilla began gradually removing XUL support from their email client,Thunderbird. They released Thunderbird 78 without support for XUL-based extensions in 2020.[13]TheSeaMonkey internet suite chose to re-implement XUL for the Firefox Quantum codebase, and the suite's development has subsequently slowed. ThePale Moon developers forked Mozilla's entire Firefox 52 ESR codebase to create the Unified XUL Platform(UXP) for theirGoanna rendering engine. UXP maintains the traditional XUL capabilities.[14] As a result, Pale Moon and other UXP applications have remained single-process but more extensible compared to modern versions of Firefox and Thunderbird.[15]
XUL can only be used with theMozillacodebase (or afork of it) because theGecko (orGoanna)engine does the XUL rendering.[16]
Application programmers need to define a XUL interface as three discrete sets of components:
XUL defines a wide range of elements, which roughly belong to the following types:
The default behavior of XUL widgets can be altered withXBL bindings.
XML Binding Language (XBL) is anXML-basedmarkup language for altering the behavior of a XULwidget, such as ascroll bar.[17][18] An XBL file containsbindings, each of which describes the behavior of a XUL widget. The root element of an XBL file is the<bindings>
element, which contains one or more<binding>
elements. Each<binding>
element declares one binding, which can be attached to any XUL element. It may also possess anid
attribute. A binding is assigned to an element by setting the CSS property-moz-binding
to theURL of the binding's file.[19] For example:
scrollbar{-moz-binding:url('somefile.xml#binding1');}
This example shows three buttons stacked on top of each other in a vertical box container:[20]
<?xml version="1.0"?><?xml-stylesheet href="chrome://global/skin/" type="text/css"?><windowid="vbox example"title="Example 3...."xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"><layout><buttonid="yes1"label="Yes"/><buttonid="no1"label="No"/><buttonid="maybe1"label="Maybe"/></layout></window>
XUL contains a reference to the 1984 filmGhostbusters.[21] The film's antagonist is the fictional deity Zuul, the Gatekeeper.[22] Zuulpossesses the character Dana Barrett and declares: "There is no Dana. There is only Zuul."[23][21] The creators of XUL, pronounced the same as Zuul,[24] made the slogan, "There is no data. There is only XUL!".[25] The slogan and Zuul as a gatekeeper are referenced in XUL'sXML namespaceURI and were previously present in all Firefox add-ons:[21]
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul
— Mozilla[21]
The Mozilla Amazon Browser is an interesting case study for a number of reasons. First, it's a working prototype application, not an example constructed solely for the purpose of demonstrating the technology. Second, it exercises many areas of Mozilla's support for remote development and thus shows off the capabilities, potential, and limitations of remote XUL applications. Finally, it demonstrates Mozilla's support for web services, an important emerging technology for web application development.
The plan is to switch Pale Moon over from our current platform to UXP (long-term plans) because a developed and maintained XUL-based platform is the only way a XUL application (like Pale Moon) has any chance of surviving without falling into obsolescence, with Mozilla abandoning this technology. That has been the main reason why I decided to start on this platform to begin with! Regardless, the platform will not be solely developed for Pale Moon's potential future use, it is developed for any future XUL application that will otherwise be dead in the water. Basically we're taking over the torch from Mozilla in developing and maintaining a platform for XUL applications of any kind; Mozilla should not be seen as "upstream" because it isn't.