Overview
| Comment: | [tb] text formatter: progressbar | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | tb | tbso | 
| Files: | files | file ages | folders | 
| SHA3-256: | ee415784e66fd1965f967cefda3d9a51 | 
| User & Date: | olr on 2020-01-20 23:35:37 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2020-02-03 | ||
| 09:40 | [tb] spelling dictionary selection check-in: 8a0279f8fd user: olr tags: trunk, tb | |
| 2020-01-20 | ||
| 23:35 | [tb] text formatter: progressbar Closed-Leaf check-in: ee415784e6 user: olr tags: tb, tbso | |
| 12:20 | [tb] dictionaries: spelling option check-in: 97d7e3a4f3 user: olr tags: tb, tbso | |
Changes
Modified gc_lang/fr/mailext/content/overlay.css from [7766f680c2] to [34648cdf92].
| ︙ | ︙ | |||
| 35 36 37 38 39 40 41 | 
}
.optiongroup {
    color: hsl(210, 50%, 40%);
    font-size: 14px;
    font-weight: bold;
}
#textformatter-progressbar {
 | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 
}
.optiongroup {
    color: hsl(210, 50%, 40%);
    font-size: 14px;
    font-weight: bold;
}
#textformatter-progressbar {
    width: 470px;
}
#textformatter-timer {
    padding: 5px;
}
#grammarchecker-panel {
 | 
| ︙ | ︙ | 
Modified gc_lang/fr/mailext/content/overlay.js from [fc3e43bc6f] to [382be936c1].
| ︙ | ︙ | |||
| 830 831 832 833 834 835 836 | 
                    }
                    document.getElementById('res_o_ma_word').textContent = n1;
                }
                document.getElementById("o_group_misc").checked = false;
                this.switchGroup("o_group_misc");
            }
            document.getElementById('textformatter-progressbar').value = document.getElementById('textformatter-progressbar').max;
 | < | 830 831 832 833 834 835 836 837 838 839 840 841 842 843 | 
                    }
                    document.getElementById('res_o_ma_word').textContent = n1;
                }
                document.getElementById("o_group_misc").checked = false;
                this.switchGroup("o_group_misc");
            }
            document.getElementById('textformatter-progressbar').value = document.getElementById('textformatter-progressbar').max;
            // end of processing
            //window.setCursor("auto"); // restore pointer
            const t1 = Date.now();
            document.getElementById('textformatter-timer').textContent = this.getTimeRes((t1-t0)/1000);
        }
        catch (e) {
 | 
| ︙ | ︙ | 
Modified gc_lang/fr/mailext/content/overlay.xul from [f36fdba70a] to [a2a481fd03].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://grammarchecker/content/overlay.css" type="text/css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/messenger.css"?>
<!DOCTYPE overlay SYSTEM "chrome://grammarchecker/locale/overlay.dtd">
<overlay id="grammarchecker-overlay"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
  <script type="application/javascript" src="chrome://messenger/content/customElements.js"/>
  <script type="application/javascript" src="resource://grammalecte/text.js"/>
  <script type="application/javascript" src="resource://grammalecte/fr/textformatter.js"/>
  <script type="application/javascript" src="overlay.js"/>
 | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://grammarchecker/content/overlay.css" type="text/css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/messenger.css"?>
<!DOCTYPE overlay SYSTEM "chrome://grammarchecker/locale/overlay.dtd">
<overlay id="grammarchecker-overlay"
         xmlns:html="http://www.w3.org/1999/xhtml"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
  <script type="application/javascript" src="chrome://messenger/content/customElements.js"/>
  <script type="application/javascript" src="resource://grammalecte/text.js"/>
  <script type="application/javascript" src="resource://grammalecte/fr/textformatter.js"/>
  <script type="application/javascript" src="overlay.js"/>
 | 
| ︙ | ︙ | |||
| 341 342 343 344 345 346 347 | 
          <description id="textformatter-infomsg">&tf_infomsg;</description>
        </vbox>
      </hbox>
      <hbox id="textformatter-commands">
        <button id="reset" label="&tf.button.default;" oncommand="oTextFormatter.onReset(event);" />
 | | < | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | 
          <description id="textformatter-infomsg">&tf_infomsg;</description>
        </vbox>
      </hbox>
      <hbox id="textformatter-commands">
        <button id="reset" label="&tf.button.default;" oncommand="oTextFormatter.onReset(event);" />
        <html:progress id="textformatter-progressbar" max="6"></html:progress>
        <label id="textformatter-timer" width="50"></label>
        <button id="apply" label="&tf.button.apply;" oncommand="oTextFormatter.onApply(event);" />
        <button id="close" label="&tf.button.close;" oncommand="oTextFormatter.onClosePanel(event);" />
      </hbox>
    </vbox>
 | 
| ︙ | ︙ |