First time here? Check out the FAQ!
2

Title change should not change urls and RSS guid
 

If a question title is changed the url changes, as does the RSS guid (which uses the URL).

The URL change could break links. The guid change causes some feed readers to repeat the item.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Benoit's avatar
875
Benoit
updated 14 years ago
graeme's avatar
319
graeme
asked 14 years ago

Comments

hmm, will read more about rss. the only thing I can say now, if the question slug in the request does not match the current one, there will be a redirect, using the id of the question (which is a part of the urls) - to the correct url.
Evgeny's avatar Evgeny (14 years ago)
To clarify, if you change the title the guid changes, so the feed reader thinks its a new question, so displays it again. Simple fix would be to use the question id as the guid (the feed will only ever contain questions, right?).
graeme's avatar graeme (14 years ago)
I see now, thanks. Yes right now there is only question feed, but adding an extra key will not hurt. I will add this fix to the next release, the latest - on Friday this week.
Evgeny's avatar Evgeny (14 years ago)
Just in case you did not notice you should make isPermaLink attribute is set false http://cyber.law.harvard.edu/rss/rss.html#ltguidgtSubelementOfLtitemgt Not sure how if Django feeed framework does this when yopu probide a guid that is not link
graeme's avatar graeme (14 years ago)
Sorry, missed your comment, which points to an improvement that can be made to the notifications. The url that is used in the guid actually can be used to access the resource, an in that respect it can serve the purpose of a permalink. It will be redirected to a url with a slug though... Should be fine as is I think - no?..
Evgeny's avatar Evgeny (14 years ago)
see more comments

1 Answer

2

The item guid now is the question url without the slug. Does this fix the issue?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 14 years ago
link

Comments

1
Looks OK: the feed reader in which I noticed the issue works fine with the feed now. You might consider an option to remove the slug from urls: IMAO it just makes urls longer for a dubious SEO benefit.
graeme's avatar graeme (14 years ago)
see more comments