Skip to content

Commit f98c45b

Browse files
committed
Convert links to HTTPS
1 parent 1ccac0b commit f98c45b

File tree

14 files changed

+199
-199
lines changed

14 files changed

+199
-199
lines changed

CHANGELOG.rst

Lines changed: 172 additions & 172 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ Download
4141
--------
4242

4343
Breathe is available from github and `PyPI, the Python Package Index
44-
<http://pypi.python.org/pypi/breathe>`_. It can be installed with::
44+
<https://pypi.org/project/breathe/>`_. It can be installed with::
4545

4646
pip install breathe
4747

4848
Documentation
4949
-------------
5050

51-
The documentation is available `here <http://breathe.readthedocs.org/>`__. Thank
52-
you to the people running `Read the Docs <http://readthedocs.org>`_ for such an
51+
The documentation is available `here <https://breathe.readthedocs.io/>`__. Thank
52+
you to the people running `Read the Docs <https://readthedocs.org>`_ for such an
5353
excellent service.
5454

5555
The source for the documentation is in the ``documentation`` folder if you want
@@ -99,8 +99,8 @@ Mailing List Archives
9999
The archive for the Google groups list can be found
100100
`here <https://groups.google.com/forum/#!forum/sphinx-breathe>`__.
101101

102-
The previous mailing list was on `librelist.com <http://librelist.com>`__ and the
103-
archives are available `here <http://librelist.com/browser/breathe/>`__.
102+
The previous mailing list was on `librelist.com <https://librelist.com>`__ and the
103+
archives are available `here <https://librelist.com/browser/breathe/>`__.
104104

105105
Please post new questions as GitHub issues.
106106

@@ -123,7 +123,7 @@ Examples of projects that use Breathe:
123123
- `Zephyr Project <https://github.com/zephyrproject-rtos/zephyr>`_
124124
- `Plaid ML <https://github.com/plaidml/plaidml>`_
125125
- `Sony's Neural Network Libraries <https://github.com/sony/nnabla>`_
126-
- `fmt <http://fmtlib.net/latest>`_
126+
- `fmt <https://fmt.dev/latest/>`_
127127

128128
Release
129129
-------
@@ -156,4 +156,4 @@ Changelog
156156
---------
157157

158158
See the `CHANGELOG.rst
159-
<https://github.com/michaeljones/breathe/blob/master/CHANGELOG.rst>`_
159+
<https://github.com/breathe-doc/breathe/blob/master/CHANGELOG.rst>`_

breathe/parser/compoundsuper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def format_boolean(self, input_data, input_name=""):
4040

4141
#
4242
# If you have installed IPython you can uncomment and use the following.
43-
# IPython is available from http://ipython.scipy.org/.
43+
# IPython is available from https://ipython.org/.
4444
#
4545

4646
## from IPython.Shell import IPShellEmbed

breathe/parser/indexsuper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def format_boolean(self, input_data, input_name=""):
3737

3838
#
3939
# If you have installed IPython you can uncomment and use the following.
40-
# IPython is available from http://ipython.scipy.org/.
40+
# IPython is available from https://ipython.org/.
4141
#
4242

4343
## from IPython.Shell import IPShellEmbed

breathe/renderer/sphinxrenderer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def __init__(self, document):
354354
def visit_desc_signature(self, node):
355355
# Find the last signature node because it contains the actual declarator
356356
# rather than "template <...>". In Sphinx 1.4.1 we'll be able to use sphinx_cpp_tagname:
357-
# https://github.com/michaeljones/breathe/issues/242
357+
# https://github.com/breathe-doc/breathe/issues/242
358358
self.declarator = node
359359

360360
def visit_desc_signature_line(self, node):
@@ -1507,7 +1507,7 @@ def visit_docpara(self, node) -> list[Node]:
15071507
break
15081508
nodelist.pop()
15091509

1510-
# https://github.com/michaeljones/breathe/issues/827
1510+
# https://github.com/breathe-doc/breathe/issues/827
15111511
# verbatim nodes should not be in a paragraph:
15121512
if len(nodelist) == 1 and isinstance(nodelist[0], nodes.literal_block):
15131513
return nodelist
@@ -2187,7 +2187,7 @@ def visit_friendclass(self, node) -> list[Node]:
21872187

