Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

RFC-822 compatible dates in RSS feeds

If you're building RSS 2.0 files with .rxml files on your Rails app, this sort of line will get you a valid date/time:

   1  xml.pubDate(p.updated_at.strftime("%a, %d %b %Y %H:%M:%S %z"))


If you're just using strftime someplace else, perhaps in PHP, try:

   1  strftime("%a, %d %b %Y %H:%M:%S %z")
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS