home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / chrome / browser.jar / content / browser / aboutDialog.xul < prev    next >
Extensible Markup Language  |  2005-09-26  |  2KB  |  45 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- --> 
  2.  
  3.  
  4. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  5. <?xml-stylesheet href="chrome://browser/content/aboutDialog.css" type="text/css"?> 
  6.  
  7. <!DOCTYPE window [
  8. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  9. %brandDTD;
  10. <!ENTITY % aboutDialogDTD SYSTEM "chrome://browser/locale/aboutDialog.dtd" >
  11. %aboutDialogDTD;
  12. ]>
  13.  
  14. <dialog xmlns:html="http://www.w3.org/1999/xhtml"
  15.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  16.         id="aboutDialog"
  17.         buttons="accept,extra2" 
  18.         onload="init(event);" onunload="uninit(event);"
  19.         title="&aboutDialog.title;" creditslabel="©right;" aboutlabel="&aboutLink;" 
  20.         style="width: 299px">
  21.     
  22.   <script type="application/x-javascript" src="chrome://browser/content/aboutDialog.js"/>
  23.  
  24.   <deck id="modes" flex="1">
  25.     <vbox flex="1" id="clientBox">
  26.       <!-- XXXben - this is a hack to deal with our strange and confusing
  27.                     non-decimal version numbering. We display the human-readable
  28.                     version here - hard coded for JUST this release. We will
  29.                     remove this line and replace with the #expand one for 1.0 -->
  30. <label id="version" value="&aboutVersion; 8.0.4 - based on Firefox"/>
  31.       <description id="copyright">©rightText;</description>
  32.       <vbox id="detailsBox" align="center" flex="1">
  33.         <spacer flex="1"/>
  34.         <textbox id="userAgent" multiline="true" readonly="true" cols="60"/>
  35.       </vbox>
  36.     </vbox>
  37.     <vbox flex="1" id="creditsBox" style="overflow: hidden">
  38.       <html:iframe style="border:0px;overflow:hidden;" id="creditsIframe" src="chrome://browser/content/credits.xhtml" flex="1"/>
  39.     </vbox>    
  40.   </deck>
  41.   <separator class="groove" id="groove"/>
  42.  
  43. </dialog>
  44.  
  45.