21882188
typ = "".join(n.astext() for n in self.render(node.get_type()))
21892189
# in Doxygen < 1.9 the 'friend' part is there, but afterwards not
2190-
# https://github.com/michaeljones/breathe/issues/616
2190+
# https://github.com/breathe-doc/breathe/issues/616
21912191
assert typ in ("friend class", "friend struct", "class", "struct")
21922192
if not typ.startswith("friend "):
21932193
typ = "friend " + typ

documentation/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DEBUG ?= -P
1212

1313
# User-friendly check for sphinx-build
1414
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
15-
$(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/)
15+
$(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/)
1616
endif
1717

1818
# Internal variables.

documentation/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if errorlevel 9009 (
5757
echo.may add the Sphinx directory to PATH.
5858
echo.
5959
echo.If you don't have Sphinx installed, grab it from
60-
echo.http://sphinx-doc.org/
60+
echo.https://www.sphinx-doc.org/
6161
exit /b 1
6262
)
6363

documentation/source/codeguide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Doing the Parsing
103103
~~~~~~~~~~~~~~~~~
104104

105105
To get things up and running quickly, I have used the `generateDS
106-
<http://www.rexx.com/~dkuhlman/generateDS.html>`_ project to help create
106+
<https://pypi.org/project/generateDS/>`_ project to help create
107107
classes to parse the doxygen xml output. The script automatically creates the
108108
``compound.py``, ``compoundsuper.py``, ``index.py`` and ``indexsuper.py`` files
109109
that you can see inside ``breathe/parser/doxygen``.

documentation/source/credits.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Thank you to:
3232
For their contributions; reporting bugs, suggesting features, improving the code
3333
and working on the documentation. And thanks to:
3434

35-
- Dimitri van Heesch for `Doxygen <http://www.stack.nl/~dimitri/doxygen/>`_.
36-
- Georg Brandl for `Sphinx <http://sphinx.pocoo.org>`_.
37-
- David Goodger for `Docutils <http://docutils.sourceforge.net/>`_ and reStructuredText.
35+
- Dimitri van Heesch for `Doxygen <https://www.doxygen.nl/>`_.
36+
- Georg Brandl for `Sphinx <https://www.sphinx-doc.org/>`_.
37+
- David Goodger for `Docutils <https://docutils.sourceforge.io/>`_ and reStructuredText.
3838

3939
And thank you to whoever made the ``haiku`` theme for Sphinx.

documentation/source/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ relies on the Doxygen's xml output.
1919
.. warning::
2020

2121
This documentation is built from the latest `Breathe github project
22-
<https://github.com/michaeljones/breathe>`_ code. It does not necessarily
22+
<https://github.com/breathe-doc/breathe/>`_ code. It does not necessarily
2323
reflect a released version of Breathe on PyPI.
2424

2525
.. only:: documentation_build_development
@@ -28,7 +28,7 @@ relies on the Doxygen's xml output.
2828

2929
This build of the documentation is not from a specific tagged release of
3030
Breathe. It reflects a work in progress state of Breathe. Please see the
31-
`github repository <https://github.com/michaeljones/breathe>`_ for a more
31+
`github repository <https://github.com/breathe-doc/breathe/>`_ for a more
3232
official source of information.
3333

3434

@@ -98,14 +98,14 @@ Download
9898

9999
Breathe is available from:
100100

101-
* `PyPI, the Python Package Index <http://pypi.python.org/pypi/breathe>`_
102-
* `Github <https://github.com/michaeljones/breathe>`_
101+
* `PyPI, the Python Package Index <https://pypi.org/project/breathe/>`_
102+
* `Github <https://github.com/breathe-doc/breathe/>`_
103103

104104
License
105105
-------
106106

107107
Breathe is under the `BSD license
108-
<https://github.com/michaeljones/breathe/blob/master/LICENSE>`_.
108+
<https://github.com/breathe-doc/breathe/blob/master/LICENSE>`_.
109109

110110
In a Nutshell
111111
-------------

0 commit comments

Comments
 (0)