Added better id in feed item.

In node recent changes, return only the published entries.
This commit is contained in:
Jocelyn Fiat
2017-09-06 12:45:42 +02:00
parent 69894e8397
commit 0c119b6b5a
4 changed files with 24 additions and 4 deletions

View File

@@ -132,6 +132,7 @@ feature -- Hook
create l_feed_name.make_from_string (a_response.api.setup.site_name)
l_feed_name.append_string ({STRING_32} " : recent changes")
create l_feed.make (l_feed_name)
l_feed.set_id (a_response.api.absolute_url (a_response.request.path_info, Void))
l_feed.set_date (create {DATE_TIME}.make_now_utc)
nb := a_size
across
@@ -143,6 +144,10 @@ feature -- Hook
create l_feed_item.make (ch.link.title)
l_feed_item.set_date (ch.date)
if attached ch.id as l_ch_id then
l_feed_item.set_id (l_ch_id)
end
create s.make_empty
if attached ch.information as l_information then
s.append_string_general (l_information)