Skip to content

Commit 09a0891

Browse files
authored
Merge pull request andialbrecht#400 from jdufresne/https
Use https:// for URLs where available
2 parents f75f586 + 2321a6b commit 09a0891

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ Documentation
4747
https://sqlparse.readthedocs.io/en/latest/
4848

4949
Discussions
50-
http://groups.google.com/group/sqlparse
50+
https://groups.google.com/forum/#!forum/sqlparse
5151

5252
Issues/Bugs
5353
https://github.com/andialbrecht/sqlparse/issues
5454

5555
Online Demo
56-
http://sqlformat.org
56+
https://sqlformat.org/
5757

5858

5959
python-sqlparse is licensed under the BSD license.
@@ -62,6 +62,6 @@ Parts of the code are based on pygments written by Georg Brandl and others.
6262
pygments-Homepage: http://pygments.org/
6363

6464
.. |buildstatus| image:: https://secure.travis-ci.org/andialbrecht/sqlparse.png?branch=master
65-
.. _buildstatus: http://travis-ci.org/#!/andialbrecht/sqlparse
65+
.. _buildstatus: https://travis-ci.org/#!/andialbrecht/sqlparse
6666
.. |coverage| image:: https://coveralls.io/repos/andialbrecht/sqlparse/badge.svg?branch=master&service=github
6767
.. _coverage: https://coveralls.io/github/andialbrecht/sqlparse?branch=master

docs/source/intro.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Download & Installation
66
-----------------------
77

88
The latest released version can be obtained from the `Python Package
9-
Index (PyPI) <http://pypi.python.org/pypi/sqlparse/>`_. To extract the
9+
Index (PyPI) <https://pypi.python.org/pypi/sqlparse/>`_. To extract the
1010
install the module system-wide run
1111

1212
.. code-block:: bash
@@ -136,8 +136,8 @@ locally.
136136

137137
Please file bug reports and feature requests on the project site at
138138
https://github.com/andialbrecht/sqlparse/issues/new or if you have
139-
code to contribute upload it to http://codereview.appspot.com and
139+
code to contribute upload it to https://codereview.appspot.com/ and
140140
add [email protected] as reviewer.
141141

142142
For more information about the review tool and how to use it visit
143-
it's project page: http://code.google.com/p/rietveld.
143+
it's project page: https://github.com/rietveld-codereview/rietveld

docs/source/ui.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ User Interfaces
77
hints.
88

99
``sqlformat.appspot.com``
10-
An example `Google App Engine <http://code.google.com/appengine/>`_
10+
An example `Google App Engine <https://cloud.google.com/appengine/>`_
1111
application that exposes the formatting features using a web front-end.
12-
See http://sqlformat.appspot.com for details.
12+
See https://sqlformat.org/ for details.
1313
The source for this application is available from a source code check out
1414
of the :mod:`sqlparse` module (see :file:`extras/appengine`).
1515

examples/extract_table_names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# SELECT statements.
1111
#
1212
# See:
13-
# http://groups.google.com/group/sqlparse/browse_thread/thread/b0bd9a022e9d4895
13+
# https://groups.google.com/forum/#!forum/sqlparse/browse_thread/thread/b0bd9a022e9d4895
1414

1515
import sqlparse
1616
from sqlparse.sql import IdentifierList, Identifier

tests/conftest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ def filepath():
1616
"""Returns full file path for test files."""
1717

1818
def make_filepath(filename):
19-
# http://stackoverflow.com/questions/18011902/parameter-to-a-fixture
19+
# https://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function
2020
# Alternate solution is to use parametrization `indirect=True`
21-
# http://stackoverflow.com/a/33879151
21+
# https://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function/33879151#33879151
2222
# Syntax is noisy and requires specific variable names
2323
return os.path.join(FILES_DIR, filename)
2424

@@ -30,9 +30,9 @@ def load_file(filepath):
3030
"""Opens filename with encoding and return its contents."""
3131

3232
def make_load_file(filename, encoding='utf-8'):
33-
# http://stackoverflow.com/questions/18011902/parameter-to-a-fixture
33+
# https://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function
3434
# Alternate solution is to use parametrization `indirect=True`
35-
# http://stackoverflow.com/a/33879151
35+
# https://stackoverflow.com/questions/18011902/py-test-pass-a-parameter-to-a-fixture-function/33879151#33879151
3636
# Syntax is noisy and requires specific variable names
3737
# And seems to be limited to only 1 argument.
3838
with io.open(filepath(filename), encoding=encoding) as f:

0 commit comments

Comments
 (0)