From 34d315396ca29d7ef51ecc27eeeeeb275e9b0ba9 Mon Sep 17 00:00:00 2001 From: SphinxKnight Date: Mon, 15 Nov 2021 19:39:07 +0100 Subject: Prepare Mozilla section for Markdown conversion (#2980) * Remove summary * Remove hidden except for copyright notice * Remove spans * Remove font * Remove notranslate * Remove extra id, deleting an untranslated page doing so * Fix links, absolute links, rm internal, titles * Remove external classes * fix headings with name attr * fix some styles and classes * remove useless class reference-values * rm styles in links * Fix code blocks in pre * Remove ltr classes * remove fullwidth-table * Fix various conversion errors and some one offs * Remove nested code/pre/code * Fix notes * Fix warnings * fix dls * fix nested issues in dls * fix images --- .../api/pkcs11/getmoduleslots/index.html | 2 +- .../add-ons/webextensions/api/pkcs11/index.html | 8 ++--- .../api/pkcs11/installmodule/index.html | 38 +++++++++++----------- .../api/pkcs11/ismoduleinstalled/index.html | 2 +- .../api/pkcs11/uninstallmodule/index.html | 2 +- 5 files changed, 26 insertions(+), 26 deletions(-) (limited to 'files/fr/mozilla/add-ons/webextensions/api/pkcs11') diff --git a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/getmoduleslots/index.html b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/getmoduleslots/index.html index e8c7706ef0..f86cb8b8b1 100644 --- a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/getmoduleslots/index.html +++ b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/getmoduleslots/index.html @@ -22,7 +22,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11/getModuleSlots

Syntaxe

-
var getting = browser.pkcs11.getModuleSlots(
+
var getting = browser.pkcs11.getModuleSlots(
   name              // string
 )
 
diff --git a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/index.html b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/index.html index 84386b0441..1a3d2319bd 100644 --- a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/index.html +++ b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/index.html @@ -32,17 +32,17 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11
  • Faites défiler vers le bas de la page et sous Certificats ou tapez sur Dispositifs de sécurité...
    -

    +

  • Cliquez ou appuyez sur le bouton Charger
    -

    +

  • Entrez un nom pour le module de sécurité, tel que "Ma Base de données Client"

    -
    -

    Faites attention à l'utilisation de caractères internationaux car il y a actuellement un bogue dans Firefox où les caractères internationaux peuvent causer des problèmes.

    +
    +

    Attention : il y a actuellement un bogue dans Firefox où les caractères internationaux peuvent causer des problèmes.

  • diff --git a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/installmodule/index.html b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/installmodule/index.html index 3163c01b65..a70fee644d 100644 --- a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/installmodule/index.html +++ b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/installmodule/index.html @@ -20,7 +20,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11/installModule

    Syntaxe

    -
    var installing = browser.pkcs11.installModule(
    +
    var installing = browser.pkcs11.installModule(
       name,              // string
       flags              // integer
     )
    @@ -49,23 +49,23 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11/installModule
     
     

    Installe un module, puis dresse la liste de ses emplacements et liste les jetons qu'ils contiennent :

    -
    function onInstalled() {
    -  return browser.pkcs11.getModuleSlots("my_module");
    -}
    -
    -function onGotSlots(slots) {
    -  for (slot of slots) {
    -    console.log(`Slot: ${slot.name}`);
    -    if (slot.token) {
    -      console.log(`Contains token: ${slot.token.name}`);
    -    } else {
    -      console.log('Is empty');
    -    }
    -  }
    -}
    -
    -browser.pkcs11.installModule("my_module")
    -.then(onInstalled)
    -.then(onGotSlots);
    +
    function onInstalled() {
    +  return browser.pkcs11.getModuleSlots("my_module");
    +}
    +
    +function onGotSlots(slots) {
    +  for (slot of slots) {
    +    console.log(`Slot: ${slot.name}`);
    +    if (slot.token) {
    +      console.log(`Contains token: ${slot.token.name}`);
    +    } else {
    +      console.log('Is empty');
    +    }
    +  }
    +}
    +
    +browser.pkcs11.installModule("my_module")
    +.then(onInstalled)
    +.then(onGotSlots);

    {{WebExtExamples}}

    diff --git a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/ismoduleinstalled/index.html b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/ismoduleinstalled/index.html index 896a8a25eb..db549d86f7 100644 --- a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/ismoduleinstalled/index.html +++ b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/ismoduleinstalled/index.html @@ -20,7 +20,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11/isModuleInstalled

    Syntaxe

    -
    var checking = browser.pkcs11.isModuleInstalled(
    +
    var checking = browser.pkcs11.isModuleInstalled(
       name              // string
     )
     
    diff --git a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/uninstallmodule/index.html b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/uninstallmodule/index.html index b2e2df819f..4d76345947 100644 --- a/files/fr/mozilla/add-ons/webextensions/api/pkcs11/uninstallmodule/index.html +++ b/files/fr/mozilla/add-ons/webextensions/api/pkcs11/uninstallmodule/index.html @@ -20,7 +20,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/pkcs11/uninstallModule

    Syntaxe

    -
    var uninstalling = browser.pkcs11.uninstallModule(
    +
    var uninstalling = browser.pkcs11.uninstallModule(
       name              // string
     )
     
    -- cgit v1.2.3-54-g00ecf