Mercurial > public > src > rhodecode
comparison pylons_app/lib/utils.py @ 288:cd2ee462fc2c
implemented yui tooltip, and added it into annotation and main page.
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sun, 13 Jun 2010 23:14:04 +0200 |
parents | 0e5455fda8fd |
children | 248642ed1912 |
comparison
equal
deleted
inserted
replaced
287:373ddb868bd6 | 288:cd2ee462fc2c |
---|---|
141 from vcs.backends.base import BaseChangeset | 141 from vcs.backends.base import BaseChangeset |
142 from vcs.utils.lazy import LazyProperty | 142 from vcs.utils.lazy import LazyProperty |
143 class EmptyChangeset(BaseChangeset): | 143 class EmptyChangeset(BaseChangeset): |
144 | 144 |
145 revision = -1 | 145 revision = -1 |
146 | 146 message = '' |
147 | |
147 @LazyProperty | 148 @LazyProperty |
148 def raw_id(self): | 149 def raw_id(self): |
149 """ | 150 """ |
150 Returns raw string identifing this changeset, useful for web | 151 Returns raw string identifing this changeset, useful for web |
151 representation. | 152 representation. |