From d94c301b9d756509de582239a022bc014824388a Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 20 Mar 2023 04:42:18 -0700 Subject: [PATCH 1/4] Fix video width warnings, using integers instead of percentage --- docs/source/user-manual/copy-paste-blocks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/user-manual/copy-paste-blocks.md b/docs/source/user-manual/copy-paste-blocks.md index 1f922e2f75..06669a738f 100644 --- a/docs/source/user-manual/copy-paste-blocks.md +++ b/docs/source/user-manual/copy-paste-blocks.md @@ -27,7 +27,7 @@ This feature can be used by selecting a start block and an end block while holdi This will select all the blocks between the start and end blocks, allowing you to copy, cut, or delete multiple blocks at once. ```{video} /_static/user-manual/blocks/block-copy-cut.mp4 - :width: 100% + :width: 100 ``` @@ -42,5 +42,5 @@ You can click the paste option Paste icon Date: Mon, 20 Mar 2023 04:43:37 -0700 Subject: [PATCH 2/4] Avoid redirect and let linkcheck pass --- docs/source/getting-started/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting-started/install.md b/docs/source/getting-started/install.md index 1e8dfc2460..7dd17ff64b 100644 --- a/docs/source/getting-started/install.md +++ b/docs/source/getting-started/install.md @@ -23,7 +23,7 @@ This chapter contains some legacy information that may be useful to Plone 5.2 de Volto can be installed in any operating system assuming that the following pre-requisites are met: -- [Node.js LTS (18.x)](https://nodejs.org/en/) +- [Node.js LTS (18.x)](https://nodejs.org/en) - [Python](https://www.python.org/) - See below for specific versions. - [Docker](https://www.docker.com/get-started) (if using the Plone docker images) From bb27df57ec82e34e12f53f31d7da80c7670fd7dd Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 20 Mar 2023 04:44:50 -0700 Subject: [PATCH 3/4] add news item --- news/4578.documentation | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/4578.documentation diff --git a/news/4578.documentation b/news/4578.documentation new file mode 100644 index 0000000000..9a6645de55 --- /dev/null +++ b/news/4578.documentation @@ -0,0 +1 @@ +Fix video warnings and link errors. @stevepiercy From f410ea786aeb5a98a2515e1e45f87bdeadc3df4a Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 21 Mar 2023 00:11:38 -0700 Subject: [PATCH 4/4] Fix width of videos with a style, as video does not support percentages --- docs/source/_static/custom.css | 4 ++++ docs/source/user-manual/copy-paste-blocks.md | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/_static/custom.css b/docs/source/_static/custom.css index aa980421c2..d792d49f36 100644 --- a/docs/source/_static/custom.css +++ b/docs/source/_static/custom.css @@ -240,3 +240,7 @@ span.guilabel, span.menuselection { font-style: italic; white-space: nowrap; } + +video { + width: 100%; +} diff --git a/docs/source/user-manual/copy-paste-blocks.md b/docs/source/user-manual/copy-paste-blocks.md index 06669a738f..c62544700e 100644 --- a/docs/source/user-manual/copy-paste-blocks.md +++ b/docs/source/user-manual/copy-paste-blocks.md @@ -27,7 +27,6 @@ This feature can be used by selecting a start block and an end block while holdi This will select all the blocks between the start and end blocks, allowing you to copy, cut, or delete multiple blocks at once. ```{video} /_static/user-manual/blocks/block-copy-cut.mp4 - :width: 100 ``` @@ -42,5 +41,4 @@ You can click the paste option