See also abbreviations for commonly used Nightingale-related abbreviations.
An add-on is a module that add a feature or a skin to Nightingale. Add-ons are downloadable from our add-ons page. One add-on have an .xpi file extension.
Stand for Application Programming Interface
Nightingale have both Add-ons API and Webpage API (Same compatibility with Songbird)
The place all messages are collected while running Nightingale, can be accessed via the tools menu.
Unfortunately there is no easy way to copy the error console's content. If you get asked to post stuff from the error console, one quick way is evaluating the following gibberish (paste into the field above the log messages, then hit evaluate):
var cs=Components. classes["@mozilla.org/consoleservice;1"]. getService(Components. interfaces. nsIConsoleService); var l={cs:cs, s:"", observe:function(aMessage){this. s+=aMessage. message; if(aMessage. message=='[[[[[LOG:END]]]]]'){alert(this. s); this. cs. unregisterListener(this); }this. s+="\n-------------------------------------------------------------------------------\n"}, show:function(){alert(this. s); }, QueryInterface:function(iid){if(!iid. equals(Components. interfaces. nsIConsoleListener)&&!iid. equals(Components. interfaces. nsISupports)){throw Components. results. NS_ERROR_NO_INTERFACE; }return this; }}; cs. registerListener(l); var consoleService = Components. classes["@mozilla.org/consoleservice;1"]. getService(Components. interfaces. nsIConsoleService); consoleService. logStringMessage('[[[[[LOG:START]]]]]')
Then do something triggering the messages you want to record, and evaluate the following after that:
var consoleService = Components. classes["@mozilla.org/consoleservice;1"]. getService(Components. interfaces. nsIConsoleService); consoleService. logStringMessage('[[[[[LOG:END]]]]]')
A (long) dialog should pop up, but in contrast to the error console you should be able to select everything with ctrl-a and then hit ctrl-c to copy it to clipbord. You can then for example Pastebin it to help other users to understand and fix your issue.
Stands for Nightingale developer tools.
≠ Firefox DevTools ;)
A feather is a skin add-on for Nightingale. The default feather is called "Coppery". Feather are composed by XUL, CSS and PNG files.
An add-ons hosting platform developed in PHP. It's still in development.
See code-source : https://github.com/nightingale-media-player/featherweight
We call firstrun the process when you launch Nightingale for the first time (in fact with a new fresh profile). During this “firstrun” you can choose your language, some add-ons and also the path to look for songs.
Gecko is a free and open source layout engine used in Nightingale and Firefox.
GitHub (short: gh) is a web-based hosting service for software development projects that use the Git revision control system. The Nightingale project is hosted on GitHub :
GStreamer is the back-end library that handle playback of songs and videos.
Stand for Internet Relay Chat. We are using IRC for instant discussions between developers, contributors and users. Check out our IRC infos.
Stand for Internationalization, similar to L10N.
A jar file is basically a zip file in Nightingale, it contains files from the application.
You can compile Nightingale without files being compressed in jar files. See development.
This represent Nightingale version for 32-bits processors.
i686 refers to the P6 microarchitecture (the sixth generation Intel x86 microarchitecture)
Stand for Localization, more information on Nightingale localization here.
Stands for Language pack, usually an xpi file which is downloaded at the firstrun of Nightingale matching your Operating system locale. Other langpacks can be downloaded in the File menu.
Stands for Mozilla ARchive, Mar is a format used by the Mozilla update system to deliver update packages. See updates and https://wiki.mozilla.org/Software_Update:MAR
Stands for Mass-Storage Class. (Accessing files from an USB devices in the classic way)
Stand for Media Transfert Protocol. Developed by Microsoft. (Accessing files from a software layer)
A nightly build is a version of the software compiled every night with latest changes.
Pioneers of the Inevitable, original company who started Songbird development.
http://www.crunchbase.com/company/pioneers-of-the-inevitable
RDF files (Resource Description Framework) are XML files.
For Nightingale it's used as add-ons install files.
A Repository is a central location to store source code. It is most likely managed using a source management system like Git. Nightingale's source repository is on GitHub
TagLib is the library that handle metadata tags of songs.
This represent 64-bits processors (compatible with 32-bits)
More information about x86_64 here.
Stands for Extensible Markup Language.
XPInstall (Cross-Platform Install) is a technology used by XUL-based applications for installing Mozilla extensions that add functionality to the main application.
Stands for XML User Interface Language.
It's used to make create User Interfaces for Nightingale. The language is similiar to HTML, however it focusses on native UI elements.
XULRunner is a runtime environment developed by the Mozilla Foundation to provide a common back-end for XUL-based applications.
Nightingale is based on XULRunner.