Opened 18 years ago

Closed 18 years ago

#2236 closed defect (fixed)

Error in aggregator RSS feeds titles

Reported by: Malcolm Tredinnick Owned by: Jacob
Component: *.djangoproject.com Version:
Severity: minor Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

From the looks of the code (and [2345]), the RSS feed to the Django community aggregator should display titles that look like "Blog Name: Article title". Instead we get ": Article title".

The community_title.html file in the website source code says

{{ obj.get_feed.title }}: {{ obj.title }}

but it doesn't look get obj.get_feed.title is doing what is expected. This isn't a really high priority, but people reading through RSS readers currently have no indication of who posted the article, since there is no author link either. Fixing the title would help there.

Change History (3)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3219]) Fixed #2236 -- Fixed error in community_title.html template for djangoproject.com site

comment:2 by Malcolm Tredinnick, 18 years ago

Resolution: fixed
Status: closedreopened

Doesn't seem to be working, Adrian. :-( The community RSS feed is still without titles.

comment:3 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: reopenedclosed

Fixed now. Turns out the template hadn't been updated on the production server.

Note: See TracTickets for help on using tickets.
Back to Top