comparison rhodecode/lib/vcs/backends/base.py @ 3147:8182ebed2922 beta

Added full last changeset info to lightweight dashboard
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 05 Jan 2013 01:58:29 +0100
parents 3bfd5852c218
children 951aa2741c98
comparison
equal deleted inserted replaced
3146:c5169e445fb8 3147:8182ebed2922
374 374
375 def __json__(self): 375 def __json__(self):
376 return dict( 376 return dict(
377 short_id=self.short_id, 377 short_id=self.short_id,
378 raw_id=self.raw_id, 378 raw_id=self.raw_id,
379 revision=self.revision,
379 message=self.message, 380 message=self.message,
380 date=self.date, 381 date=self.date,
381 author=self.author, 382 author=self.author,
382 ) 383 )
383 384