Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 064fc3cc rédigé par Benjamin Neff's avatar Benjamin Neff
Parcourir les fichiers

Merge branch 'next-minor' into develop

parents d72eb59c 23d3d9dc
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -24,6 +24,8 @@ ...@@ -24,6 +24,8 @@
## Bug fixes ## Bug fixes
* Make photo upload button hover text translatable [#7429](https://github.com/diaspora/diaspora/pull/7429) * Make photo upload button hover text translatable [#7429](https://github.com/diaspora/diaspora/pull/7429)
* Fix first comment in mobile view with french locale [#7441](https://github.com/diaspora/diaspora/pull/7441)
* Use post page title and post author in atom feed [#7420](https://github.com/diaspora/diaspora/pull/7420)
## Features ## Features
......
...@@ -201,7 +201,7 @@ ...@@ -201,7 +201,7 @@
increaseReactionCount: function(bottomBar) { increaseReactionCount: function(bottomBar) {
var toggleReactionsLink = bottomBar.find(".show-comments").first(); var toggleReactionsLink = bottomBar.find(".show-comments").first();
var count = toggleReactionsLink.text().match(/.*(\d+).*/); var count = toggleReactionsLink.text().match(/.*(\d+).*/);
count = parseInt(count, 10); count = parseInt(count, 10) || 0;
var text = Diaspora.I18n.t("stream.comments", {count: count + 1}); var text = Diaspora.I18n.t("stream.comments", {count: count + 1});
// No previous comment // No previous comment
......
module ActivityStreamsHelper
def add_activitystreams_author(target, person)
target.author do |author|
author.name person.name
author.uri local_or_remote_person_path(person, absolute: true)
author.tag! "activity:object-type", "http://activitystrea.ms/schema/1.0/person"
author.tag! "poco:preferredUsername", person.username
author.tag! "poco:displayName", person.name
end
end
end
...@@ -17,21 +17,16 @@ atom_feed("xmlns:thr" => "http://purl.org/syndication/thread/1.0", ...@@ -17,21 +17,16 @@ atom_feed("xmlns:thr" => "http://purl.org/syndication/thread/1.0",
'media:height' => '100', :href => "#{@user.image_url}" 'media:height' => '100', :href => "#{@user.image_url}"
feed.tag! :link, :href => "#{AppConfig.environment.pubsub_server}", :rel => 'hub' feed.tag! :link, :href => "#{AppConfig.environment.pubsub_server}", :rel => 'hub'
feed.author do |author| add_activitystreams_author(feed, @user.person)
author.name @user.name
author.uri local_or_remote_person_path(@user.person, :absolute => true)
author.tag! 'activity:object-type', 'http://activitystrea.ms/schema/1.0/person'
author.tag! 'poco:preferredUsername', @user.username
author.tag! 'poco:displayName', @user.name
end
@posts.each do |post| @posts.each do |post|
feed.entry post, :url => "#{@user.url}p/#{post.id}", feed.entry post, :url => "#{@user.url}p/#{post.id}",
:id => "#{@user.url}p/#{post.id}" do |entry| :id => "#{@user.url}p/#{post.id}" do |entry|
entry.title post.message.title entry.title post_page_title(post)
entry.content post.message.markdownified(disable_hovercards: true), :type => 'html' entry.content post.message.markdownified(disable_hovercards: true), :type => 'html'
add_activitystreams_author(entry, post.author)
entry.tag! 'activity:verb', 'http://activitystrea.ms/schema/1.0/post' entry.tag! 'activity:verb', 'http://activitystrea.ms/schema/1.0/post'
entry.tag! 'activity:object-type', 'http://activitystrea.ms/schema/1.0/note' entry.tag! 'activity:object-type', 'http://activitystrea.ms/schema/1.0/note'
end end
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
describe UsersController, :type => :controller do describe UsersController, :type => :controller do
include_context :gon include_context :gon
include PostsHelper
before do before do
@user = alice @user = alice
...@@ -46,20 +47,40 @@ describe UsersController, :type => :controller do ...@@ -46,20 +47,40 @@ describe UsersController, :type => :controller do
end end
describe '#public' do describe '#public' do
it 'renders xml if atom is requested' do context "entry xml contents" do
sm = FactoryGirl.create(:status_message, :public => true, :author => @user.person) before do
get :public, :username => @user.username, :format => :atom @sm = FactoryGirl.create(
expect(response.body).to include(sm.text) :status_message,
end public: true,
author: @user.person,
text: "Go to http://diasporafoundation.org/ now!"
)
end
it 'renders xml if atom is requested with clickalbe urls' do it "contains the text" do
sm = FactoryGirl.create(:status_message, :public => true, :author => @user.person) get :public, username: @user.username, format: :atom
@user.person.posts.each do |p| doc = Nokogiri::XML(response.body)
p.text = "Goto http://diasporaproject.org/ now!" expect(doc.css("entry content")[0].content).to eq(@sm.message.markdownified(disable_hovercards: true))
p.save end
it "contains the title" do
get :public, username: @user.username, format: :atom
doc = Nokogiri::XML(response.body)
expect(doc.css("entry title")[0].content).to eq(post_page_title(@sm))
end
it "contains the author" do
get :public, username: @user.username, format: :atom
doc = Nokogiri::XML(response.body)
expect(doc.css("entry author name")[0].content).to eq(@sm.author_name)
end
it "contains the original author for reshares" do
FactoryGirl.create(:reshare, root: @sm, author: bob.person)
get :public, username: bob.username, format: :atom
doc = Nokogiri::XML(response.body)
expect(doc.css("entry author name")[0].content).to eq(@sm.author_name)
end end
get :public, :username => @user.username, :format => :atom
expect(response.body).to include('a href')
end end
it 'includes reshares in the atom feed' do it 'includes reshares in the atom feed' do
......
...@@ -17,6 +17,13 @@ describe PostsHelper, :type => :helper do ...@@ -17,6 +17,13 @@ describe PostsHelper, :type => :helper do
post_page_title(post) post_page_title(post)
end end
end end
context "with a reshare" do
it "returns 'Reshare by...'" do
reshare = FactoryGirl.create(:reshare, author: alice.person)
expect(post_page_title(reshare)).to eq I18n.t("posts.show.reshare_by", author: reshare.author_name)
end
end
end end
......
...@@ -144,7 +144,7 @@ describe("Diaspora.Mobile.Comments", function(){ ...@@ -144,7 +144,7 @@ describe("Diaspora.Mobile.Comments", function(){
expect(this.toggleReactionsLink.text().trim()).toBe("6 comments"); expect(this.toggleReactionsLink.text().trim()).toBe("6 comments");
}); });
it("Creates the reaction link when no reactions", function(){ it("Creates the reaction link when there are no reactions", function() {
var parent = this.toggleReactionsLink.parent(); var parent = this.toggleReactionsLink.parent();
var postGuid = this.bottomBar.parents(".stream-element").data("guid"); var postGuid = this.bottomBar.parents(".stream-element").data("guid");
this.toggleReactionsLink.remove(); this.toggleReactionsLink.remove();
...@@ -155,6 +155,18 @@ describe("Diaspora.Mobile.Comments", function(){ ...@@ -155,6 +155,18 @@ describe("Diaspora.Mobile.Comments", function(){
expect(this.toggleReactionsLink.text().trim()).toBe("1 comment"); expect(this.toggleReactionsLink.text().trim()).toBe("1 comment");
expect(this.toggleReactionsLink.attr("href")).toBe("/posts/" + postGuid + "/comments.mobile"); expect(this.toggleReactionsLink.attr("href")).toBe("/posts/" + postGuid + "/comments.mobile");
}); });
it("Creates the reaction link when there are no reactions (french locale)", function() {
var parent = this.toggleReactionsLink.parent();
var postGuid = this.bottomBar.parents(".stream-element").data("guid");
this.toggleReactionsLink.remove();
parent.prepend($("<span/>", {"class": "show-comments"}).text("Aucun commentaire"));
Diaspora.Mobile.Comments.increaseReactionCount(this.bottomBar);
this.toggleReactionsLink = this.bottomBar.find(".show-comments").first();
expect(this.toggleReactionsLink.text().trim()).toBe("1 comment");
expect(this.toggleReactionsLink.attr("href")).toBe("/posts/" + postGuid + "/comments.mobile");
});
}); });
describe("bottomBarLazy", function(){ describe("bottomBarLazy", function(){
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter