2000-01-23 15:40:24 +03:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!-- The contents of this file are subject to the Netscape Public
|
|
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
|
|
except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
|
|
|
|
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 Mozilla Communicator client code, released
|
|
|
|
March 31, 1998.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
|
|
Communications Corporation. Portions created by Netscape are
|
|
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s): Michael Lowe <michael.lowe@bigfoot.com> -->
|
|
|
|
|
2000-04-20 01:42:30 +04:00
|
|
|
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
2000-01-23 15:40:24 +03:00
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
|
2001-05-19 19:54:29 +04:00
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % aboutDTD SYSTEM "chrome://global/locale/about.dtd" >
|
|
|
|
%aboutDTD;
|
|
|
|
]>
|
2000-01-23 15:40:24 +03:00
|
|
|
|
107642 - XUL syntax/cleanup landing. Fixes 94470, 96008, 96019, 76800, 102637, 80399, 108303, and removes over a thousand unnecessary or nonsensical attributes. Also fixes 108302, 102366, 102367, 105815. r=sspitzer,cmanske on appropriate parts sr=ben
2001-11-03 07:17:02 +03:00
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2000-01-23 15:40:24 +03:00
|
|
|
class="dialog"
|
2002-01-11 03:29:06 +03:00
|
|
|
title="&title.label;"
|
|
|
|
onload="aboutStartUp();">
|
|
|
|
|
|
|
|
<script type="application/x-javascript" src="chrome://global/content/about.js"/>
|
2000-01-23 15:40:24 +03:00
|
|
|
|
2001-06-20 09:41:22 +04:00
|
|
|
<keyset id="dialogKeys"/>
|
|
|
|
|
2001-07-09 22:41:07 +04:00
|
|
|
<vbox flex="100%" style="margin: 0.5em;">
|
2000-01-23 15:40:24 +03:00
|
|
|
|
2001-09-23 11:16:02 +04:00
|
|
|
<tabbox flex="100%">
|
2001-04-18 10:59:04 +04:00
|
|
|
<tabs>
|
2001-03-22 03:59:29 +03:00
|
|
|
<tab label="&aboutTab.label;"/>
|
|
|
|
<tab label="&contributorsTab.label;"/>
|
2001-04-18 10:59:04 +04:00
|
|
|
</tabs>
|
2000-01-23 15:40:24 +03:00
|
|
|
|
107642 - XUL syntax/cleanup landing. Fixes 94470, 96008, 96019, 76800, 102637, 80399, 108303, and removes over a thousand unnecessary or nonsensical attributes. Also fixes 108302, 102366, 102367, 105815. r=sspitzer,cmanske on appropriate parts sr=ben
2001-11-03 07:17:02 +03:00
|
|
|
<tabpanels flex="100%">
|
2002-01-11 03:29:06 +03:00
|
|
|
<iframe id="aboutframe" src="about:"/>
|
|
|
|
<iframe id="creditsframe" src="about:blank"/>
|
2001-04-18 10:59:04 +04:00
|
|
|
</tabpanels>
|
|
|
|
</tabbox>
|
2000-01-23 15:40:24 +03:00
|
|
|
|
2001-07-09 22:41:07 +04:00
|
|
|
<hbox style="margin-top: 1em;">
|
2001-09-19 01:47:32 +04:00
|
|
|
<spacer flex="100%"/>
|
2001-08-04 10:21:59 +04:00
|
|
|
<button id="ok" label="&okButton.label;" default="true" onclick="doOKButton()"/>
|
2001-07-09 22:41:07 +04:00
|
|
|
</hbox>
|
2000-01-23 15:40:24 +03:00
|
|
|
|
2001-07-09 22:41:07 +04:00
|
|
|
</vbox>
|
2000-04-20 01:42:30 +04:00
|
|
|
</window>
|