Skip to content

Commit 7fa3a45

Browse files
josephwssbarnea
authored andcommitted
Use https: for URLs.
These links are all now available over TLS. Update to https: URLs. In most cases this is just adding an 's', but also follow redirections to pypa.io
1 parent 1ca920e commit 7fa3a45

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://editorconfig.org/
22

33
# top-most EditorConfig file
44
root = true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://stackoverflow.com/questions/5533050/gitignore-exclude-folder-but-include-specific-subfolder
1+
# See https://stackoverflow.com/questions/5533050/gitignore-exclude-folder-but-include-specific-subfolder
22
# to understand pattern used to include .idea/codeStyleSettings.xml but not the rest of .idea/
33
!.idea/
44
.idea/*

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Jira Python Library
2020
------------
2121

2222
.. image:: https://readthedocs.org/projects/jira/badge/?version=master
23-
:target: http://jira.readthedocs.io
23+
:target: https://jira.readthedocs.io/
2424

2525
.. image:: https://travis-ci.com/pycontribs/jira.svg?branch=master
2626
:target: https://travis-ci.com/pycontribs/jira
@@ -77,15 +77,15 @@ By default only the basic library dependencies are installed, so if you want
7777
to use the ``cli`` tool or other optional dependencies do perform a full
7878
installation using ``pip install jira[opt,cli,test]``
7979

80-
.. _virtualenv: http://www.virtualenv.org/en/latest/index.html
80+
.. _virtualenv: https://virtualenv.pypa.io/
8181

8282

8383
Usage
8484
-----
8585

8686
See the documentation_ for full details.
8787

88-
.. _documentation: http://jira.readthedocs.org/en/latest/
88+
.. _documentation: https://jira.readthedocs.org/en/latest/
8989

9090

9191
Development
@@ -128,16 +128,16 @@ In addition to all the contributors we would like to thank to these companies:
128128

129129
.. _Atlassian: https://www.atlassian.com/
130130
.. _Jira: https://pycontribs.atlassian.net
131-
.. _JetBrains: http://www.jetbrains.com
132-
.. _PyCharm: http://www.jetbrains.com/pycharm/
131+
.. _JetBrains: https://www.jetbrains.com/
132+
.. _PyCharm: https://www.jetbrains.com/pycharm/
133133
.. _Travis: https://travis-ci.org/
134134
.. _navicat: https://www.navicat.com/
135135

136136
.. image:: https://raw.githubusercontent.com/pycontribs/resources/master/logos/x32/logo-atlassian.png
137-
:target: http://www.atlassian.com
137+
:target: https://www.atlassian.com/
138138

139139
.. image:: https://raw.githubusercontent.com/pycontribs/resources/master/logos/x32/logo-pycharm.png
140-
:target: http://www.jetbrains.com/
140+
:target: https://www.jetbrains.com/
141141

142142
.. image:: https://raw.githubusercontent.com/pycontribs/resources/master/logos/x32/logo-navicat.png
143-
:target: http://www.navicat.com/
143+
:target: https://www.navicat.com/

docs/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Installation
44
.. contents:: Contents
55
:local:
66

7-
The easiest (and best) way to install jira-python is through `pip <http://www.pip-installer.org/>`_::
7+
The easiest (and best) way to install jira-python is through `pip <https://pip.pypa.io/>`_::
88

99
$ pip install jira
1010

1111
This will handle the client itself as well as the requirements.
1212

13-
If you're going to run the client standalone, we strongly recommend using a `virtualenv <http://www.virtualenv.org/>`_,
13+
If you're going to run the client standalone, we strongly recommend using a `virtualenv <https://virtualenv.pypa.io/>`_,
1414
which pip can also set up for you::
1515

1616
$ pip -E jira_python install jira
@@ -30,10 +30,10 @@ Dependencies
3030

3131
Python 3.5+ is required.
3232

33-
- :py:mod:`requests` - `python-requests <http://docs.python-requests.org>`_ library handles the HTTP business. Usually, the latest version available at time of release is the minimum version required; at this writing, that version is 1.2.0, but any version >= 1.0.0 should work.
33+
- :py:mod:`requests` - `python-requests <https://pypi.org/project/requests/>`_ library handles the HTTP business. Usually, the latest version available at time of release is the minimum version required; at this writing, that version is 1.2.0, but any version >= 1.0.0 should work.
3434
- :py:mod:`requests-oauthlib` - Used to implement OAuth. The latest version as of this writing is 0.3.3.
3535
- :py:mod:`requests-kerberos` - Used to implement Kerberos.
36-
- :py:mod:`ipython` - The `IPython enhanced Python interpreter <http://ipython.org>`_ provides the fancy chrome used by :ref:`jirashell-label`.
36+
- :py:mod:`ipython` - The `IPython enhanced Python interpreter <https://ipython.org>`_ provides the fancy chrome used by :ref:`jirashell-label`.
3737
- :py:mod:`filemagic` - This library handles content-type autodetection for things like image uploads. This will only work on a system that provides libmagic; Mac and Unix will almost always have it preinstalled, but Windows users will have to use Cygwin or compile it natively. If your system doesn't have libmagic, you'll have to manually specify the ``contentType`` parameter on methods that take an image object, such as project and user avatar creation.
3838

3939
Installing through :py:mod:`pip` takes care of these dependencies for you.

docs/jirashell.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ it, and bang your elbows -- trial and error. A REST design is especially well-su
77

88
Run it from the command line::
99

10-
$ jirashell -s http://jira.atlassian.com
11-
<Jira Shell (http://jira.atlassian.com)>
10+
$ jirashell -s https://jira.atlassian.com
11+
<Jira Shell (https://jira.atlassian.com)>
1212

1313
*** Jira shell active; client is in 'jira'. Press Ctrl-D to exit.
1414

jira/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2269,7 +2269,7 @@ def create_temp_project_avatar(
22692269
22702270
Avatar images are specified by a filename, size, and file object. By default, the client will attempt to
22712271
autodetect the picture's content type: this mechanism relies on libmagic and will not work out of the box
2272-
on Windows systems (see http://filemagic.readthedocs.org/en/latest/guide.html for details on how to install
2272+
on Windows systems (see https://filemagic.readthedocs.io/en/latest/guide.html for details on how to install
22732273
support). The ``contentType`` argument can be used to explicitly set the value (note that Jira will reject any
22742274
type other than the well-known ones for images, e.g. ``image/jpg``, ``image/png``, etc.)
22752275

tests/start-jira.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rm jira.log
66
atlas-run-standalone --product jira --http-port 2990 \
77
-B -nsu -o --threads 2.0C </dev/zero >jira.log 2>&1 &
88

9-
printf "Waiting for Jira to start respinding on $JIRA_URL "
9+
printf "Waiting for Jira to start responding on $JIRA_URL "
1010
until $(curl --output /dev/null --silent --head --fail $JIRA_URL); do
1111
printf '.'
1212
sleep 5

0 commit comments

Comments
 (0)