Browse Source

Add alternate link to entries Atom

closed-social-glitch-2
Eugen Rochko 8 years ago
parent
commit
f2da848a3e
2 changed files with 9 additions and 7 deletions
  1. +1
    -0
      app/assets/stylesheets/dashboard.scss
  2. +8
    -7
      app/helpers/atom_builder_helper.rb

+ 1
- 0
app/assets/stylesheets/dashboard.scss View File

@ -55,6 +55,7 @@
a {
text-decoration: none;
color: inherit;
outline: 0;
}
.dashboard__current-user__avatar {

+ 8
- 7
app/helpers/atom_builder_helper.rb View File

@ -161,13 +161,14 @@ module AtomBuilderHelper
end
def include_entry(xml, stream_entry)
unique_id xml, stream_entry.created_at, stream_entry.activity_id, stream_entry.activity_type
published_at xml, stream_entry.created_at
updated_at xml, stream_entry.updated_at
title xml, stream_entry.title
content xml, conditionally_formatted(stream_entry.activity)
verb xml, stream_entry.verb
link_self xml, account_stream_entry_url(stream_entry.account, stream_entry, format: 'atom')
unique_id xml, stream_entry.created_at, stream_entry.activity_id, stream_entry.activity_type
published_at xml, stream_entry.created_at
updated_at xml, stream_entry.updated_at
title xml, stream_entry.title
content xml, conditionally_formatted(stream_entry.activity)
verb xml, stream_entry.verb
link_self xml, account_stream_entry_url(stream_entry.account, stream_entry, format: 'atom')
link_alternate xml, account_stream_entry_url(stream_entry.account, stream_entry)
# Comments need thread element
if stream_entry.threaded?

Loading…
Cancel
Save