[Zope-CVS] CVS: Packages/Moztop/moztop/content/Menu - aboutdialog.xul:1.1

Paul Everitt paul@zope.com
Sat, 15 Feb 2003 05:57:29 -0500


Update of /cvs-repository/Packages/Moztop/moztop/content/Menu
In directory cvs.zope.org:/tmp/cvs-serv18416

Added Files:
	aboutdialog.xul 
Log Message:
Moved some html files in here. Overhauled connection wizard, but it 
still needs a lot of work.  For instance, we should ping the server 
to make sure it exists before adding it to the sites database.



=== Added File Packages/Moztop/moztop/content/Menu/aboutdialog.xul ===
<?xml version="1.0"?>

<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://moztop/skin" type="text/css"?>

<dialog id="about" title="About Moztop"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        buttons="accept"
        ondialogaccept="return doOK();">

<tabbox id="tablist" orient="vertical" flex="1">
  <tabs orient="horizontal">
    <tab label="About Moztop"/>
    <tab label="Credits"/>
    <tab label="License"/>
  </tabs>
  <tabpanels flex="100%">
    <tabpanel id="about-moztop" orient="vertical">
      <iframe src="chrome://moztop/content/About/about.html" 
              flex="1"/>
    </tabpanel>
    <tabpanel id="moztop-credits" orient="vertical">
      <iframe src="chrome://moztop/content/About/credits.html" 
              flex="1"/>
    </tabpanel>
    <tabpanel id="moztop-license" orient="vertical">
      <iframe src="chrome://moztop/content/About/license.html" 
              flex="1"/>
    </tabpanel>
  </tabpanels>
</tabbox>

<script>
function doOK()
{
  return true;
}

</script>

</dialog>