about.xul

Summary

A simple dialog which gives some information about Mozile.

Version: 0.7.0

Author: James A. Overton


<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="widgets.css" type="text/css"?>

<!--
/* ***** BEGIN LICENSE BLOCK *****
 * Licensed under Version: MPL 1.1/GPL 2.0/LGPL 2.1
 * Full Terms at http://mozile.mozdev.org/license.html
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is Playsophy code (www.playsophy.com).
 *
 * The Initial Developer of the Original Code is Playsophy
 * Portions created by the Initial Developer are Copyright (C) 2002-2003
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *	James A. Overton <james@overton.ca>
 *
 * ***** END LICENSE BLOCK ***** */


/** Mozile About Dialog
 * @fileoverview A simple dialog which gives some information about Mozile.
 * 
 * @link http://mozile.mozdev.org 
 * @author James A. Overton <james@overton.ca>
 * @version 0.7.0
 */

-->

<dialog xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        id="mozile-aboutDialog"
        buttons="accept"
        title="about:Mozile"
        width="400px"
        height="400px"
        onload="document.getElementById('version').value=opener.mozile.version;">

	<hbox class="header">
		<label value="about:Mozile" />
		<spacer flex="1"/>
		<label id="version" value="version?" />
	</hbox>

	<description id="teaser">the WYSIWYG inline editor for Mozilla</description>

    <hbox id="hboxMozdevURI">
        <description>Brought to you by:</description>
        <description id="mozdevURI" class="link" value="http://mozile.mozdev.org" onclick="window.open(this.value)" />
    </hbox>

   	<grid>
   		<columns>
   			<column/>
   			<column/>
   		</columns>
   		<rows>
   			<row>
            	<description id="creditsTitle">Credits:</description>
                <description id="credits">Conor Dowling, James A. Overton, Christian Stocker, 
                Paul Everitt, Max d'Ayala, David Palm, Richard Prescott, Lars Kiilerich, Kingsley Kerse, 
                Andreas Schamberger and others...</description>
   			</row>
   			<row>
		    	<description class="left">Licensed Under:</description>
		    	<description crop="center">MPL 1.1 / GPL 2.0 / LGPL 2.1</description>
   			</row>
   			<row>
		    	<description class="left">Full Terms at:</description>
                <description class="link" value="http://mozile.mozdev.org/license.html" onclick="window.open(this.value)" />
            </row>
        </rows>
    </grid>
    
</dialog>




Documentation generated by JSDoc on Wed Jun 29 22:15:33 2005