parent
d5d53baa1c
commit
d7941230a4
7 changed files with 16 additions and 11 deletions
|
|
@ -1,6 +1,7 @@
|
|||
# 0.7.15.0
|
||||
|
||||
## Refactor
|
||||
* Replaced some `http://` links in the UI with their `https://` counterparts [#8207](https://github.com/diaspora/diaspora/pull/8207)
|
||||
|
||||
## Bug fixes
|
||||
* 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}", {
|
||||
accessToken: gon.appConfig.map.mapbox.access_token,
|
||||
style: gon.appConfig.map.mapbox.style,
|
||||
attribution: "Map data © <a href='http://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
||||
"<a href='http://creativecommons.org/licenses/by-sa/2.0/''>CC-BY-SA</a>, " +
|
||||
attribution: "Map data © <a href='https://openstreetmap.org'>OpenStreetMap</a> contributors, " +
|
||||
"<a href='https://creativecommons.org/licenses/by-sa/2.0/''>CC-BY-SA</a>, " +
|
||||
"Imagery © <a href='https://www.mapbox.com'>Mapbox</a>",
|
||||
maxZoom: 18
|
||||
});
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
// 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}", {
|
||||
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/'>" +
|
||||
"GIScience Research Group @ Heidelberg University</a>",
|
||||
maxZoom: 18
|
||||
|
|
|
|||
|
|
@ -13,9 +13,10 @@ app.views.Help = app.views.StaticContentView.extend({
|
|||
"click .faq-link-chat": "chat"
|
||||
},
|
||||
|
||||
/* eslint-disable camelcase */
|
||||
initialize : function() {
|
||||
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_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"))},
|
||||
|
|
@ -28,10 +29,11 @@ app.views.Help = app.views.StaticContentView.extend({
|
|||
this.POSTS_AND_POSTING_SUBS = {
|
||||
post_report_a: {community_guidelines: this.linkHtml("https://diasporafoundation.org/community_guidelines", Diaspora.I18n.t("community_guidelines"))},
|
||||
format_text_a: {
|
||||
markdown: this.linkHtml("http://diasporafoundation.org/formatting", Diaspora.I18n.t( 'markdown' )),
|
||||
here: this.linkHtml("http://daringfireball.net/projects/markdown/syntax", Diaspora.I18n.t( 'here' ))
|
||||
markdown: this.linkHtml("https://diasporafoundation.org/formatting", Diaspora.I18n.t("markdown")),
|
||||
here: this.linkHtml("https://daringfireball.net/projects/markdown/syntax", Diaspora.I18n.t("here"))
|
||||
}
|
||||
};
|
||||
/* eslint-enable camelcase */
|
||||
|
||||
this.TAGS_SUBS = {
|
||||
filter_tags_a: {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ module MetaDataHelper
|
|||
include ActionView::Helpers::TagHelper
|
||||
|
||||
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
|
||||
|
||||
def site_url
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@
|
|||
tag_path(name: t("shared.publisher.new_user_prefill.newhere"))))
|
||||
%br
|
||||
= link_to(t("aspects.index.new_here.learn_more"),
|
||||
"http://wiki.diasporafoundation.org/Welcoming_Committee")
|
||||
"https://wiki.diasporafoundation.org/Welcoming_Committee")
|
||||
|
||||
.section.collapsed
|
||||
.title
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
faq: link_to(t("_help"), help_path),
|
||||
tutorial: link_to(t("aspects.index.help.tutorial_link_text"),
|
||||
"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")
|
||||
|
||||
|
|
|
|||
|
|
@ -142,7 +142,9 @@
|
|||
Source code and materials
|
||||
|
||||
%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
|
||||
For full details about the diaspora* server <a href="https://github.com/diaspora/diaspora">see here</a>.
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ Rails.application.routes.draw do
|
|||
get 'help/:topic' => 'help#faq'
|
||||
|
||||
#Protocol Url
|
||||
get 'protocol' => redirect("http://wiki.diasporafoundation.org/Federation_Protocol_Overview")
|
||||
get "protocol" => redirect("https://wiki.diasporafoundation.org/Federation_Protocol_Overview")
|
||||
|
||||
# NodeInfo
|
||||
get ".well-known/nodeinfo", to: "node_info#jrd"
|
||||
|
|
|
|||
Loading…
Reference in a new issue