Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: [plugin] [ORPHAN] ajw_comments_feed
Thanks Andrew.
I installed ajw_clean_feed already, I was just having a mental block on how to write the URL. <code><txp:permlink /></code> is what I needed :)
Last edited by pieman (2005-11-22 18:15:25)
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
One more question. I apologise for my dimness ;)
I now have a working, clean comments feed in each page.
How can I dynamically write a meta auto-discovery link for each article so that Bloglines and the like can find the feed?
This is a separate issue rrright?
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
You would have to put something like this before the closing < /head> at the top of your page: <code><link rel=“alternate” type=“application/rss+xml” title=“Comment Feed” href=“path/to/feed” /></code>
Refresh Dallas and other Refreshing Cities.
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Cool, but my problem is knowing how to write the path to the feed of the specific article…
I (hopefully) tried <code><link rel=“alternate” type=“application/rss+xml” title=“RSS feed” href=”“<txp:permlink />/rss”“ /></code> in the head template,
but it doesn’t know what the article is, so it writes <code><link rel=“alternate” type=“application/rss+xml” title=“RSS feed” href=”“/rss”“ /></code> in the page.
Offline
#17 2005-11-22 19:38:56
- Andrew
- Plugin Author
- Registered: 2004-02-23
- Posts: 730
Re: [plugin] [ORPHAN] ajw_comments_feed
Ah, yes – this is because the article has not yet been parsed yet in your template so it does not exist. I forget, is there a solution to this issue? Using href="<txp:permlink />/rss/"
seems like a pretty good solution.
Last edited by Andrew (2005-11-22 19:40:04)
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Is this still around: <code><txp:article pgonly=“1” /></code>? Maybe this could be put above the auto-discovery link so that the article is parsed first then the permalink would work.
Last edited by tinyfly (2005-11-22 20:11:59)
Refresh Dallas and other Refreshing Cities.
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Do you mean put the article in the <code><head></code> section?
That would get me arrested surely!
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Yes. Just a thought, using the pgonly attribute nothing gets outputed it just lets textpattern parse the article and know that it is there. Try it and see what it does. It may make your computer explode though!!
Refresh Dallas and other Refreshing Cities.
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
B O O M!
oops
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Just upgraded to r1121 and it’s broke. Have they changed something? I haven’t. :(
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline
#23 2005-11-27 10:14:20
- Andrew
- Plugin Author
- Registered: 2004-02-23
- Posts: 730
Re: [plugin] [ORPHAN] ajw_comments_feed
Most likely. This plugin is a bit tricky to implement, because it requires basically rewriting the rss/atom functionality for comments, which means that any update to the core atom()
or rss()
functions and I’ll likely have to update the plugin as well.
I’m going to guess this has to do with r1099, which changes the function safe_hed()
to rss_safe_hed()
. There are two lines in that plugin that rely on that helper function, which you can change manually. I should also probably re-release a version that is immune from breakage of this sort.
Last edited by Andrew (2005-11-27 10:20:24)
Offline
Re: [plugin] [ORPHAN] ajw_comments_feed
Thanks. Fixed it. :)
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline