home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / navigator / metadata.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-08-15  |  6.9 KB  |  215 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Mozilla Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/MPL/
  8.    - 
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    - 
  14.    - The Original Code is this file as it was released on
  15.    - January 3, 2001.
  16.    - 
  17.    - The Initial Developer of the Original Code is Jonas Sicking.
  18.    - Portions created by Jonas Sicking are Copyright (C) 2000
  19.    - Jonas Sicking.  All Rights Reserved.
  20.    - 
  21.    - Contributor(s):
  22.    -   Jonas Sicking <sicking@bigfoot.com> (Original Author)
  23.    -   Gervase Markham <gerv@gerv.net>
  24.    - 
  25.    - Alternatively, the contents of this file may be used under the
  26.    - terms of the GNU General Public License Version 2 or later (the
  27.    - "GPL"), in which case the provisions of the GPL are applicable 
  28.    - instead of those above.  If you wish to allow use of your 
  29.    - version of this file only under the terms of the GPL and not to
  30.    - allow others to use your version of this file under the MPL,
  31.    - indicate your decision by deleting the provisions above and
  32.    - replace them with the notice and other provisions required by
  33.    - the GPL.  If you do not delete the provisions above, a recipient
  34.    - may use your version of this file under either the MPL or the
  35.    - GPL.
  36.   -->
  37.  
  38. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?>
  39.  
  40. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  41.  
  42. <!DOCTYPE window [
  43.   <!ENTITY % metadataDTD SYSTEM "chrome://navigator/locale/metadata.dtd" >
  44.   %metadataDTD;
  45. ]>
  46.  
  47. <window id="metadata"
  48.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  49.         title="&caption.label;"
  50.         onload="onLoad()"
  51.         class="dialog"
  52.         orient="vertical"
  53.         persist="screenX screenY"
  54.         screenX="24" screenY="24">
  55.  
  56.   <script type="application/x-javascript" src="chrome://navigator/content/metadata.js"/>
  57.  
  58.   <stringbundle src="chrome://navigator/locale/metadata.properties" id="bundle_metadata"/>
  59.   <stringbundle src="chrome://global/locale/languageNames.properties" id="bundle_languages"/>
  60.   <stringbundle src="chrome://global/locale/regionNames.properties" id="bundle_regions"/>
  61.  
  62.   <text id="no-properties" value="&no-properties.label;"/>
  63.   
  64.   <groupbox id="link-sec">
  65.     <label><text value="&link-sec.label;"/></label>
  66.     <grid>
  67.       <columns>
  68.         <column/>
  69.         <column flex="1"/>
  70.       </columns>
  71.       <rows>
  72.         <row id="link-url">
  73.           <text value="&link-url.label; "/>
  74.           <hbox>
  75.             <text id="link-url-text" value="" class="text-link" 
  76.                   onclick="openLink(this)"/>
  77.             <spring flex="1"/>
  78.           </hbox>
  79.         </row>
  80.         <row id="link-target">
  81.           <text value="&link-target.label; "/>
  82.           <text id="link-target-text" value=""/>
  83.         </row>
  84.         <row id="link-type">
  85.           <text value="&link-type.label; "/>
  86.           <text id="link-type-text" value=""/>
  87.         </row>
  88.         <row id="link-lang">
  89.           <text value="&link-lang.label; "/>
  90.           <text id="link-lang-text" value=""/>
  91.         </row>
  92.         <row id="link-rel">
  93.           <text value="&link-rel.label; "/>
  94.           <text id="link-rel-text" value=""/>
  95.         </row>
  96.         <row id="link-rev">
  97.           <text value="&link-rev.label; "/>
  98.           <text id="link-rev-text" value=""/>
  99.         </row>
  100.       </rows>
  101.     </grid>
  102.   </groupbox>
  103.   <groupbox id="image-sec">
  104.     <label><text value="&image-sec.label;"/></label>
  105.     <grid>
  106.       <columns>
  107.         <column/>
  108.         <column flex="1"/>
  109.       </columns>
  110.       <rows>
  111.         <row id="image-url">
  112.           <text value="&image-url.label; "/>
  113.           <hbox>
  114.             <text id="image-url-text" value="" class="text-link" 
  115.                   onclick="openLink(this)"/>
  116.             <spring flex="1"/>
  117.           </hbox>
  118.         </row>
  119.         <row id="image-width">
  120.           <text value="&image-width.label; "/>
  121.           <hbox>
  122.             <text id="image-width-text" value=""/>
  123.             <text value=" &image-pixels.label;"/>
  124.           </hbox>
  125.         </row>
  126.         <row id="image-height">    
  127.           <text value="&image-height.label; "/>
  128.           <hbox>
  129.             <text id="image-height-text" value=""/>
  130.             <text value=" &image-pixels.label;"/>
  131.           </hbox>
  132.         </row>
  133.         <row id="image-desc">
  134.           <text value="&image-desc.label; "/>
  135.           <hbox>
  136.             <text id="image-desc-text" value="" class="text-link" 
  137.                   onclick="openLink(this)"/>
  138.             <spring flex="1"/>
  139.           </hbox>
  140.         </row>
  141.       </rows>
  142.     </grid>
  143.   </groupbox>
  144.   <groupbox id="insdel-sec">
  145.     <label><text value="&insdel-sec.label;"/></label>
  146.     <grid>
  147.       <columns>
  148.         <column/>
  149.         <column flex="1"/>
  150.       </columns>
  151.       <rows>
  152.         <row id="insdel-cite">
  153.           <text value="&insdel-cite.label; "/>
  154.           <hbox>
  155.             <text id="insdel-cite-text" value="" class="text-link" 
  156.                   onclick="openLink(this)"/>
  157.             <spring flex="1"/>
  158.           </hbox>
  159.         </row>
  160.         <row id="insdel-date">
  161.           <text value="&insdel-date.label; "/>
  162.           <text id="insdel-date-text" value=""/>
  163.         </row>
  164.       </rows>
  165.     </grid>
  166.   </groupbox>
  167.   <groupbox id="quote-sec">
  168.     <label><text value=""e-sec.label;"/></label>
  169.     <grid>
  170.       <columns>
  171.         <column/>
  172.         <column flex="1"/>
  173.       </columns>
  174.       <rows>
  175.         <row id="quote-cite">
  176.           <text value=""e-cite.label; "/>
  177.           <hbox>
  178.             <text id="quote-cite-text" value="" class="text-link" 
  179.                   onclick="openLink(this)"/>
  180.             <spring flex="1"/>
  181.           </hbox>
  182.         </row>
  183.       </rows>
  184.     </grid>
  185.   </groupbox>
  186.   <groupbox id="misc-sec">
  187.     <label><text value="&misc-sec.label;"/></label>
  188.     <grid>
  189.       <columns>
  190.         <column/>
  191.         <column flex="1"/>
  192.       </columns>
  193.       <rows>
  194.         <row id="misc-lang">
  195.           <text value="&misc-lang.label; "/>
  196.           <text id="misc-lang-text" value=""/>
  197.         </row>
  198.         <row id="misc-title">
  199.           <text value="&misc-title.label; "/>
  200.           <hbox>
  201.           <html id="misc-title-text" width="100%" style="margin: 0px;"/>
  202.           </hbox>
  203.         </row>
  204.         <row id="misc-tblsummary">
  205.           <text value="&misc-tblsummary.label; "/>
  206.           <text id="misc-tblsummary-text" value=""/>
  207.         </row>
  208.       </rows>
  209.     </grid>
  210.   </groupbox>
  211.  
  212.   <spring flex="1"/>
  213.  
  214.  </window>
  215.