Opened 15 years ago
Closed 15 years ago
#6654 closed enhancement (fixed)
add RSS link to browser even on individual posts
Reported by: | Vaclav Slavik | Owned by: | osimons |
---|---|---|---|
Priority: | normal | Component: | FullBlogPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
It is common for blogs to have <link rel="alternate">
in the header even on individual posts, but FullBlogPlugin doesn't do that. This patch fixes it.
It's a bit of a hack: I didn't use Trac's add_link()
function, because that would add (IMHO inappropriate on individual posts) "Download in other formats" link to the bottom of the page. So I add the feed link manually in fullblog_view.html
template.
Attachments (1)
Change History (4)
Changed 15 years ago by
Attachment: | feed-on-posts.patch added |
---|
comment:1 follow-up: 2 Changed 15 years ago by
comment:2 Changed 15 years ago by
Replying to osimons:
What would be the correct combination of links here?
I don't understand the question... But you can have multiple feeds on the same page, so why not have <link>
entries for both posts and comments feeds? It's quite common way to do it...
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [7762]) FullBlogPlugin: Link to main RSS feed when viewing individual posts. The various list views already does this using add_link()
, but done in head directly to avoid "Alternate Formats" section.
Thanks to Vaclav Slavik for report + patch. Closes #6654.
Oh. I see. You want the RSS feed for the blog to be discoverable by browers when viewing individual posts too. Makes sense.
For individual posts, my idea was to provide a detailed feed for the post that also inluded comments as well: #4803
What would be the correct combination of links here?