web commit by hb

master
joey 2006-12-21 08:18:07 +00:00
parent e6578743b2
commit e3f7675264
1 changed files with 10 additions and 15 deletions

View File

@ -1,27 +1,22 @@
I have a blog-like page collecting item, that's ok, display is good, rss url is correct. I have a blog-like page collecting item, that's ok, display is good, rss url is correct.
In some of the items, I have another rss. When viewing the item itself, url of the rss is correct.
in some of the items, I have another rss.
When viewing the item itself, url of the rss is correct.
But when viewing the item inside the main page, the basepath of the rss is wrong, thus the url doesn't go anywhere. 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 : For example :
1. a blog-like page which is collecting tag entry : (1) a blog-like page which is collecting tag entry :
address of the page : /tag.html * address of the page : /tag.html
address of the rss : /tag.rss * address of the rss : /tag.rss
2. a tag item "foo" (2) a tag item "foo"
which is containing a rss, listing all the foo-tagged pages.
which is containing a rss listing all the tagged pages. * address of the item : /tag/foo.html
* address of the rss : /tag/foo.rss
address of the item : /tag/foo.html (3) when viewing /tag.html
address of the rss : /tag/foo.rss
3. when viewing /tag.html * the rss url inside tag/foo.html is /foo.rss, not /tag/foo.rss
the rss url inside tag/foo.html is /foo.rss, not /tag/foo.rss
Is it a bug or did I miss something ? Is it a bug or did I miss something ?