Skip to content

Commit 3654752

Browse files
dbkindernashif
authored andcommitted
doc: use https for docs.zephyrproject.org references
doc site now supports https access Signed-off-by: David B. Kinder <[email protected]>
1 parent 531f8ed commit 3654752

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

doc/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Zephyr documentation Generation
66
These instructions will walk you through generating the Zephyr Project's
77
documentation on your local system using the same documentation sources
88
as we use to create the online documentation found at
9-
http://docs.zephyrproject.org
9+
https://docs.zephyrproject.org
1010

1111
Documentation overview
1212
**********************
@@ -26,13 +26,13 @@ their respective websites.
2626
The project's documentation contains the following items:
2727

2828
* ReStructuredText source files used to generate documentation found at the
29-
http://docs.zephyrproject.org website. Most of the reStructuredText sources
29+
https://docs.zephyrproject.org website. Most of the reStructuredText sources
3030
are found in the ``/doc`` directory, but others are stored within the
3131
code source tree near their specific component (such as ``/samples`` and
3232
``/boards``)
3333

3434
* Doxygen-generated material used to create all API-specific documents
35-
also found at http://docs.zephyrproject.org
35+
also found at https://docs.zephyrproject.org
3636

3737
* Script-generated material for kernel configuration options based on Kconfig
3838
files found in the source code tree

doc/contribute/contribute_guidelines.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ There are some imported or reused components of the Zephyr project that
5151
use other licensing, as described in `Zephyr Licensing`_.
5252

5353
.. _Zephyr Licensing:
54-
http://docs.zephyrproject.org/LICENSING.html
54+
https://docs.zephyrproject.org/LICENSING.html
5555

5656
Importing code into the Zephyr OS from other projects that use a license
5757
other than the Apache 2.0 license needs to be fully understood in
@@ -66,7 +66,7 @@ See `Contributing non-Apache 2.0 components`_ for more information about
6666
this contributing and review process for imported components.
6767

6868
.. _Contributing non-Apache 2.0 components:
69-
http://docs.zephyrproject.org/contribute/contribute_non-apache.html
69+
https://docs.zephyrproject.org/contribute/contribute_non-apache.html
7070

7171
.. _DCO:
7272

@@ -140,13 +140,13 @@ and how to set up your development environment as introduced in the Zephyr
140140
`Getting Started Guide`_.
141141

142142
.. _Getting Started Guide:
143-
http://docs.zephyrproject.org/getting_started/getting_started.html
143+
https://docs.zephyrproject.org/getting_started/getting_started.html
144144

145145
You should be familiar with common developer tools such as Git and CMake, and
146146
platforms such as GitHub.
147147

148148
If you haven't already done so, you'll need to create a (free) GitHub account
149-
on http://github.com and have Git tools available on your development system.
149+
on https://github.com and have Git tools available on your development system.
150150

151151
.. note::
152152
The Zephyr development workflow supports all 3 major operating systems
@@ -172,7 +172,7 @@ configurations, and a collection of subsystem tests. All of these are
172172
available for developers to contribute to and enhance.
173173

174174
.. _Source Tree Structure:
175-
http://docs.zephyrproject.org/kernel/overview/source_tree.html
175+
https://docs.zephyrproject.org/kernel/overview/source_tree.html
176176

177177
Pull Requests and Issues
178178
************************

doc/contribute/doc-guidelines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and about `Sphinx extensions`_ from their respective websites.
1919
.. _Sphinx extensions: http://www.sphinx-doc.org/en/stable/contents.html
2020
.. _reStructuredText: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html
2121
.. _Sphinx Inline Markup: http://sphinx-doc.org/markup/inline.html#inline-markup
22-
.. _Zephyr documentation: http://docs.zephyrproject.org
22+
.. _Zephyr documentation: https://docs.zephyrproject.org
2323

2424
This document provides a quick reference for commonly used reST and
2525
Sphinx-defined directives and roles used to create the documentation

doc/index.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Zephyr Project Documentation
99
Welcome to the Zephyr Project's documentation version |version|!
1010

1111
Documentation for the development branch of Zephyr can be found at
12-
http://docs.zephyrproject.org/
12+
https://docs.zephyrproject.org/
1313

1414
.. only:: (development or daily)
1515

1616
Welcome to the Zephyr Project's documentation. This is the documentation of the
1717
master tree under development (version |version|).
1818

1919
Documentation for tagged released versions of Zephyr can be found at
20-
``http://docs.zephyrproject.org/<version>``. The following documentation
20+
``https://docs.zephyrproject.org/<version>``. The following documentation
2121
versions are available:
2222

2323
`Zephyr 1.9.2`_ | `Zephyr 1.10.0`_ | `Zephyr 1.11.0`_ |
@@ -67,8 +67,8 @@ Source code for the Zephyr Project is maintained in the Zephyr Project's
6767

6868
* :ref:`genindex`
6969

70-
.. _Zephyr 1.13.0: http://docs.zephyrproject.org/1.13.0/
71-
.. _Zephyr 1.12.0: http://docs.zephyrproject.org/1.12.0/
72-
.. _Zephyr 1.11.0: http://docs.zephyrproject.org/1.11.0/
73-
.. _Zephyr 1.10.0: http://docs.zephyrproject.org/1.10.0/
74-
.. _Zephyr 1.9.2: http://docs.zephyrproject.org/1.9.0/
70+
.. _Zephyr 1.13.0: https://docs.zephyrproject.org/1.13.0/
71+
.. _Zephyr 1.12.0: https://docs.zephyrproject.org/1.12.0/
72+
.. _Zephyr 1.11.0: https://docs.zephyrproject.org/1.11.0/
73+
.. _Zephyr 1.10.0: https://docs.zephyrproject.org/1.10.0/
74+
.. _Zephyr 1.9.2: https://docs.zephyrproject.org/1.9.0/

doc/kernel/overview/source_tree.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ which are not described here.
2525

2626
:file:`doc`
2727
Zephyr technical documentation source files and tools used to
28-
generate the http://docs.zephyrproject.org web content.
28+
generate the https://docs.zephyrproject.org web content.
2929

3030
:file:`drivers`
3131
Device driver code.

doc/release-notes-1.10.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Build and Infrastructure
138138
either simple one-to-one translations of KBuild features or introduce
139139
new concepts that replace KBuild concepts. Please re-read the Getting
140140
Started guide
141-
(http://docs.zephyrproject.org/getting_started/getting_started.html)
141+
(https://docs.zephyrproject.org/getting_started/getting_started.html)
142142
with updated instructions for setting up and developing on your host-OS.
143143
You *will* need to port your own out-of-tree scripts and Makefiles to
144144
CMake.

doc/release-notes-1.13.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Documentation
259259
*************
260260
* Simplified and more maintainable theme applied to documentation.
261261
Latest and previous four releases regenerated and published to
262-
http://docs.zephyrproject.org
262+
https://docs.zephyrproject.org
263263
* Updated contributing guidelines
264264
* General organization cleanup and spell check on docs including content
265265
generated from Kconfig files and doxygen API comments.

0 commit comments

Comments
 (0)