Skip to content

Commit 65ed476

Browse files
authored
Merge pull request #430 from paulmenzel/use-secure-https-urls-where-possible
Use secure HTTPS URLs where possible
2 parents d5e0c00 + a75162e commit 65ed476

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PROJECT(libgpuarray C)
55
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules/")
66

77
# -Wall is unbelieveably noisy with Visual Studio:
8-
# http://stackoverflow.com/q/4001736/3257826
8+
# https://stackoverflow.com/q/4001736/3257826
99
if(MSVC)
1010
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W3")
1111
else()

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ with a log of the build messages to abergeron@gmail.com.
55
Requirements:
66

77
- either an OpenCL runtime (with headers) or the CUDA toolkit
8-
- CMake [ http://cmake.org ] (to build)
8+
- CMake [ https://cmake.org ] (to build)
99

1010
Run CMake on the CMakeList.txt file in src/ and build according to
1111
your platform. Set CMAKE_INSTALL_PREFIX to your desired path if you
@@ -21,4 +21,4 @@ There are instruction for installation in the CMake file which make
2121
install on Windows.
2222

2323
If you also want the python bindings, run 'python setup.py install'
24-
after building and installing the library which will install pygpu.
24+
after building and installing the library which will install pygpu.

doc/_templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
(function() {
1111
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
12-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
12+
ga.src = 'https://ssl.google-analytics.com/ga.js';
1313
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
1414
})();
1515
</script>

doc/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ install step. It is up to you to copy the headers and libraries to an
175175
appropriate place.
176176

177177
If you don't have Visual Studio installed, you can get the free
178-
Express version from `here <http://www.visualstudio.com/>`_ in the
179-
downloads section (select the "for Windows" edition).
178+
Express version from `here <https://www.visualstudio.com/>`_ in the
179+
downloads section (select the "for windows" edition).
180180

181181
.. warning::
182182
While you may get the library to compile using cygwin, this is not
@@ -226,7 +226,7 @@ you can confirm which device it is running on.
226226
only the codename of the architecture the GPU belongs to (e.g.
227227
'Tahiti').
228228

229-
.. _cmake: http://cmake.org/
229+
.. _cmake: https://cmake.org/
230230

231231
.. _clblas: https://github.com/clMathLibraries/clBLAS
232232

@@ -238,10 +238,10 @@ you can confirm which device it is running on.
238238

239239
.. _check: http://check.sourceforge.net/
240240

241-
.. _python: http://python.org/
241+
.. _python: https://python.org/
242242

243243
.. _cython: http://cython.org/
244244

245-
.. _nosetests: http://nose.readthedocs.org/en/latest/
245+
.. _nosetests: https://nose.readthedocs.org/en/latest/
246246

247247
.. _mako: http://www.makotemplates.org/

src/util/xxhash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xxHash - Fast Hash algorithm
33
Copyright (C) 2012-2015, Yann Collet
44
5-
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
5+
BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
66
77
Redistribution and use in source and binary forms, with or without
88
modification, are permitted provided that the following conditions are

src/util/xxhash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Header File
77
Copyright (C) 2012-2015, Yann Collet.
88
9-
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
9+
BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
1010
1111
Redistribution and use in source and binary forms, with or without
1212
modification, are permitted provided that the following conditions are

0 commit comments

Comments
 (0)