From e5af489df48cdecebfbc6c413de0b5b348dd8589 Mon Sep 17 00:00:00 2001 From: Rob Wu Date: Tue, 16 Jul 2024 19:46:47 +0200 Subject: [PATCH] Native_manifests: pkcs11 paths may be relative Undocumented support for relative paths existed for a long while, and became an explicit first-class supported feature in https://bugzilla.mozilla.org/show_bug.cgi?id=1759162 This fixes the documentation accordingly, to set the correct expectations. And prepend "PKCS 11" to "module" to emphasize that this fragment of the table is about the manifests for the pkcs11 API, to avoid confusion in case the reader was looking for the native messaging manifest. --- .../add-ons/webextensions/native_manifests/index.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/files/en-us/mozilla/add-ons/webextensions/native_manifests/index.md b/files/en-us/mozilla/add-ons/webextensions/native_manifests/index.md index 5d10dd3b4a1e02f..eccb07ac5d83238 100644 --- a/files/en-us/mozilla/add-ons/webextensions/native_manifests/index.md +++ b/files/en-us/mozilla/add-ons/webextensions/native_manifests/index.md @@ -257,7 +257,7 @@ The PKCS #11 manifest is a file with a name that matches the name of the PKCS #1 String

Name of the PKCS #11 module.

-

This must match the name used in the pkcs11 API.

+

This must match the name used in the {{WebExtAPIRef("pkcs11")}} API.

On Windows, use this as the name of the registry key you create, which contains the location of the manifest. @@ -274,7 +274,7 @@ The PKCS #11 manifest is a file with a name that matches the name of the PKCS #1 description String -

Description of the module.

+

Description of the PKCS #11 module.

This sets the friendly name for the module in the browser's UI (for example, the "Security Devices" dialog in Firefox). @@ -285,10 +285,9 @@ The PKCS #11 manifest is a file with a name that matches the name of the PKCS #1 path String -

Path to the module.

+

Path to the PKCS #11 module.

- On Windows, this may be relative to the manifest itself. On MacOS and - Linux, it must be absolute. + The path to the PKCS #11 module may be absolute, or relative to the manifest itself.