Skip to content

Commit 64d3374

Browse files
committed
Change all julialang.org links to https
1 parent b9a541e commit 64d3374

File tree

684 files changed

+730
-728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

684 files changed

+730
-728
lines changed

Diff for: CONTRIBUTING.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Notes for Julia Contributors
22

3-
Hi! If you are new to the Julia community: welcome, and thanks for trying Julia. Please be sure to respect our [community standards](http://julialang.org/community/standards/) in all interactions.
3+
Hi! If you are new to the Julia community: welcome, and thanks for trying Julia. Please be sure to respect our [community standards](https://julialang.org/community/standards/) in all interactions.
44

55
## Learning Julia
66

7-
[The learning page](http://julialang.org/learning/) has a great list of resources for new and experienced users alike. [This tutorial video](https://www.youtube.com/watch?v=vWkgEddb4-A) is one recommended starting point, as is the "[Invitation to Julia](https://www.youtube.com/watch?v=gQ1y5NUD_RI)" workshop video from JuliaCon 2015 ([slide materials here](https://github.com/dpsanders/invitation_to_julia)). The [Julia documentation](http://docs.Julialang.org/en/latest/) covers the language and core library features, and is [searchable](http://docs.Julialang.org/en/latest/search/). (note: Javascript required).
7+
[The learning page](https://julialang.org/learning/) has a great list of resources for new and experienced users alike. [This tutorial video](https://www.youtube.com/watch?v=vWkgEddb4-A) is one recommended starting point, as is the "[Invitation to Julia](https://www.youtube.com/watch?v=gQ1y5NUD_RI)" workshop video from JuliaCon 2015 ([slide materials here](https://github.com/dpsanders/invitation_to_julia)). The [Julia documentation](http://docs.Julialang.org/en/latest/) covers the language and core library features, and is [searchable](http://docs.Julialang.org/en/latest/search/). (note: Javascript required).
88

99
## Before filing an issue
1010

1111
- Reporting a potential bug? Please read the "[How to file a bug report](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#how-to-file-a-bug-report)" section to make sure that all necessary information is included.
1212

1313
- Contributing code? Be sure to review the [contributor checklist](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#contributor-checklist) for helpful tips on the tools we use to build Julia.
1414

15-
- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](http://docs.julialang.org/en/release-0.4/manual/packages/#package-development). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org/). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests.
15+
- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](https://docs.julialang.org/en/release-0.4/manual/packages/#package-development). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org/). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests.
1616

1717
## Contributor Checklist
1818

@@ -56,7 +56,7 @@ A useful bug report filed as a GitHub issue provides information about how to re
5656

5757
### Contributing a Julia package
5858

59-
Julia has a built-in [package manager](https://github.com/JuliaLang/METADATA.jl) based on `git`. A number of [packages](http://pkg.julialang.org/) across many domains are already available for Julia. Developers are encouraged to provide their libraries as a Julia package. The Julia manual provides instructions on [creating Julia packages](http://docs.julialang.org/en/latest/manual/packages/).
59+
Julia has a built-in [package manager](https://github.com/JuliaLang/METADATA.jl) based on `git`. A number of [packages](http://pkg.julialang.org/) across many domains are already available for Julia. Developers are encouraged to provide their libraries as a Julia package. The Julia manual provides instructions on [creating Julia packages](https://docs.julialang.org/en/latest/manual/packages/).
6060

6161
For developers who need to wrap C libraries so that they can be called from Julia, the [Clang.jl](https://github.com/ihnorton/Clang.jl) package can help generate the wrappers automatically from the C header files.
6262

@@ -262,19 +262,19 @@ Make sure that [Travis](http://www.travis-ci.org) greenlights the pull request w
262262
## Resources
263263

264264
* Julia
265-
- **Homepage:** <http://julialang.org>
266-
- **Community:** <http://julialang.org/community/>
265+
- **Homepage:** <https://julialang.org>
266+
- **Community:** <https://julialang.org/community/>
267267
- **IRC:** <http://webchat.freenode.net/?channels=Julia>
268268
- **Source code:** <https://github.com/JuliaLang/julia>
269269
- **Git clone URL:** <git://github.com/JuliaLang/julia.git>
270-
- **Documentation:** <http://julialang.org/manual/>
270+
- **Documentation:** <https://julialang.org/manual/>
271271
- **Status:** <http://status.julialang.org/>
272272
- **Code coverage:** <https://coveralls.io/r/JuliaLang/julia>
273273

274274
* Design of Julia
275275
- [Julia: A Fresh Approach to Numerical Computing](http://arxiv.org/pdf/1411.1607v3.pdf)
276-
- [Julia: A Fast Dynamic Language for Technical Computing](http://julialang.org/images/julia-dynamic-2012-tr.pdf)
277-
- [All Julia Publications](http://julialang.org/publications/)
276+
- [Julia: A Fast Dynamic Language for Technical Computing](https://julialang.org/images/julia-dynamic-2012-tr.pdf)
277+
- [All Julia Publications](https://julialang.org/publications/)
278278

279279
* Using GitHub
280280
- [Using Julia with GitHub (video)](http://www.youtube.com/watch?v=wnFYV3ZKtOg&feature=youtu.be)

Diff for: HISTORY.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Experimental language features
5151
------------------------------
5252

5353
* Support for
54-
[multi-threading](http://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental).
54+
[multi-threading](https://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental).
5555
Loops with independent iterations can be easily parallelized with the
5656
`Threads.@threads` macro.
5757

@@ -453,7 +453,7 @@ Deprecated or removed
453453
* `@unix_only` is deprecated in favor of `if is_unix()`
454454
* `@osx_only` is deprecated in favor of `if is_apple()`
455455
* `@linux_only` is deprecated in favor of `if is_linux()`
456-
* NOTE: Using `@static` could be useful/necessary when used in a function's local scope. See details at the section entitled [Handling Operating System Variation](http://docs.julialang.org/en/latest/manual/handling-operating-system-variation/#man-handling-operating-system-variation) in the manual.
456+
* NOTE: Using `@static` could be useful/necessary when used in a function's local scope. See details at the section entitled [Handling Operating System Variation](https://docs.julialang.org/en/latest/manual/handling-operating-system-variation/#man-handling-operating-system-variation) in the manual.
457457
458458
Command-line option changes
459459
---------------------------
@@ -510,7 +510,7 @@ New language features
510510
types instead of to their values. The function then returns an expression forming the
511511
body of the function to be called at run time ([#7311]).
512512
513-
* [Documentation system](http://docs.julialang.org/en/latest/manual/documentation/)
513+
* [Documentation system](https://docs.julialang.org/en/latest/manual/documentation/)
514514
for functions, methods, types and macros in packages and user code ([#8791]).
515515
516516
* The syntax `function foo end` can be used to introduce a generic function without
@@ -540,11 +540,11 @@ New language features
540540
* `++` is now parsed as an infix operator, but does not yet have a default definition ([#11030], [#11686]).
541541
542542
* Support for inter-task communication using `Channels` ([#12264]).
543-
See http://docs.julialang.org/en/latest/manual/parallel-computing/#channels for details.
543+
See https://docs.julialang.org/en/latest/manual/parallel-computing/#channels for details.
544544
545545
* `RemoteRef`s now point to remote channels. The remote channels can be of length greater than 1.
546546
Default continues to be of length 1 ([#12385]).
547-
See http://docs.julialang.org/en/latest/manual/parallel-computing/#remoterefs-and-abstractchannels for details.
547+
See https://docs.julialang.org/en/latest/manual/parallel-computing/#remoterefs-and-abstractchannels for details.
548548
549549
* `@__LINE__` special macro now available to reflect invocation source line number ([#12727]).
550550
@@ -1745,8 +1745,8 @@ Bugfixes and performance updates
17451745
17461746
Too numerous to mention.
17471747
1748-
[packages chapter]: http://docs.julialang.org/en/latest/manual/packages/
1749-
[sorting functions]: http://docs.julialang.org/en/latest/stdlib/sort/
1748+
[packages chapter]: https://docs.julialang.org/en/latest/manual/packages/
1749+
[sorting functions]: https://docs.julialang.org/en/latest/stdlib/sort/
17501750
[pairwise summation]: https://en.wikipedia.org/wiki/Pairwise_summation
17511751
[a448e080]: https://github.com/JuliaLang/julia/commit/a448e080dc736c7fb326426dfcb2528be36973d3
17521752
[5e3f074b]: https://github.com/JuliaLang/julia/commit/5e3f074b9173044a0a4219f9b285879ff7cec041

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ release-candidate: release testall
155155
@echo 6. Clean out old .tar.gz files living in deps/, "\`git clean -fdx\`" seems to work #"`
156156
@echo 7. Replace github release tarball with tarballs created from make light-source-dist and make full-source-dist
157157
@echo 8. Follow packaging instructions in DISTRIBUTING.md to create binary packages for all platforms
158-
@echo 9. Upload to AWS, update http://julialang.org/downloads and http://status.julialang.org/stable links
158+
@echo 9. Upload to AWS, update https://julialang.org/downloads and http://status.julialang.org/stable links
159159
@echo 10. Update checksums on AWS for tarball and packaged binaries
160160
@echo 11. Announce on mailing lists
161161
@echo 12. Change master to release-0.X in base/version.jl and base/version_git.sh as in 4cb1e20

Diff for: NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ Library improvements
276276
`JULIA_INPUT_COLOR` and `JULIA_ANSWER_COLOR` to `"bold"`.
277277
For example, one way of doing this is adding `ENV["JULIA_INPUT_COLOR"] = :bold`
278278
and `ENV["JULIA_ANSWER_COLOR"] = :bold` to the `.juliarc.jl` file. See the
279-
[manual section on customizing colors](http://docs.julialang.org/en/latest/manual/interacting-with-julia#Customizing-Colors-1)
279+
[manual section on customizing colors](https://docs.julialang.org/en/latest/manual/interacting-with-julia#Customizing-Colors-1)
280280
for more information.
281281
282282
* The default color for info messages has been changed from blue to cyan

Diff for: README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<a name="logo"/>
22
<div align="center">
3-
<a href="http://julialang.org/" target="_blank">
4-
<img src="http://julialang.org/images/logo_hires.png" alt="Julia Logo" width="210" height="142"></img>
3+
<a href="https://julialang.org/" target="_blank">
4+
<img src="https://julialang.org/images/logo_hires.png" alt="Julia Logo" width="210" height="142"></img>
55
</a>
66
</div>
77

@@ -14,19 +14,19 @@ Code Coverage: [![Coverage Status](https://coveralls.io/repos/JuliaLang/julia/ba
1414
## The Julia Language
1515

1616
Julia is a high-level, high-performance dynamic language for technical computing.
17-
The main homepage for Julia can be found at [julialang.org](http://julialang.org/).
17+
The main homepage for Julia can be found at [julialang.org](https://julialang.org/).
1818
This is the GitHub repository of Julia source code, including instructions for compiling and installing Julia, below.
1919

2020
## Resources
2121

22-
- **Homepage:** <http://julialang.org>
23-
- **Binaries:** <http://julialang.org/downloads/>
24-
- **Documentation:** <http://docs.julialang.org/>
22+
- **Homepage:** <https://julialang.org>
23+
- **Binaries:** <https://julialang.org/downloads/>
24+
- **Documentation:** <https://docs.julialang.org/>
2525
- **Packages:** <http://pkg.julialang.org/>
2626
- **Source code:** <https://github.com/JuliaLang/julia>
2727
- **Git clone URL:** <git://github.com/JuliaLang/julia.git>
2828
- **Discussion forum:** <https://discourse.julialang.org>
29-
- **Mailing lists:** <http://julialang.org/community/>
29+
- **Mailing lists:** <https://julialang.org/community/>
3030
- **Gitter:** <https://gitter.im/JuliaLang/julia>
3131
- **IRC:** <http://webchat.freenode.net/?channels=julia>
3232
- **Code coverage:** <https://coveralls.io/r/JuliaLang/julia>
@@ -100,7 +100,7 @@ the `julia` source directory, type `make testall`. You should see output
100100
that lists a series of tests being run; if they complete without
101101
error, you should be in good shape to start using Julia.
102102

103-
You can read about [getting started](http://docs.julialang.org/en/stable/manual/getting-started/) in the manual.
103+
You can read about [getting started](https://docs.julialang.org/en/stable/manual/getting-started/) in the manual.
104104

105105
If you are building a Julia package for distribution on Linux, OS X,
106106
or Windows, take a look at the detailed notes in
@@ -317,7 +317,7 @@ Julia uses the following external libraries, which are automatically downloaded
317317
[MPFR]: http://www.mpfr.org
318318
[libuv]: https://github.com/JuliaLang/libuv
319319
[libgit2]: https://libgit2.github.com/
320-
[utf8proc]: http://julialang.org/utf8proc/
320+
[utf8proc]: https://julialang.org/utf8proc/
321321
[libosxunwind]: https://github.com/JuliaLang/libosxunwind
322322
[libunwind]: http://www.nongnu.org/libunwind
323323
[libssh2]: https://www.libssh2.org
@@ -373,7 +373,7 @@ The Julia source code is organized as follows:
373373

374374
## Binary Installation
375375

376-
If you would rather not compile the latest Julia from source, platform-specific tarballs with pre-compiled binaries are also [available for download](http://julialang.org/downloads/).
376+
If you would rather not compile the latest Julia from source, platform-specific tarballs with pre-compiled binaries are also [available for download](https://julialang.org/downloads/).
377377

378378
You can either run the `julia` executable using its full path in the directory created above, or add that directory to your executable path so that you can run the Julia program from anywhere (in the current shell session):
379379

@@ -386,7 +386,7 @@ Now you should be able to run Julia like this:
386386
On Windows, double-click `usr/bin/julia.exe`.
387387

388388
If everything works correctly, you will see a Julia banner and an interactive prompt into which you can enter expressions for evaluation.
389-
You can read about [getting started](http://julialang.org/manual/getting-started) in the manual.
389+
You can read about [getting started](https://julialang.org/manual/getting-started) in the manual.
390390

391391
The following distributions include julia, but the versions may be out of date due to rapid development:
392392

@@ -427,4 +427,4 @@ is available through
427427
[Sublime-IJulia](https://github.com/quinnj/Sublime-IJulia) plugin
428428
enables interaction between IJulia and Sublime Text.
429429

430-
In the terminal, Julia makes great use of both control-key and meta-key bindings. To make the meta-key bindings more accessible, many terminal emulator programs (e.g., `Terminal`, `iTerm`, `xterm`, etc.) allow you to use the alt or option key as meta. See the section in the manual on [interacting with Julia](http://docs.julialang.org/en/latest/manual/interacting-with-julia/) for more details.
430+
In the terminal, Julia makes great use of both control-key and meta-key bindings. To make the meta-key bindings more accessible, many terminal emulator programs (e.g., `Terminal`, `iTerm`, `xterm`, etc.) allow you to use the alt or option key as meta. See the section in the manual on [interacting with Julia](https://docs.julialang.org/en/latest/manual/interacting-with-julia/) for more details.

Diff for: README.windows.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file describes how to install, or build, and use Julia on Windows.
44

55
For more general information about Julia, please see the
66
[main README](https://github.com/JuliaLang/julia/blob/master/README.md)
7-
or the [documentation](http://docs.julialang.org/).
7+
or the [documentation](https://docs.julialang.org/).
88

99

1010
## General Information for Windows
@@ -56,7 +56,7 @@ Both the 32-bit and 64-bit versions are supported.
5656
The 32-bit (i686) binary will run on either a 32-bit and 64-bit operating system.
5757
The 64-bit (x86_64) binary will only run on 64-bit Windows and will otherwise refuse to launch.
5858

59-
1. [Download](http://julialang.org/downloads) the latest version of Julia.
59+
1. [Download](https://julialang.org/downloads) the latest version of Julia.
6060
Extract the binary to a reasonable destination folder, e.g. `C:\julia`.
6161

6262
2. Double-click the `julia` shortcut to launch Julia.
@@ -161,7 +161,7 @@ The 64-bit (x86_64) binary will only run on 64-bit Windows and will otherwise re
161161
5. Setup Package Development Environment
162162

163163
1. The `Pkg` module in Base provides many convenient tools for [developing
164-
and publishing packages](http://docs.julialang.org/en/latest/manual/packages/).
164+
and publishing packages](https://docs.julialang.org/en/latest/manual/packages/).
165165
One of the packages added through pacman above was `openssh`, which will
166166
allow secure access to GitHub APIs. Follow GitHub's [guide](
167167
https://help.github.com/articles/generating-ssh-keys) to setting up SSH

Diff for: base/Enums.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module Enums
44

Diff for: base/LineEdit.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module LineEdit
44

Diff for: base/REPL.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module REPL
44

Diff for: base/REPLCompletions.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module REPLCompletions
44

Diff for: base/Terminals.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module Terminals
44

Diff for: base/abstractarray.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## Basic functions ##
44

Diff for: base/abstractarraymath.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## Basic functions ##
44

Diff for: base/array.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## array.jl: Dense arrays
44

Diff for: base/arraymath.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## Unary operators ##
44

Diff for: base/associative.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
# generic operations on associative collections
44

Diff for: base/asyncmap.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
using Base.Iterators.Enumerate
44

Diff for: base/atomics.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
using Core.Intrinsics: llvmcall
44

Diff for: base/base.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
"""
44
SystemError(prefix::AbstractString, [errno::Int32])

Diff for: base/base64.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
module Base64
44
import Base: read, write, close, eof, empty!

Diff for: base/bitarray.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## BitArray
44

Diff for: base/bool.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
## boolean conversions ##
44

Diff for: base/boot.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is a part of Julia. License is MIT: http://julialang.org/license
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
# commented-out definitions are implemented in C
44

0 commit comments

Comments
 (0)