From 3d0909ce99b5a0fab2e1e633668876f2fccd4d56 Mon Sep 17 00:00:00 2001 From: Ricardo Lafuente Date: Sep 16 2022 09:32:51 +0000 Subject: [PATCH 1/2] Add security.txt (#62), move favicons to theme dir --- diff --git a/website/Makefile b/website/Makefile index 7e8c2c3..be8507b 100644 --- a/website/Makefile +++ b/website/Makefile @@ -53,8 +53,9 @@ extract: $(ACTIVATE); python extract_comments.py html: extract - mkdir -p output/ - cp -r favicon.ico output/ + mkdir -p output/ output/.well-known/ + cp -r theme/favicon.ico output/ + cp -r theme/security.txt output/.well-known/ $(ACTIVATE); python extract_comments.py $(ACTIVATE); $(PELICAN) "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) # fix translated indexes to address a Pelican bug diff --git a/website/favicon.ico b/website/favicon.ico deleted file mode 100644 index 5de565d..0000000 Binary files a/website/favicon.ico and /dev/null differ diff --git a/website/favicon.png b/website/favicon.png deleted file mode 100644 index 49d1706..0000000 Binary files a/website/favicon.png and /dev/null differ diff --git a/website/theme/favicon.ico b/website/theme/favicon.ico new file mode 100644 index 0000000..5de565d Binary files /dev/null and b/website/theme/favicon.ico differ diff --git a/website/theme/favicon.png b/website/theme/favicon.png new file mode 100644 index 0000000..49d1706 Binary files /dev/null and b/website/theme/favicon.png differ diff --git a/website/theme/security.txt b/website/theme/security.txt new file mode 100644 index 0000000..4ab5e58 --- /dev/null +++ b/website/theme/security.txt @@ -0,0 +1,3 @@ +Contact: mailto:jshelter@gnu.org +Expires: 2032-12-31T22:59:59.000Z +Preferred-Languages: en, cs, it, sk From 055d79be3e234f7eff9d86eb01e4d3e42a7c4eea Mon Sep 17 00:00:00 2001 From: Ricardo Lafuente Date: Oct 13 2022 15:51:07 +0000 Subject: [PATCH 2/2] Fix unit test doc links (#53) --- diff --git a/website/content/pages/new-wrapper.md b/website/content/pages/new-wrapper.md index ab4b3d3..0d27e42 100644 --- a/website/content/pages/new-wrapper.md +++ b/website/content/pages/new-wrapper.md @@ -281,6 +281,6 @@ Describe what the wrapper tries to accomplish and its approach: ## Write unit tests or integration tests for the wrapper -Follow instructions for [unit testing](md_tests_unit_tests_README.html) and -[integration testing](md_tests_integration_tests_README.html) (see the `tests` directory in the +Follow instructions for [unit testing](https://pagure.io/JShelter/webextension/blob/main/f/tests/unit_tests/README.md) and +[integration testing](https://pagure.io/JShelter/webextension/blob/main/f/tests/integration_tests/README.md) (see the `tests` directory in the repository).