-
Notifications
You must be signed in to change notification settings - Fork 9
Replace occurrence of http
in templates with https
#1157
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
今回の変更には問題ないけど、
元々ハードコードしているところを何カ所かみつけてしまった。
気が向いたらそちらも直して欲しい
@@ -1 +1 @@ | |||
<strong>広報ブログに「<a href="http://{{ site.domain }}{{ object.get_absolute_url }}">{{ object }}</a>」が投稿されました</strong> | |||
<strong>広報ブログに「<a href="https://{{ site.domain }}{{ object.get_absolute_url }}">{{ object }}</a>」が投稿されました</strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これそもそもリンクあってるんだっけ
{{ object.get_absolute_url }}
だけで良い気がする・・・・・・
帰ったら確認する
@@ -1,2 +1,2 @@ | |||
<strong>{{ object.last_modifier.nickname }}さんが「{{ release.product.title }}」に「<a href="http://{{ site.domain }}{{ object.get_absolute_url }}">{{ release.label }}</a>」を追加しました</strong> | |||
<strong>{{ object.last_modifier.nickname }}さんが「{{ release.product.title }}」に「<a href="https://{{ site.domain }}{{ object.get_absolute_url }}">{{ release.label }}</a>」を追加しました</strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HipChatもう消して良さそうだなw
@@ -22,7 +22,7 @@ http://{{ site.domain }}{% url 'registration_activate' activation_key=activation | |||
|
|||
また、KawazではSlackというチャットツールの設定を使って交流やゲーム開発を行っています。 | |||
詳しい登録作業については、以下のページを参照してください。 | |||
http://www.kawaz.org/helps/slack/ | |||
https://www.kawaz.org/helps/slack/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ついでにhttps://{{site.domain}}/helps/slack/
に変えておいて欲しい
|
||
より再設定を行ってください。今後とも宜しくお願いいたします。 | ||
|
||
Kawazでは登録いただいたこのポータルサイトやチャットツールを使って、メンバー間の交流をしています。 | ||
詳しくはこのページをどうぞ! | ||
http://www.kawaz.org/helps/welcome/ | ||
https://www.kawaz.org/helps/welcome/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{ site.domain }}
@@ -15,7 +15,7 @@ | |||
------------------------------------------------------- | |||
札幌ゲーム製作者コミュニティ - Kawaz | |||
|
|||
ホームページ: http://www.kawaz.org/ | |||
ホームページ: https://www.kawaz.org/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これハードコードされてるのがおかしいな。9行目見る感じ
{{ protocol }}://{{ domain }}
で直せそう。お願いします
@@ -27,7 +27,7 @@ http://{{ site.domain }}/central-dogma/registration/registrationprofile/{{ profi | |||
------------------------------------------------------- | |||
札幌ゲーム製作者コミュニティ - Kawaz | |||
|
|||
ホームページ: http://{{ site.domain }} | |||
ホームページ: https://{{ site.domain }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -19,7 +19,7 @@ | |||
------------------------------------------------------- | |||
札幌ゲーム製作者コミュニティ - Kawaz | |||
|
|||
ホームページ: http://www.kawaz.org/ | |||
ホームページ: https://www.kawaz.org/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -3,7 +3,7 @@ | |||
{{ user.username }}さま | |||
|
|||
申し訳ありませんが新規会員登録申請が管理者によって拒否されました。 | |||
利用規約( http://www.kawaz.org/rules/ )にあるとおり、以下の点についてもう一度ご確認ください | |||
利用規約( https://www.kawaz.org/rules/ )にあるとおり、以下の点についてもう一度ご確認ください |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コメントした中で、HipChat消す奴はこっちでやっておくので無視してOK |
@Clpsplug これどうなってるー? |
d39e714
to
c29a853
Compare
多分ハードコードしたhttpsは取り除けたと思います |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これムズいんだけど
password_reset_email
はDjangoの標準機能、その他の奴はdjango-inspectional-registrationから来ている。
django-inspectional-registrationのメールテンプレートでもprotocol
, domain
という変数が使えるかちゃんと確認してからマージした方が良さそう。
他はLGTM
@@ -8,7 +8,7 @@ Kawazへの登録申請ありがとうございます。会員登録が承認さ | |||
|
|||
会員登録を完了するために{{ expiration_days }}日以内に以下のURLをクリックしてアカウントを有効にしてください。 | |||
|
|||
https://{{ site.domain }}{% url 'registration_activate' activation_key=activation_key %} | |||
{{ protocol }}://{{ domain }}{% url 'registration_activate' activation_key=activation_key %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ドキュメントを読んだ感じ、site.domain
の方が正しそうだけど大丈夫かな。これで動いた?
https://django-inspectional-registration.readthedocs.io/en/latest/about_registration_templates.html
Closes #1156.