Skip to content

Commit f645ffa

Browse files
committed
Merge pull request elixir-lang#563 from eksperimental/fix
update url to use https. standardize erlang.org/doc links to use www
2 parents c900ded + 440f3a6 commit f645ffa

21 files changed

+36
-36
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This projects holds the contents for Elixir website hosted at elixir-lang.org.
22

3-
It is automatically transformed by [Jekyll](http://github.com/mojombo/jekyll) into a static site.
3+
It is automatically transformed by [Jekyll](https://github.com/mojombo/jekyll) into a static site.
44

55
## Contributing
66

_includes/important-links.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ <h3 class="widget-title">Join the Community</h3>
33
<ul>
44
<li><a class="spec" href="irc://irc.freenode.net/elixir-lang">#elixir-lang on freenode IRC</a></li>
55
<li><a class="spec" href="http://elixir.meetup.com">Elixir meetups around the world</a></li>
6-
<li><a class="spec" href="http://groups.google.com/group/elixir-lang-talk">elixir-talk mailing list (questions)</a></li>
7-
<li><a class="spec" href="http://groups.google.com/group/elixir-lang-core">elixir-core mailing list (development)</a></li>
6+
<li><a class="spec" href="https://groups.google.com/group/elixir-lang-talk">elixir-talk mailing list (questions)</a></li>
7+
<li><a class="spec" href="https://groups.google.com/group/elixir-lang-core">elixir-core mailing list (development)</a></li>
88
<li><a class="spec" href="https://github.com/elixir-lang/elixir/issues">Issue tracker</a></li>
9-
<li><a class="spec" href="http://twitter.com/elixirlang">@elixirlang on Twitter</a></li>
9+
<li><a class="spec" href="https://twitter.com/elixirlang">@elixirlang on Twitter</a></li>
1010
</ul>
1111
</div>
1212

_includes/search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h3>
55
</div>
66

77
<div class="widget search">
8-
<form method="get" class="search-form" action="http://www.google.com/search">
8+
<form method="get" class="search-form" action="https://www.google.com/search">
99
<div>
1010
<input class="search-text" type="text" name="q" placeholder="Search..." id="searchfield">
1111
<input type="hidden" name="sitesearch" value="elixir-lang.org">

_includes/top.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h1 id="site-title">
4646
<li class="menu-item learning"><a class="spec" href="/learning.html">Learning</a></li>
4747
<li class="menu-item docs"><a class="spec" href="/docs.html">Docs</a></li>
4848
<li class="menu-item blog"><a class="spec" href="/blog/">Blog</a></li>
49-
<li class="menu-item packages"><a class="spec" href="http://hex.pm/">Packages</a></li>
49+
<li class="menu-item packages"><a class="spec" href="https://hex.pm/">Packages</a></li>
5050
</ul>
5151
</div>
5252
</div>

_posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ In order to customize this process, we are going to take a look at Erlang's erro
7474

7575
## Custom error handler
7676

77-
By default, Elixir (and Erlang) code is autoloaded. This means that, if we invoke `List.delete` and the module `List` was not loaded yet, the Erlang VM is going to look into the `ebin` directory (the directory where we put compiled files) and try to load it. This process is controlled by the [`error_handler` module in Erlang](http://erlang.org/doc/man/error_handler.html) via two callback functions: `undefined_function` and `undefined_lambda`.
77+
By default, Elixir (and Erlang) code is autoloaded. This means that, if we invoke `List.delete` and the module `List` was not loaded yet, the Erlang VM is going to look into the `ebin` directory (the directory where we put compiled files) and try to load it. This process is controlled by the [`error_handler` module in Erlang](http://www.erlang.org/doc/man/error_handler.html) via two callback functions: `undefined_function` and `undefined_lambda`.
7878

7979
As discussed in the previous section, we want to extend the error handler to actually stop the currently running process whenever a module is not found and resume the process only after we ensure the module is compiled. To do that, we can simply define our own error handler and ask Erlang to use it. Our custom error handler is defined as follows:
8080

_posts/2012-05-25-elixir-v0-5-0-released.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ With v0.5.0 finally out, we are committing to a stable syntax and a basic standa
3737

3838
## Looking forward
3939

40-
There are still many, many things to do! In the next months, we will continue working on growing our community, talks and other documentation material. A huge thanks to [Alexei Sholik](http://twitter.com/true_droid) who is moving this area forward.
40+
There are still many, many things to do! In the next months, we will continue working on growing our community, talks and other documentation material. A huge thanks to [Alexei Sholik](https://twitter.com/true_droid) who is moving this area forward.
4141

42-
We will also work on better integration and documentation on building Erlang systems. Erlang ships with the [Open Telecom Platform](http://en.wikipedia.org/wiki/Open_Telecom_Platform) which provides many tools to build distributed applications. In v0.5.0, all these tools are already available but we want to make the build process even simpler.
42+
We will also work on better integration and documentation on building Erlang systems. Erlang ships with the [Open Telecom Platform](https://en.wikipedia.org/wiki/Open_Telecom_Platform) which provides many tools to build distributed applications. In v0.5.0, all these tools are already available but we want to make the build process even simpler.
4343

4444
In parallel, we will improve our [documentation generation tool](https://github.com/elixir-lang/ex_doc) and [build tool](https://github.com/elixir-lang/elixir/tree/master/lib/mix) which will likely be merged into core when they are solid enough.
4545

_posts/2012-08-01-elixir-v0-6-0-released.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ When [we released version v0.5.0](/blog/2012/05/25/elixir-v0-5-0-released/), we
1919

2020
Our interactive shell (IEx) also had many improvements, thanks to the Elixir developer community. We now have easy access to documentation, remote shells, autocomplete and much more. In order to show you a bit of what you can do in this release, we have prepared a short (~6 min) screencast:
2121

22-
<iframe src="http://player.vimeo.com/video/46709928" class="video" width="600" height="337" allowfullscreen></iframe>
23-
<a href="http://vimeo.com/46709928">Elixir v0.6 quick tour - Mix and IEx</a> from <a href="http://vimeo.com/user3182384">Plataformatec</a> on <a href="http://vimeo.com">Vimeo</a>.
22+
<iframe src="https://player.vimeo.com/video/46709928" class="video" width="600" height="337" allowfullscreen></iframe>
23+
<a href="https://vimeo.com/46709928">Elixir v0.6 quick tour - Mix and IEx</a> from <a href="https://vimeo.com/user3182384">Plataformatec</a> on <a href="https://vimeo.com">Vimeo</a>.
2424

2525
That's it. For the next months, we will continue improving Elixir (you can see some ideas floating around in the [issues tracker](https://github.com/elixir-lang/elixir/issues)) but we will start to focus on other tools and libraries for the community.
2626

_posts/2012-11-18-elixir-v0-7-1-released.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is a minor release that contains a couple enhancements regarding UTF-8, [di
1313

1414
During this time traveling around, we have spoken at many conferences, as [Strange Loop](http://thestrangeloop.com/), [Øredev](http://oredev.org/), [QCon SP](http://qconsp.com/) and [Rupy](http://rupy.eu/) as well as at different companies. Developers from different backgrounds have shown interest in Elixir, [written about it](http://spin.atomicobject.com/2012/10/31/elixir-erlang-and-the-dining-philosophers/), joined us at #elixir-lang on freenode and contributed to the language. As of today, Elixir is powered by 51 different contributors!
1515

16-
In case you missed any of those conferences, [the talk I presented at Øredev is available and you can watch it now](http://vimeo.com/53221562). The slides are also available below.
16+
In case you missed any of those conferences, [the talk I presented at Øredev is available and you can watch it now](https://vimeo.com/53221562). The slides are also available below.
1717

1818
If you want to hear more about Elixir at a conference or an event, please let us know. Thank you and don't forget to [give Elixir a try](/getting-started/introduction.html)!
1919

_posts/2013-05-02-elixir-on-xen.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can learn more about Xen and the LING VM on the [Erlang on Xen website](http
1818

1919
## Getting started
2020

21-
In order to run Elixir on the LING VM, you need to produce a Xen image of your Elixir project. This can be done with the help of the [lingex project](http://github.com/maximk/lingex), created by the LING VM team.
21+
In order to run Elixir on the LING VM, you need to produce a Xen image of your Elixir project. This can be done with the help of the [lingex project](https://github.com/maximk/lingex), created by the LING VM team.
2222

2323
Producing an Elixir image using the free Erlang on Xen Build Service requires just a few steps:
2424

_posts/2013-05-23-elixir-v0-9-0-released.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: Releases
66
excerpt: Elixir v0.9.0 is released with support for reducers, umbrella projects, faster compilation times and dropped support for R15 and earlier OTP versions.
77
---
88

9-
While [Programming Elixir](http://pragprog.com/book/elixir/programming-elixir) was being announced, we have been working on Elixir v0.9.0 which is finally out. This release contains new features, important performance optimizations and bug fixes.
9+
While [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir) was being announced, we have been working on Elixir v0.9.0 which is finally out. This release contains new features, important performance optimizations and bug fixes.
1010

1111
Elixir v0.9.0 also removes support for Erlang R15 and earlier versions. In case you still need to run Elixir software on R15, we have also released Elixir v0.8.3, which contains many of the enhancements in v0.9.0. Check the [CHANGELOG for more details for both releases](https://github.com/elixir-lang/elixir/blob/v0.9.0/CHANGELOG.md).
1212

@@ -130,4 +130,4 @@ We have also many other smaller improvements:
130130

131131
A huge thank you to our community for sending bug reports, providing bug fixes and contributing all those amazing features. And when are **you** joining us? :)
132132

133-
Give Elixir a try! You can start with our [getting started guide](/getting-started/introduction.html), or [check this 30 minute video from PragProg](http://www.youtube.com/watch?v=a-off4Vznjs&feature=youtu.be) or buy the beta version of [Programming Elixir](http://pragprog.com/book/elixir/programming-elixir).
133+
Give Elixir a try! You can start with our [getting started guide](/getting-started/introduction.html), or [check this 30 minute video from PragProg](https://www.youtube.com/watch?v=a-off4Vznjs&feature=youtu.be) or buy the beta version of [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir).

_posts/2013-08-08-elixir-design-goals.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: Internals
66
excerpt: Highlight of Elixir design goals.
77
---
88

9-
During the last year, we have spoken at many conferences spreading the word about Elixir. We [usually started with introducing the Erlang VM](http://vimeo.com/53221562), then went on to talk about Elixir goals, saving some time at the end to do a live demo, showing some goodies like exchanging information between remote nodes and even hot code swapping.
9+
During the last year, we have spoken at many conferences spreading the word about Elixir. We [usually started with introducing the Erlang VM](https://vimeo.com/53221562), then went on to talk about Elixir goals, saving some time at the end to do a live demo, showing some goodies like exchanging information between remote nodes and even hot code swapping.
1010

1111
This post is a summary of those talks, focusing on the language goals: compatibility, productivity and extensibility.
1212

_posts/2014-04-21-elixir-v0-13-0-released.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ excerpt: "Elixir v0.13.0 comes with substantial improvements to the language: ma
88

99
Hello folks!
1010

11-
Elixir v0.13.0 has been released. It contains changes that will effectively shape how developers will write Elixir code from now on, making it an important milestone towards v1.0! On this post we are going to cover some of those changes, the road to Elixir v1.0, as well as the announcement of [hex.pm](http://hex.pm).
11+
Elixir v0.13.0 has been released. It contains changes that will effectively shape how developers will write Elixir code from now on, making it an important milestone towards v1.0! On this post we are going to cover some of those changes, the road to Elixir v1.0, as well as the announcement of [hex.pm](https://hex.pm).
1212

1313
Before we go into the changes, let's briefly talk about ElixirConf!
1414

@@ -261,22 +261,22 @@ Dependencies now are also automatically compiled before you run a command. For e
261261

262262
## hex.pm
263263

264-
This release also marks the announcement of [hex.pm](http://hex.pm/), a package manager for the Erlang VM. Hex allows you to package and publish your projects while fetching them and performing dependency resolution in your applications.
264+
This release also marks the announcement of [hex.pm](https://hex.pm/), a package manager for the Erlang VM. Hex allows you to package and publish your projects while fetching them and performing dependency resolution in your applications.
265265

266266
Currently Hex only integrates with Mix and contributions to extend it to other tools and other languages in the Erlang VM are welcome!
267267

268268
## The next steps
269269

270270
As seen in this announcement, this release dictates many of the developments that will happen in Elixir and its community in the following weeks. All projects are recommended to start moving from records to structs, paving the way for the deprecation of records before 1.0.
271271

272-
The next months will also focus on integrating Elixir more tightly to OTP. During the keynote at Erlang Factory, [Catalyse Change](http://www.youtube.com/watch?v=Djv4C9H9yz4), Dave Thomas and I argued that there are many useful patterns, re-implemented everyday by developers, that could make development more productive within the Erlang VM if exposed accordingly.
272+
The next months will also focus on integrating Elixir more tightly to OTP. During the keynote at Erlang Factory, [Catalyse Change](https://www.youtube.com/watch?v=Djv4C9H9yz4), Dave Thomas and I argued that there are many useful patterns, re-implemented everyday by developers, that could make development more productive within the Erlang VM if exposed accordingly.
273273

274274
That said, in the next months we plan to:
275275

276276
* Integrate applications configuration (provided by OTP) right into Mix;
277277
* Provide an Elixir logger that knows how to print and format Elixir exceptions and stacktraces;
278278
* Properly expose the functionality provided by Applications, Supervisors, GenServers and GenEvents and study how they can integrate with Elixir. For example, how to consume events from GenEvent as a [stream of data](/docs/stable/elixir/#!Stream.html)?
279-
* Study how patterns like tasks and agents can be integrated into the language, often picking up the lessons learned by libraries like [e2](http://e2project.org/erlang.html) and [functionality exposed by OTP itself](http://erlang.org/doc/man/rpc.html);
279+
* Study how patterns like tasks and agents can be integrated into the language, often picking up the lessons learned by libraries like [e2](http://e2project.org/erlang.html) and [functionality exposed by OTP itself](http://www.erlang.org/doc/man/rpc.html);
280280
* Rewrite the Mix and ExUnit guides to focus on applications and OTP as a whole, rebranding it to "Building Apps with Mix and OTP";
281281

282-
You can learn more about Elixir in our [Getting Started guide](/getting-started/introduction.html) and download this release in the [v0.13 announcement](https://github.com/elixir-lang/elixir/releases/tag/v0.13.0). We hope to see you at [ElixirConf](http://elixirconf.com/) as well as pushing your packages to [hex.pm](http://hex.pm/).
282+
You can learn more about Elixir in our [Getting Started guide](/getting-started/introduction.html) and download this release in the [v0.13 announcement](https://github.com/elixir-lang/elixir/releases/tag/v0.13.0). We hope to see you at [ElixirConf](http://elixirconf.com/) as well as pushing your packages to [hex.pm](https://hex.pm/).

_posts/2014-08-07-elixir-v0-15-0-released.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ By default, the code above will log the following message to your console:
2929
10:27:39.083 [debug] hello
3030
```
3131

32-
Logger provides multiple backends to where messages are logged. For now Elixir ships only with a console backend but there are developers already working on file (with support to external log rotation) and [syslog](http://en.wikipedia.org/wiki/Syslog) backends.
32+
Logger provides multiple backends to where messages are logged. For now Elixir ships only with a console backend but there are developers already working on file (with support to external log rotation) and [syslog](https://en.wikipedia.org/wiki/Syslog) backends.
3333

3434
When we started Logger, the main objective was to translate Erlang messages into Elixir, so terms are formatted in Elixir syntax. Before this release, the following code
3535

@@ -74,7 +74,7 @@ As soon as we started working on Logger, we realized we could go further than si
7474
* Custom translators: so you can translate log messages coming from any Erlang application into Elixir syntax
7575
* Metadata: metadata allows developers to store information in the current process that will be available to all logged messages. For example, a web application can generate a `request_id`, store it as metadata, and all messages logged during that request will be properly identified with `request_id=...` in the log
7676

77-
We have also relied a lot on the [research and work done by Andrew Thompson and the folks at Basho behind Lager](http://www.youtube.com/watch?v=8BNpOHFvg_Q) to ensure our logger is performant and robust. On this front, Logger
77+
We have also relied a lot on the [research and work done by Andrew Thompson and the folks at Basho behind Lager](https://www.youtube.com/watch?v=8BNpOHFvg_Q) to ensure our logger is performant and robust. On this front, Logger
7878

7979
* alternates between sync and async modes when logging messages to keep it performant when required but also apply back-pressure when under stress
8080
* formats and truncates messages on the client to avoid clogging the backends
@@ -142,7 +142,7 @@ We also would like to thank [Anthony Grimes](https://github.com/raynes) for the
142142

143143
## Elixir Web Installer for Windows
144144

145-
At the beginning of this summer, [Chris Hyndman](http://github.com/chyndman) joined us as a Google Summer of Code student to help us improve the Elixir story on Windows. Chris has been essential in:
145+
At the beginning of this summer, [Chris Hyndman](https://github.com/chyndman) joined us as a Google Summer of Code student to help us improve the Elixir story on Windows. Chris has been essential in:
146146

147147
* Guaranteeing our test suite is green on Windows, fixing many bugs in the process;
148148
* [Documenting how to compile Elixir from source on Windows](https://github.com/elixir-lang/elixir/wiki/Windows)

_posts/2014-09-18-elixir-v1-0-0-released.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Elixir is composed of 6 applications, all under the same versioning constraints:
3333

3434
With v1.0, we are providing a stable platform for the community to leverage and extend, and we are extremely excited with the projects and possibilities that are ahead of us!
3535

36-
We hope the [Hex package manager](http://hex.pm) will be the home of many of those projects and remember the whole Erlang ecosystem is also available to Elixir developers.
36+
We hope the [Hex package manager](https://hex.pm) will be the home of many of those projects and remember the whole Erlang ecosystem is also available to Elixir developers.
3737

3838
## Expectations
3939

0 commit comments

Comments
 (0)