Opened 17 years ago
Closed 15 years ago
#1785 closed enhancement (fixed)
Atom-based comment feed
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.2 | Priority: | normal |
Severity: | normal | Version: | 2.1 |
Component: | General | Keywords: | has-patch needs-testing dev-feedback |
Focuses: | Cc: |
Description
I've created an Atom 0.3 comment feed. Holizz (holizz.com) updated the code to be Atom 1.0 compliant. It is coded against WordPress 1.5.2.
Attachments (3)
Change History (15)
#3
@
16 years ago
- Priority changed from low to normal
Note for the wp-commentsatom.php to work correctly with rewritten urls in Wordpress 2.x this function has to be updated to the following in wp-includes/functions.php
function do_feed_atom($for_comments) { if ( $for_comments ) { load_template(ABSPATH . 'wp-commentsatom.php'); } else { load_template(ABSPATH . 'wp-atom.php'); } }
Wordpress is WAY overdue to have working ATOM 1.0 feeds and it's super easy to add into the next alpha release with all the groundword already done.
#5
@
15 years ago
- Keywords dev-feedback added; atom comments feed bg|has-patch removed
- Owner changed from anonymous to rob1n
- Status changed from new to assigned
Is this something that the devs want in the core?
Also, the patch is outdated. I can work on a new one.
#8
@
15 years ago
Add the template as wp-includes/feed-atom-comments.php.
Update do_feed_atom() to handle withcomments.
Update do_feed() to not assume comment feeds are always rss2.
#10
@
15 years ago
- Cc rboren added
- Keywords has-patch needs-testing dev-feedback added
Added preliminary patch that NEEDS looking over. I *believe* I did everything right, but then again...
Fixed incorrect xml:base and id output