Skip to content

Commit

Permalink
Change hexdocs links to https
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj committed Mar 16, 2016
1 parent 6bd6bd8 commit 13a06ed
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See the official site at http://www.phoenixframework.org/

## Documentation

API documentation is available at [http://hexdocs.pm/phoenix](http://hexdocs.pm/phoenix)
API documentation is available at [https://hexdocs.pm/phoenix](https://hexdocs.pm/phoenix)

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion installer/templates/new/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Ready to run in production? Please [check our deployment guides](http://www.phoe

* Official website: http://www.phoenixframework.org/
* Guides: http://phoenixframework.org/docs/overview
* Docs: http://hexdocs.pm/phoenix
* Docs: https://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
* Source: https://github.com/phoenixframework/phoenix
4 changes: 2 additions & 2 deletions installer/templates/new/web/gettext.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule <%= application_module %>.Gettext do
@moduledoc """
A module providing Internationalization with a gettext-based API.
By using [Gettext](http://hexdocs.pm/gettext),
By using [Gettext](https://hexdocs.pm/gettext),
your module gains a set of macros for translations, for example:
import <%= application_module %>.Gettext
Expand All @@ -18,7 +18,7 @@ defmodule <%= application_module %>.Gettext do
# Domain-based translation
dgettext "errors", "Here is the error message to translate"
See the [Gettext Docs](http://hexdocs.pm/gettext) for detailed usage.
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
"""
use Gettext, otp_app: :<%= application_name %>
end
2 changes: 1 addition & 1 deletion installer/templates/new/web/templates/page/index.html.eex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<a href="http://phoenixframework.org/docs/overview">Guides</a>
</li>
<li>
<a href="http://hexdocs.pm/phoenix">Docs</a>
<a href="https://hexdocs.pm/phoenix">Docs</a>
</li>
<li>
<a href="https://github.com/phoenixframework/phoenix">Source</a>
Expand Down
14 changes: 7 additions & 7 deletions lib/phoenix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ defmodule Phoenix do
Phoenix itself. Below we provide a short explanation with links to
their documentation for each of those projects:
* [Ecto](http://hexdocs.pm/ecto) - a language integrated query and
* [Ecto](https://hexdocs.pm/ecto) - a language integrated query and
database wrapper
* [Phoenix](http://hexdocs.pm/phoenix) - the Phoenix web framework
* [Phoenix](https://hexdocs.pm/phoenix) - the Phoenix web framework
(these docs)
* [Phoenix](http://hexdocs.pm/phoenix_pubsub) - a distributed pubsub
* [Phoenix](https://hexdocs.pm/phoenix_pubsub) - a distributed pubsub
system with presence support
* [Phoenix HTML](http://hexdocs.pm/phoenix_html) - conveniences for
* [Phoenix HTML](https://hexdocs.pm/phoenix_html) - conveniences for
working with HTML in Phoenix
* [Plug](http://hexdocs.pm/plug) - a specification and conveniences
* [Plug](https://hexdocs.pm/plug) - a specification and conveniences
for composable modules in between web applications
* [Gettext](http://hexdocs.pm/gettext) - Internationalization and
* [Gettext](https://hexdocs.pm/gettext) - Internationalization and
localization through gettext
There are also optional packages depending on your configuration:
* [Phoenix PubSub Redis](http://hexdocs.pm/phoenix_pubsub_redis) - use
* [Phoenix PubSub Redis](https://hexdocs.pm/phoenix_pubsub_redis) - use
Redis to power Phoenix PubSub system
"""
Expand Down
4 changes: 2 additions & 2 deletions lib/phoenix/endpoint.ex
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ defmodule Phoenix.Endpoint do
* `:http` - the configuration for the HTTP server. Currently uses
cowboy and accepts all options as defined by
[`Plug.Adapters.Cowboy`](http://hexdocs.pm/plug/Plug.Adapters.Cowboy.html).
[`Plug.Adapters.Cowboy`](https://hexdocs.pm/plug/Plug.Adapters.Cowboy.html).
Defaults to `false`.
* `:https` - the configuration for the HTTPS server. Currently uses
cowboy and accepts all options as defined by
[`Plug.Adapters.Cowboy`](http://hexdocs.pm/plug/Plug.Adapters.Cowboy.html).
[`Plug.Adapters.Cowboy`](https://hexdocs.pm/plug/Plug.Adapters.Cowboy.html).
Defaults to `false`.
* `:force_ssl` - ensures no data is ever sent via http, always redirecting
Expand Down

0 comments on commit 13a06ed

Please sign in to comment.