From 35c92a275a6a81557af37a4ed2228dd75a8c8a3c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 29 Oct 2020 17:26:30 -0500 Subject: [PATCH] http -> https --- README.rst | 24 ++++++++++++------------ contrib/maxima/cns.mac | 2 +- contrib/maxima/pml.mac | 2 +- doc/Makefile | 2 +- grudge/tools.py | 2 +- setup.py | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.rst b/README.rst index 4e3d0430..95400fe8 100644 --- a/README.rst +++ b/README.rst @@ -18,26 +18,26 @@ and accurately. It relies on -* `numpy <http://pypi.org/project/numpy>`_ for arrays -* `modepy <http://pypi.org/project/modepy>`_ for modes and nodes on simplices -* `meshmode <http://pypi.org/project/meshmode>`_ for modes and nodes on simplices -* `loopy <http://pypi.org/project/loopy>`_ for fast array operations -* `leap <http://pypi.org/project/leap>`_ for time integration -* `dagrt <http://pypi.org/project/dagrt>`_ as an execution runtime -* `pytest <http://pypi.org/project/pytest>`_ for automated testing +* `numpy <https://pypi.org/project/numpy>`_ for arrays +* `modepy <https://pypi.org/project/modepy>`_ for modes and nodes on simplices +* `meshmode <https://pypi.org/project/meshmode>`_ for modes and nodes on simplices +* `loopy <https://pypi.org/project/loopy>`_ for fast array operations +* `leap <https://pypi.org/project/leap>`_ for time integration +* `dagrt <https://pypi.org/project/dagrt>`_ as an execution runtime +* `pytest <https://pypi.org/project/pytest>`_ for automated testing and, indirectly, -* `PyOpenCL <http://pypi.org/project/pyopencl>`_ as computational infrastructure +* `PyOpenCL <https://pypi.org/project/pyopencl>`_ as computational infrastructure PyOpenCL is likely the only package you'll have to install by hand, all the others will be installed automatically. .. image:: https://badge.fury.io/py/grudge.png - :target: http://pypi..org/project/grudge + :target: https://pypi..org/project/grudge Resources: -* `documentation <http://documen.tician.de/grudge>`_ -* `wiki home page <http://wiki.tiker.net/Grudge>`_ -* `source code via git <http://gitlab.tiker.net/inducer/grudge>`_ +* `documentation <https://documen.tician.de/grudge>`_ +* `wiki home page <https://wiki.tiker.net/Grudge>`_ +* `source code via git <https://gitlab.tiker.net/inducer/grudge>`_ diff --git a/contrib/maxima/cns.mac b/contrib/maxima/cns.mac index 7bf5640f..7ae1a13b 100644 --- a/contrib/maxima/cns.mac +++ b/contrib/maxima/cns.mac @@ -1,5 +1,5 @@ /* compare formulation in JSH/TW with - * http://en.wikipedia.org/wiki/Navier%E2%80%93Stokes_equations#Compressible_flow_of_Newtonian_fluids + * https://en.wikipedia.org/wiki/Navier%E2%80%93Stokes_equations#Compressible_flow_of_Newtonian_fluids */ kill(all); diff --git a/contrib/maxima/pml.mac b/contrib/maxima/pml.mac index 0068fac2..e65eaf1d 100644 --- a/contrib/maxima/pml.mac +++ b/contrib/maxima/pml.mac @@ -4,7 +4,7 @@ load("maxwellbase.mac"); /* See S.G. Johnson, “Notes on Perfectly Matched Layers,†2008; -http://math.mit.edu/~stevenj/18.369/pml.pdf. +https://math.mit.edu/~stevenj/18.369/pml.pdf. */ coords:[x,y,z]; diff --git a/doc/Makefile b/doc/Makefile index 7f8ed545..e092de69 100644 --- a/doc/Makefile +++ b/doc/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://sphinx-doc.org/) endif # Internal variables. diff --git a/grudge/tools.py b/grudge/tools.py index 4872962e..25018b53 100644 --- a/grudge/tools.py +++ b/grudge/tools.py @@ -130,7 +130,7 @@ def partial_to_all_subset_indices(subsets, base=0): # {{{ OrderedSet -# Source: http://code.activestate.com/recipes/576694-orderedset/ +# Source: https://code.activestate.com/recipes/576694-orderedset/ # Author: Raymond Hettinger # License: MIT diff --git a/setup.py b/setup.py index e8b61ae1..03933286 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def main(): author="Andreas Kloeckner", author_email="inform@tiker.net", license="MIT", - url="http://github.com/inducer/grudge", + url="https://github.com/inducer/grudge", classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', -- GitLab