Merge branch 'next-minor' into develop
This commit is contained in:
commit
d4f92a8fae
7 changed files with 16 additions and 11 deletions
|
|
@ -36,6 +36,7 @@ Although the chat was never enabled per default and was marked as experimental,
|
||||||
# 0.7.15.0
|
# 0.7.15.0
|
||||||
|
|
||||||
## Refactor
|
## Refactor
|
||||||
|
* Replaced some `http://` links in the UI with their `https://` counterparts [#8207](https://github.com/diaspora/diaspora/pull/8207)
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
* Update comment counter when weleting a comment in the Single Post View [#7938](https://github.com/diaspora/diaspora/pull/7938)
|
* Update comment counter when weleting a comment in the Single Post View [#7938](https://github.com/diaspora/diaspora/pull/7938)
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@
|
||||||
return L.tileLayer("https://api.mapbox.com/styles/v1/{style}/tiles/256/{z}/{x}/{y}?access_token={accessToken}", {
|
return L.tileLayer("https://api.mapbox.com/styles/v1/{style}/tiles/256/{z}/{x}/{y}?access_token={accessToken}", {
|
||||||
accessToken: gon.appConfig.map.mapbox.access_token,
|
accessToken: gon.appConfig.map.mapbox.access_token,
|
||||||
style: gon.appConfig.map.mapbox.style,
|
style: gon.appConfig.map.mapbox.style,
|
||||||
attribution: "Map data © <a href='http://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
attribution: "Map data © <a href='https://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
||||||
"<a href='http://creativecommons.org/licenses/by-sa/2.0/''>CC-BY-SA</a>, " +
|
"<a href='https://creativecommons.org/licenses/by-sa/2.0/''>CC-BY-SA</a>, " +
|
||||||
"Imagery © <a href='https://www.mapbox.com'>Mapbox</a>",
|
"Imagery © <a href='https://www.mapbox.com'>Mapbox</a>",
|
||||||
maxZoom: 18
|
maxZoom: 18
|
||||||
});
|
});
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
// maptiles from the Heidelberg University are used by default.
|
// maptiles from the Heidelberg University are used by default.
|
||||||
return L.tileLayer("http://korona.geog.uni-heidelberg.de/tiles/roads/x={x}&y={y}&z={z}", {
|
return L.tileLayer("http://korona.geog.uni-heidelberg.de/tiles/roads/x={x}&y={y}&z={z}", {
|
||||||
attribution: "Map data © <a href='http://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
attribution: "Map data © <a href='https://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
||||||
"rendering <a href='http://giscience.uni-hd.de/'>" +
|
"rendering <a href='http://giscience.uni-hd.de/'>" +
|
||||||
"GIScience Research Group @ Heidelberg University</a>",
|
"GIScience Research Group @ Heidelberg University</a>",
|
||||||
maxZoom: 18
|
maxZoom: 18
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,10 @@ app.views.Help = app.views.StaticContentView.extend({
|
||||||
"click .faq-link-keyboard-shortcuts": "keyboardShortcuts"
|
"click .faq-link-keyboard-shortcuts": "keyboardShortcuts"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/* eslint-disable camelcase */
|
||||||
initialize : function() {
|
initialize : function() {
|
||||||
this.GETTING_HELP_SUBS = {
|
this.GETTING_HELP_SUBS = {
|
||||||
getting_started_a: {tutorial_series: this.linkHtml("http://diasporafoundation.org/getting_started/sign_up", Diaspora.I18n.t("getting_started_tutorial"))},
|
getting_started_a: {tutorial_series: this.linkHtml("https://diasporafoundation.org/getting_started/sign_up", Diaspora.I18n.t("getting_started_tutorial"))},
|
||||||
get_support_a_website: {link: this.linkHtml("https://diasporafoundation.org/", Diaspora.I18n.t("foundation_website"))},
|
get_support_a_website: {link: this.linkHtml("https://diasporafoundation.org/", Diaspora.I18n.t("foundation_website"))},
|
||||||
get_support_a_tutorials: {tutorials: this.linkHtml("https://diasporafoundation.org/tutorials", Diaspora.I18n.t("tutorials"))},
|
get_support_a_tutorials: {tutorials: this.linkHtml("https://diasporafoundation.org/tutorials", Diaspora.I18n.t("tutorials"))},
|
||||||
get_support_a_wiki: {link: this.linkHtml("https://wiki.diasporafoundation.org/Special:Search", Diaspora.I18n.t("wiki"))},
|
get_support_a_wiki: {link: this.linkHtml("https://wiki.diasporafoundation.org/Special:Search", Diaspora.I18n.t("wiki"))},
|
||||||
|
|
@ -27,10 +28,11 @@ app.views.Help = app.views.StaticContentView.extend({
|
||||||
this.POSTS_AND_POSTING_SUBS = {
|
this.POSTS_AND_POSTING_SUBS = {
|
||||||
post_report_a: {community_guidelines: this.linkHtml("https://diasporafoundation.org/community_guidelines", Diaspora.I18n.t("community_guidelines"))},
|
post_report_a: {community_guidelines: this.linkHtml("https://diasporafoundation.org/community_guidelines", Diaspora.I18n.t("community_guidelines"))},
|
||||||
format_text_a: {
|
format_text_a: {
|
||||||
markdown: this.linkHtml("http://diasporafoundation.org/formatting", Diaspora.I18n.t( 'markdown' )),
|
markdown: this.linkHtml("https://diasporafoundation.org/formatting", Diaspora.I18n.t("markdown")),
|
||||||
here: this.linkHtml("http://daringfireball.net/projects/markdown/syntax", Diaspora.I18n.t( 'here' ))
|
here: this.linkHtml("https://daringfireball.net/projects/markdown/syntax", Diaspora.I18n.t("here"))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
/* eslint-enable camelcase */
|
||||||
|
|
||||||
this.TAGS_SUBS = {
|
this.TAGS_SUBS = {
|
||||||
filter_tags_a: {
|
filter_tags_a: {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ module MetaDataHelper
|
||||||
include ActionView::Helpers::TagHelper
|
include ActionView::Helpers::TagHelper
|
||||||
|
|
||||||
def og_prefix
|
def og_prefix
|
||||||
'og: http://ogp.me/ns# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#'
|
"og: https://ogp.me/ns# article: https://ogp.me/ns/article# profile: https://ogp.me/ns/profile#"
|
||||||
end
|
end
|
||||||
|
|
||||||
def site_url
|
def site_url
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
tag_path(name: t("shared.publisher.new_user_prefill.newhere"))))
|
tag_path(name: t("shared.publisher.new_user_prefill.newhere"))))
|
||||||
%br
|
%br
|
||||||
= link_to(t("aspects.index.new_here.learn_more"),
|
= link_to(t("aspects.index.new_here.learn_more"),
|
||||||
"http://wiki.diasporafoundation.org/Welcoming_Committee")
|
"https://wiki.diasporafoundation.org/Welcoming_Committee")
|
||||||
|
|
||||||
.section.collapsed
|
.section.collapsed
|
||||||
.title
|
.title
|
||||||
|
|
@ -94,7 +94,7 @@
|
||||||
faq: link_to(t("_help"), help_path),
|
faq: link_to(t("_help"), help_path),
|
||||||
tutorial: link_to(t("aspects.index.help.tutorial_link_text"),
|
tutorial: link_to(t("aspects.index.help.tutorial_link_text"),
|
||||||
"https://diasporafoundation.org/tutorials", target: "_blank"),
|
"https://diasporafoundation.org/tutorials", target: "_blank"),
|
||||||
wiki: link_to("Wiki", "http://wiki.diasporafoundation.org",
|
wiki: link_to("Wiki", "https://wiki.diasporafoundation.org",
|
||||||
target: "_blank"),
|
target: "_blank"),
|
||||||
target: "_blank")
|
target: "_blank")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,9 @@
|
||||||
Source code and materials
|
Source code and materials
|
||||||
|
|
||||||
%p
|
%p
|
||||||
This Service runs on a diaspora* social network server. This source code is licensed under an <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPLv3</a> license which means you are allowed to and even encouraged to take the source code, modify it and use it.
|
This Service runs on a diaspora* social network server. This source code is licensed under an
|
||||||
|
<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPLv3</a> license which means you are allowed
|
||||||
|
to and even encouraged to take the source code, modify it and use it.
|
||||||
|
|
||||||
%p
|
%p
|
||||||
For full details about the diaspora* server <a href="https://github.com/diaspora/diaspora">see here</a>.
|
For full details about the diaspora* server <a href="https://github.com/diaspora/diaspora">see here</a>.
|
||||||
|
|
|
||||||
|
|
@ -208,7 +208,7 @@ Rails.application.routes.draw do
|
||||||
get 'help/:topic' => 'help#faq'
|
get 'help/:topic' => 'help#faq'
|
||||||
|
|
||||||
#Protocol Url
|
#Protocol Url
|
||||||
get 'protocol' => redirect("http://wiki.diasporafoundation.org/Federation_Protocol_Overview")
|
get "protocol" => redirect("https://wiki.diasporafoundation.org/Federation_Protocol_Overview")
|
||||||
|
|
||||||
# NodeInfo
|
# NodeInfo
|
||||||
get ".well-known/nodeinfo", to: "node_info#jrd"
|
get ".well-known/nodeinfo", to: "node_info#jrd"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue