ikiwiki/doc/bugs/wrong_rss_url_when_inside_a...

23 lines
730 B
Plaintext
Raw Normal View History

2006-12-21 09:14:05 +01:00
I have a blog-like page collecting item, that's ok, display is good, rss url is correct.
2006-12-21 09:18:07 +01:00
In some of the items, I have another rss. When viewing the item itself, url of the rss is correct.
2006-12-21 09:14:05 +01:00
But when viewing the item inside the main page, the basepath of the rss is wrong, thus the url doesn't go anywhere.
For example :
2006-12-21 09:18:07 +01:00
(1) a blog-like page which is collecting tag entry :
2006-12-21 09:14:05 +01:00
2006-12-21 09:18:07 +01:00
* address of the page : /tag.html
* address of the rss : /tag.rss
2006-12-21 09:14:05 +01:00
2006-12-21 09:18:07 +01:00
(2) a tag item "foo"
which is containing a rss, listing all the foo-tagged pages.
2006-12-21 09:14:05 +01:00
2006-12-21 09:18:07 +01:00
* address of the item : /tag/foo.html
* address of the rss : /tag/foo.rss
2006-12-21 09:14:05 +01:00
2006-12-21 09:18:07 +01:00
(3) when viewing /tag.html
2006-12-21 09:14:05 +01:00
2006-12-21 09:18:07 +01:00
* the rss url inside tag/foo.html is /foo.rss, not /tag/foo.rss
2006-12-21 09:14:05 +01:00
Is it a bug or did I miss something ?