Opened 18 years ago
Closed 17 years ago
#4434 closed enhancement (fixed)
timeline RSS feed: items for created tickets have the same content for <title> and <description>
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | normal | Milestone: | 0.11 |
Component: | timeline | Version: | 0.10.3 |
Severity: | normal | Keywords: | rss |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Currently, in the RSS feed for the timeline page, an <item>
element corresponding to a new ticket contains the following information:
<item> <title>Ticket #N (task created): "Ticket's short summary"</title> ... <description>"Ticket's short summary"</description> </item>
It would be nicer and more useful to put the full description of the ticket into the <description>
element, like this:
<item> <title>Ticket #N (task created): "Ticket's short summary"</title> ... <description>"Ticket's full description"</description> </item>
Attachments (0)
Change History (4)
comment:1 by , 18 years ago
Keywords: | rss added |
---|---|
Milestone: | → 0.11 |
Owner: | changed from | to
follow-up: 3 comment:2 by , 18 years ago
Status: | new → assigned |
---|
This was fixed in r5417, I'll close the ticket upon branch merge.
comment:3 by , 17 years ago
comment:4 by , 17 years ago
Milestone: | 0.11.1 → 0.11 |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Yes, the <description> for a new ticket always contains the ticket description text. This was fixed in r6158.
How that text is formatted depends on:
[timeline] newticket_formatter
:- if set to
default
, it will do a full wiki formatting of the description - if set to
oneliner
, it will do a one-liner wiki formatting (i.e. ignore the block-level markup and macros content),
- if set to
[timeline] abbreviated_messages
: if set, the message will be shortened before being parsed
See TracIni#timeline-section for more details.
I think I need to update a bit the TimelineEvent object, to make it more flexible when used in different templates - the html ones and the rss one.
A related issue is that in the RSS feed, the titles of changeset event are now lacking the commit log message because it's already present in the description…