From 3ad5b2844fd170d71abb3c7e24087e779934cd75 Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Thu, 20 Jul 2023 16:08:27 +0200 Subject: [PATCH 1/4] [glossary] [percent-encoding] add more see-more for encodeURI and encodeURIComponent These functions are not mentioned on the current page, but they are the main way to encode. --- files/en-us/glossary/percent-encoding/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/files/en-us/glossary/percent-encoding/index.md b/files/en-us/glossary/percent-encoding/index.md index fc112e2371b934e..0bb7d6815c8f0eb 100644 --- a/files/en-us/glossary/percent-encoding/index.md +++ b/files/en-us/glossary/percent-encoding/index.md @@ -39,3 +39,4 @@ Depending on the context, the character `' '` is translated to a `'+'` (like in - Definition of [percent-encoding](https://en.wikipedia.org/wiki/Percent-encoding) in Wikipedia. - {{RFC(3986)}}, section 2.1, where this encoding is defined. +- [`encodeURI`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI), [`encodeURIComponent`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent), functions to percent-encode strings From 791455923b47315f8750f1787127493cadcf908a Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Thu, 20 Jul 2023 16:11:38 +0200 Subject: [PATCH 2/4] Update index.md --- files/en-us/glossary/percent-encoding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/percent-encoding/index.md b/files/en-us/glossary/percent-encoding/index.md index 0bb7d6815c8f0eb..3a79b5519eb2c4d 100644 --- a/files/en-us/glossary/percent-encoding/index.md +++ b/files/en-us/glossary/percent-encoding/index.md @@ -39,4 +39,4 @@ Depending on the context, the character `' '` is translated to a `'+'` (like in - Definition of [percent-encoding](https://en.wikipedia.org/wiki/Percent-encoding) in Wikipedia. - {{RFC(3986)}}, section 2.1, where this encoding is defined. -- [`encodeURI`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI), [`encodeURIComponent`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent), functions to percent-encode strings +- [`encodeURI`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI), [`encodeURIComponent`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent), functions to percent-encode strings From 9379d209b08a49a09241d4d9efd531047e05eb6c Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Fri, 21 Jul 2023 01:07:20 +0900 Subject: [PATCH 3/4] Update files/en-us/glossary/percent-encoding/index.md --- files/en-us/glossary/percent-encoding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/percent-encoding/index.md b/files/en-us/glossary/percent-encoding/index.md index 3a79b5519eb2c4d..9d41deeddebb319 100644 --- a/files/en-us/glossary/percent-encoding/index.md +++ b/files/en-us/glossary/percent-encoding/index.md @@ -39,4 +39,4 @@ Depending on the context, the character `' '` is translated to a `'+'` (like in - Definition of [percent-encoding](https://en.wikipedia.org/wiki/Percent-encoding) in Wikipedia. - {{RFC(3986)}}, section 2.1, where this encoding is defined. -- [`encodeURI`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI), [`encodeURIComponent`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent), functions to percent-encode strings +- [`encodeURI()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI) and [`encodeURIComponent()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent): functions to percent-encode URLs From dfcf1147926e4160300563da1530a04648e16457 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Fri, 21 Jul 2023 01:11:32 +0900 Subject: [PATCH 4/4] Update files/en-us/glossary/percent-encoding/index.md --- files/en-us/glossary/percent-encoding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/percent-encoding/index.md b/files/en-us/glossary/percent-encoding/index.md index 9d41deeddebb319..2750a2913030b6b 100644 --- a/files/en-us/glossary/percent-encoding/index.md +++ b/files/en-us/glossary/percent-encoding/index.md @@ -39,4 +39,4 @@ Depending on the context, the character `' '` is translated to a `'+'` (like in - Definition of [percent-encoding](https://en.wikipedia.org/wiki/Percent-encoding) in Wikipedia. - {{RFC(3986)}}, section 2.1, where this encoding is defined. -- [`encodeURI()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI) and [`encodeURIComponent()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent): functions to percent-encode URLs +- [`encodeURI()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI) and [`encodeURIComponent()`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) — functions to percent-encode URLs