OK, I have more info.
With the blog and feed mounted so that the following url works:
mysite.com/blog/feed/atom1.0
This url will properly produce an atom 1.0 feed. However, if you use
this url:
mysite.com/blog/feed
this will invoke the FeedController's index() method, and that will
attempt to redirect you to whatever you specified as the default feed
type for your site, or use atom1.0 if you don't specify a default. The
redirection is done via:
raise cherrypy.HTTPRedirect(turbogears.url("/%s" % self.default))
And this will create a url of '/feed/blog/atom1.0', instead of the
correct '/blog/feed/atom1.0'. This is the part I don't understand yet.
Any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears Trunk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears-trunk
-~----------~----~----~----~------~----~------~--~---