From ec7007636188a2c8e9b1f1629eaa0043ee3fbc08 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Sat, 19 Dec 2020 19:57:07 +0100 Subject: [PATCH] Use HTTPS everywhere (mechanical edit using util from https-everywhere) Ref: https://github.com/EFForg/https-everywhere/tree/master/utils/rewriter ```Shell ~/src/EFForg/https-everywhere/utils/rewriter/rewriter.js . ``` --- _dev/Makefile | 2 +- developer/code/coding-style.md | 2 +- developer/code/license.md | 2 +- developer/debugging/windows-debugging.md | 2 +- developer/general/gsoc.md | 2 +- developer/general/style-guide.md | 2 +- developer/releases/1.0/release-notes.md | 2 +- developer/releases/2.0/release-notes.md | 2 +- introduction/code-of-conduct.md | 2 +- introduction/faq.md | 2 +- user/common-tasks/software-update-domu.md | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/_dev/Makefile b/_dev/Makefile index 8177cd00..642e3223 100644 --- a/_dev/Makefile +++ b/_dev/Makefile @@ -9,7 +9,7 @@ BUILDDIR = _build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) +$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://www.sphinx-doc.org/) endif # Internal variables. diff --git a/developer/code/coding-style.md b/developer/code/coding-style.md index f37e2b90..3c1e41ea 100644 --- a/developer/code/coding-style.md +++ b/developer/code/coding-style.md @@ -124,7 +124,7 @@ Source Code management (Git) guidelines - Use git to maintain all code for Qubes project. -- Before you start using git, make sure you understand that git is a decentralized Source Code Management system, and that it doesn't behave like traditional, centralized source code management systems, such as SVN. Here's a good [introductory book on git](http://git-scm.com/book). Read it. +- Before you start using git, make sure you understand that git is a decentralized Source Code Management system, and that it doesn't behave like traditional, centralized source code management systems, such as SVN. Here's a good [introductory book on git](https://git-scm.com/book). Read it. - Qubes code is divided into many git repositories. There are several reasons for that: - This creates natural boundaries between different code blocks, enforcing proper interfaces, and easing independent development to be conducted on various code parts at the same time, without the fear of running into conflicts. diff --git a/developer/code/license.md b/developer/code/license.md index 7064d94c..8a15e840 100644 --- a/developer/code/license.md +++ b/developer/code/license.md @@ -13,4 +13,4 @@ Qubes OS License Qubes is a compilation of software packages, each under its own license. The compilation is made available under the GNU General Public License version 2. -The full text of the GPL v2 license can be found [here](http://www.gnu.org/licenses/gpl-2.0.html). +The full text of the GPL v2 license can be found [here](https://www.gnu.org/licenses/gpl-2.0.html). diff --git a/developer/debugging/windows-debugging.md b/developer/debugging/windows-debugging.md index d1b2dd18..f8f84450 100644 --- a/developer/debugging/windows-debugging.md +++ b/developer/debugging/windows-debugging.md @@ -44,7 +44,7 @@ Things get complicated if you need to perform kernel debugging or troubleshoot p ...but there is a catch. Xen seems to process the traffic that goes through serial ports and changes all **0x0a** bytes into **0x0d, 0x0a** pairs (newline conversion). I didn't find a way to turn that off (setting ptys to raw mode didn't change anything) and it's not mentioned anywhere on the Internet, so maybe it's something on my system. If the above script works for you then you don't need anything more in dom0. - On the *target* system, run `bcdedit /set debug on` on the console to turn on kernel debugging. It defaults to the first serial port. -- On the *host* system, install [WinDbg](http://msdn.microsoft.com/en-us/library/windows/hardware/ff551063(v=vs.85).aspx) and start the kernel debug (Ctrl-K), choose **com1** as the debug port. +- On the *host* system, install [WinDbg](https://msdn.microsoft.com/en-us/library/windows/hardware/ff551063%28v=vs.85%29.aspx) and start the kernel debug (Ctrl-K), choose **com1** as the debug port. - Reboot the *target* VM. - Run the above shell script in dom0. - If everything is fine you should see the proper kernel debugging output in WinDbg. However, if you see something like that: diff --git a/developer/general/gsoc.md b/developer/general/gsoc.md index 89093c7a..38cc3f1c 100644 --- a/developer/general/gsoc.md +++ b/developer/general/gsoc.md @@ -508,7 +508,7 @@ details in [#2618](https://github.com/QubesOS/qubes-issues/issues/2618). **Project**: Qubes Converters -**Brief explanation**: One of the pioneering ideas of Qubes is to use disposable virtual machines to convert untrustworthy files (such as documents given to journalists by unknown and potentially malicious whistleblowers) into trustworthy files. See [Joanna's blog on the Qubes PDF Convert](http://theinvisiblethings.blogspot.co.uk/2013/02/converting-untrusted-pdfs-into-trusted.html) for details of the idea. Joanna has implemented a prototype for PDF documents. The goal of this project would be to generalize beyond the simple prototype to accommodate a wide variety of file formats, including Word documents, audio files, video files, spreadsheets, and so on. The converters should prioritise safety over faithful conversion. For example the Qubes PDF converter typically leads to lower quality PDFs (e.g. cut and paste is no longer possible), because this makes the conversion process safer. +**Brief explanation**: One of the pioneering ideas of Qubes is to use disposable virtual machines to convert untrustworthy files (such as documents given to journalists by unknown and potentially malicious whistleblowers) into trustworthy files. See [Joanna's blog on the Qubes PDF Convert](https://theinvisiblethings.blogspot.co.uk/2013/02/converting-untrusted-pdfs-into-trusted.html) for details of the idea. Joanna has implemented a prototype for PDF documents. The goal of this project would be to generalize beyond the simple prototype to accommodate a wide variety of file formats, including Word documents, audio files, video files, spreadsheets, and so on. The converters should prioritise safety over faithful conversion. For example the Qubes PDF converter typically leads to lower quality PDFs (e.g. cut and paste is no longer possible), because this makes the conversion process safer. **Expected results**: We expect that in the timeframe, it will be possible to implement many converters for many file formats. However, if any unexpected difficulties arise, we would prioritise a small number of safe and high quality converters over a large number of unsafe or unuseful converters. diff --git a/developer/general/style-guide.md b/developer/general/style-guide.md index 795a0c5e..77a25e2b 100644 --- a/developer/general/style-guide.md +++ b/developer/general/style-guide.md @@ -60,7 +60,7 @@ The following **colors** are currently being used on the Qubes website and docum ## Icons -Currently, all the icons on the Qubes-OS.org website are generated using [FontAwesome](http://fortawesome.github.io/Font-Awesome/). +Currently, all the icons on the Qubes-OS.org website are generated using [FontAwesome](https://fortawesome.github.io/Font-Awesome/). *As more custom work is done to generate icons for the operating system itself, they will be added here!* diff --git a/developer/releases/1.0/release-notes.md b/developer/releases/1.0/release-notes.md index 74b125ff..6a6f5ec7 100644 --- a/developer/releases/1.0/release-notes.md +++ b/developer/releases/1.0/release-notes.md @@ -9,7 +9,7 @@ redirect_from: Qubes R1.0 Release Notes ======================== -Detailed release notes in [this blog post](http://blog.invisiblethings.org/2012/09/03/introducing-qubes-10.html). +Detailed release notes in [this blog post](https://blog.invisiblethings.org/2012/09/03/introducing-qubes-10.html). Known issues ------------ diff --git a/developer/releases/2.0/release-notes.md b/developer/releases/2.0/release-notes.md index c1d01f41..10c75de2 100644 --- a/developer/releases/2.0/release-notes.md +++ b/developer/releases/2.0/release-notes.md @@ -9,7 +9,7 @@ redirect_from: Qubes R2.0 Release Notes ======================== -Detailed release notes in [this blog post](http://blog.invisiblethings.org/2014/09/26/announcing-qubes-os-release-2.html) +Detailed release notes in [this blog post](https://blog.invisiblethings.org/2014/09/26/announcing-qubes-os-release-2.html) New features since 1.0 ---------------------- diff --git a/introduction/code-of-conduct.md b/introduction/code-of-conduct.md index 3730315a..30c0f9c5 100644 --- a/introduction/code-of-conduct.md +++ b/introduction/code-of-conduct.md @@ -66,7 +66,7 @@ The initial published version of this Code of Conduct was adapted from the [Cont [discussion]: https://github.com/QubesOS/qubes-issues/issues/2163 [Citizen Code of Conduct]: http://citizencodeofconduct.org/ [discussion guidelines]: /support/#discussion-guidelines -[Contributor Covenant, version 1.4]: http://contributor-covenant.org/version/1/4 +[Contributor Covenant, version 1.4]: https://contributor-covenant.org/version/1/4 [Rust Code of Conduct]: https://www.rust-lang.org/en-US/conduct.html [Marek Marczykowski-Górecki]: /team/#marek-marczykowski-g%C3%B3recki [Andrew David Wong]: /team/#andrew-david-wong diff --git a/introduction/faq.md b/introduction/faq.md index 285e0391..131cdaff 100644 --- a/introduction/faq.md +++ b/introduction/faq.md @@ -772,7 +772,7 @@ There is also the unofficial [ansible-qubes toolkit][ansible]. [Tails]: https://tails.boum.org/ [Template]: /doc/template-implementation [terminal emulator]: https://en.wikipedia.org/wiki/Terminal_emulator -[this message]: http://groups.google.com/group/qubes-devel/msg/6412170cfbcb4cc5 +[this message]: https://groups.google.com/group/qubes-devel/msg/6412170cfbcb4cc5 [this page]: /doc/vm-sudo/ [Tor]: https://www.torproject.org/ [USB]: /doc/usb-devices diff --git a/user/common-tasks/software-update-domu.md b/user/common-tasks/software-update-domu.md index b01e3ec5..659954df 100644 --- a/user/common-tasks/software-update-domu.md +++ b/user/common-tasks/software-update-domu.md @@ -324,7 +324,7 @@ Note that the app will autostart only when the AppVM starts. If you would like t [security]: /security/ [TemplateBasedVMs]: /doc/glossary/#templatebasedvm [testing]: /doc/testing -[RPM Fusion]: http://rpmfusion.org/ +[RPM Fusion]: https://rpmfusion.org/ [service framework]: /doc/qubes-service/ [How to Reinstall a TemplateVM]: /doc/reinstall-template/ [installing contributed packages]: /doc/installing-contributed-packages/