Overview
| Comment: | [tb] remove dialog for bundled options > common dialog box |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tb | tbnext |
| Files: | files | file ages | folders |
| SHA3-256: |
617b4e13487325e5fd243714eda7cbf0 |
| User & Date: | olr on 2018-03-14 15:37:27 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-03-14
| ||
| 19:49 | [tb] new API: fix dictionary loading + remove obsolete echo function check-in: 1dd9310e28 user: olr tags: tb, tbnext | |
| 15:37 | [tb] remove dialog for bundled options > common dialog box check-in: 617b4e1348 user: olr tags: tb, tbnext | |
|
2018-03-10
| ||
| 15:18 | [tb] fix conjugueur initialization… (again, and again, and again, and again, thanks to the endless JS pile of shit) check-in: 8253dcac97 user: olr tags: tb, tbnext | |
Changes
Added gc_lang/fr/tb/content/options.css version [9480df93df].
> > | 1 2 | /* CSS */ |
Added gc_lang/fr/tb/content/options.js version [239a6bffa5].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
// JavaScript
"use strict";
console.log("1");
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
const prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService).getBranch("extensions.grammarchecker.");
var oOptControl = {
load: function () {
console.log("load");
try {
document.getElementById('check_signature').checked = prefs.getBoolPref('bCheckSignature');
}
catch (e) {
Cu.reportError(e);
}
},
save: function () {
console.log("save");
try {
prefs.setBoolPref('bCheckSignature', document.getElementById('check_signature').checked);
}
catch (e) {
Cu.reportError(e);
}
}
}
console.log("2");
oOptControl.load();
console.log("3");
|
Modified gc_lang/fr/tb/content/options.xul from [4546c76788] to [b4b7f2b7c3].
|
| | > | > | | > > > > > > > > | | | < < < < < | | < < | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://grammarchecker/content/options.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/options.dtd">
<dialog
id="grammalecte-options-window"
title="&window.title;"
orient="vertical"
buttons="accept, cancel"
ondialogaccept="oOptControl.save();"
ondialogcancel="return;"
defaultButton="accept"
width="400"
onload="document.getElementById('grammalecte-options-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description="" />
<checkbox id="check_signature" label="&check_signature.label;" accesskey="&check_signature.accesskey;" />
<script type="application/javascript" src="options.js" />
</dialog>
|
Modified gc_lang/fr/tb/install.rdf from [c98ee16b92] to [95227f9159].
1 2 3 4 5 6 7 8 9 10 11 |
<?xml version="1.0" encoding="UTF-8"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>${tb_identifier}</em:id>
<em:name>${tb_name}</em:name>
<em:type>2</em:type>
<em:version>${version}</em:version>
<em:creator>${author}</em:creator>
<em:description>${description}</em:description>
<em:homepageURL>${link}</em:homepageURL>
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?xml version="1.0" encoding="UTF-8"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>${tb_identifier}</em:id>
<em:name>${tb_name}</em:name>
<em:type>2</em:type>
<em:version>${version}</em:version>
<em:creator>${author}</em:creator>
<em:description>${description}</em:description>
<em:homepageURL>${link}</em:homepageURL>
<!--<em:optionsURL>chrome://grammarchecker/content/options.xul</em:optionsURL>-->
<em:unpack>true</em:unpack>
<em:targetApplication>
<Description>
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id> <!-- thunderbird -->
<em:minVersion>45.8.0</em:minVersion>
<em:maxVersion>55.*</em:maxVersion>
|
| ︙ | ︙ |
Modified gc_lang/fr/tb/locale/en/options.dtd from [071253db94] to [5fe56718ba].
|
| | | < < < > > | 1 2 3 4 5 6 | <!ENTITY window.title "Grammalecte · Options"> <!ENTITY dialogheader.label "Other options"> <!ENTITY check_signature.label "Check signature text (in text mode)"> <!ENTITY check_signature.accesskey "C"> |
Modified gc_lang/fr/tb/locale/fr/options.dtd from [a50c0f39f8] to [37a043f079].
|
| | | < < < | 1 2 3 4 | <!ENTITY window.title "Grammalecte · Options"> <!ENTITY dialogheader.label "Autres options"> <!ENTITY check_signature.label "Vérifier le texte de la signature (en mode texte)"> <!ENTITY check_signature.accesskey "V"> |