[wp-trac] [WordPress Trac] #5435: Incorrect id, self link and alternate link in the Atom comment feed of each entry

WordPress Trac wp-trac at lists.automattic.com
Fri Dec 7 09:33:02 GMT 2007


#5435: Incorrect id, self link and alternate link in the Atom comment feed of each
entry
----------------------------+-----------------------------------------------
 Reporter:  peaceablewhale  |       Owner:  anonymous         
     Type:  defect          |      Status:  new               
 Priority:  normal          |   Milestone:  2.4               
Component:  General         |     Version:                    
 Severity:  major           |    Keywords:  Atom, Comment Feed
----------------------------+-----------------------------------------------
 The id, self link and alternate link in the Atom comment feed of each
 entry is incorrect. Using an entry of the WordPress development blog,
 http://wordpress.org/development/2007/10/wordpress-231/feed/atom/, as an
 example:

 The following code is not correct...

 {{{
 <id>http://wordpress.org/development/comments/feed/atom/</id>
 <link rel="self" type="application/atom+xml"
 href="http://wordpress.org/development/comments/feed/atom/" />
 <link rel="alternate" type="text/html"
 href="http://wordpress.org/development" />
 }}}

 The correct code should be...

 {{{
 <id>http://wordpress.org/development/2007/10/wordpress-231/feed/atom/</id>
 <link rel="self" type="application/atom+xml"
 href="http://wordpress.org/development/2007/10/wordpress-231/feed/atom/"
 />
 <link rel="alternate" type="text/html"
 href="http://wordpress.org/development/2007/10/wordpress-231/#comments" />
 }}}

 Does anybody know how to correct them?

-- 
Ticket URL: <http://trac.wordpress.org/ticket/5435>
WordPress Trac <http://trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list