Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Replace occurrence of http in templates with https #1157

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from

Conversation

Clpsplug
Copy link
Contributor

@Clpsplug Clpsplug commented Apr 3, 2017

Closes #1156.

Copy link
Member

@giginet giginet left a 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>
Copy link
Member

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>
Copy link
Member

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/
Copy link
Member

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/
Copy link
Member

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/
Copy link
Member

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 }}
Copy link
Member

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/
Copy link
Member

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/ )にあるとおり、以下の点についてもう一度ご確認ください
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@giginet
Copy link
Member

giginet commented Apr 3, 2017

コメントした中で、HipChat消す奴はこっちでやっておくので無視してOK

@giginet
Copy link
Member

giginet commented Apr 19, 2017

@Clpsplug #1163 rebaseして、指摘ヶ所直してー

@giginet
Copy link
Member

giginet commented Jun 20, 2017

@Clpsplug これどうなってるー?

forgot to replace some of httpses
@Clpsplug
Copy link
Contributor Author

多分ハードコードしたhttpsは取り除けたと思います

@coveralls
Copy link

coveralls commented Jun 20, 2017

Coverage Status

Coverage remained the same at 97.696% when pulling 758ea09 on plug/template_https into 8f9a850 on develop.

Copy link
Member

@giginet giginet left a 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 %}
Copy link
Member

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

@lambdalisue

@coveralls
Copy link

coveralls commented Jun 20, 2017

Coverage Status

Coverage remained the same at 97.696% when pulling 758ea09 on plug/template_https into 8f9a850 on develop.

@coveralls
Copy link

coveralls commented Jun 20, 2017

Coverage Status

Coverage remained the same at 97.696% when pulling 758ea09 on plug/template_https into 8f9a850 on develop.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants