/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/controllers/atom_ui.py

  • Committer: Matt Nordhoff
  • Date: 2009-06-09 03:41:07 UTC
  • mfrom: (345.2.8 valid-feed)
  • Revision ID: mnordhoff@mattnordhoff.com-20090609034107-khjku04mzj36vumr
Make the Atom feeds (nearly) valid (bug #247162)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        headers['Content-Type'] = 'application/atom+xml'
36
36
        return {
37
37
            'changes': entries,
38
 
            'updated': entries[0].date.isoformat() + 'Z',
 
38
            'updated': entries[0].utc_date.isoformat(),
39
39
            'history': self._history,
40
40
        }