chat/content/otr-finger.xhtml
author Ben Campbell <benc@thunderbird.net>
Mon, 23 Dec 2019 13:51:15 +1300
changeset 36959 5ba4422e867f7f2b922673b2b8bb58dac0a788e3
parent 36933 0ff64b19c5136621a4ad40a2d9192d2bfc43a185
child 37581 368f0e33482a39316f406aa428fbc10076429fa2
permissions -rw-r--r--
Bug 1602424 - Remove xpidl [array] use in calIRecurrenceItem. r=mkmelin,darktrojan

<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

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

<!DOCTYPE window>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml"
        data-l10n-id="otr-finger"
        data-l10n-attrs="buttonlabelaccept"
        onload="otrFinger.onload()">

  <dialog id="otr-fingerwindow"
          buttons="accept">

    <linkset>
      <html:link rel="localization" href="messenger/otr/finger.ftl"/>
    </linkset>

    <script src="chrome://chat/content/otr-finger.js"/>

    <label data-l10n-id="finger-intro" />
    <separator class="thin"/>
    <vbox id="fingerprints" class="contentPane" flex="1">
      <tree id="fingerTree"
            flex="1"
            width="800"
            style="height: 20em;"
            onselect="otrFinger.select()">
        <treecols>
          <treecol id="screenname" data-l10n-id="finger-screenName" flex="20" />
          <splitter class="tree-splitter"/>
          <treecol id="fingerprint" data-l10n-id="finger-fingerprint" flex="120" />
          <splitter class="tree-splitter"/>
          <treecol id="verified" data-l10n-id="finger-verified" flex="10" />
          <splitter class="tree-splitter"/>
        </treecols>
        <treechildren/>
      </tree>
      <separator class="thin"/>
      <hbox>
        <button id="remove"
                data-l10n-id="finger-remove"
                disabled="true"
                oncommand="otrFinger.remove()"/>
        <button id="remove-all"
                data-l10n-id="finger-remove-all"
                oncommand="otrFinger.removeAll()"/>
      </hbox>
    </vbox>
  </dialog>
</window>