home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 123 / cdrom123.iso / essenc / extens / wweb / Web Developer.xpi / chrome / webdeveloper.jar / content / webdeveloper / about / about.xul < prev   
Encoding:
Extensible Markup Language  |  2004-11-21  |  1.6 KB  |  39 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://webdeveloper/content/about/about.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog [
  6.     <!ENTITY % dialogsDTD SYSTEM "chrome://webdeveloper/locale/dialogs.dtd">
  7.     <!ENTITY % menuDTD SYSTEM "chrome://webdeveloper/locale/menu.dtd">
  8.     %dialogsDTD;
  9.     %menuDTD;
  10. ]>
  11.  
  12. <dialog buttons="accept"
  13.         id="webdeveloper-about-dialog"
  14.         title="&webdeveloper.about.title;"
  15.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  16.  
  17.     <script type="application/x-javascript" src="chrome://webdeveloper/content/about/about.js"/>
  18.  
  19.     <vbox id="webdeveloper-about-details">
  20.         <hbox>
  21.             <vbox>
  22.                 <hbox>
  23.                     <description value="&webdeveloper.name;" class="name"/>
  24.                     <description class="name">0.9</description>
  25.                 </hbox>
  26.                 <description value="&webdeveloper.about.author;" class="title"/>
  27.                 <description>Chris Pederick</description>
  28.             </vbox>
  29.             <spacer flex="1"/>
  30.             <vbox>
  31.                 <image src="chrome://webdeveloper/content/logo.gif" width="48" height="48"/>
  32.                 <spacer flex="1"/>
  33.             </vbox>
  34.         </hbox>
  35.         <description value="&webdeveloper.about.home.page;" class="title"/>
  36.         <description onclick="webdeveloper_visitHomePage()" class="url">http://www.chrispederick.com/work/firefox/webdeveloper/</description>
  37.     </vbox>
  38.     <separator class="groove" id="webdeveloper-about-separator"/>
  39. </dialog>