##// END OF EJS Templates
changelog: don't select all checkboxes in the middle...
changelog: don't select all checkboxes in the middle The changesets in the log might not be linearly connected and intermediate changesets might not be a part of the operation the range is used for. Some way of highlighting the two selected changesets and some radio button functionality would however be nice.

File last commit:

r3231:b5a5a606 beta
r3411:0f15f88e beta
Show More
__init__.py
25 lines | 862 B | text/x-python | PythonLexer
fixes rhodecode upgrade problem that caused setuptool to crash on importing sqlalchemy models
r1541 import os
added quiet flag into get_current_revision
r1571 def get_current_revision(quiet=False):
fixes rhodecode upgrade problem that caused setuptool to crash on importing sqlalchemy models
r1541 """
Returns tuple of (number, id) from repository containing this package
or None if repository could not be found.
auto white-space removal
r1818
added quiet flag into get_current_revision
r1571 :param quiet: prints error for fetching revision if True
fixes rhodecode upgrade problem that caused setuptool to crash on importing sqlalchemy models
r1541 """
try:
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 from rhodecode.lib.vcs import get_repo
from rhodecode.lib.vcs.utils.helpers import get_scm
fixes rhodecode upgrade problem that caused setuptool to crash on importing sqlalchemy models
r1541 repopath = os.path.join(os.path.dirname(__file__), '..', '..')
scm = get_scm(repopath)[0]
repo = get_repo(path=repopath, alias=scm)
tip = repo.get_changeset()
return (tip.revision, tip.short_id)
Catch all exception on get_current_revision
r1578 except Exception, err:
added quiet flag into get_current_revision
r1571 if not quiet:
be blunt about that error message to not confuse people
r3231 print ("WARNING: Cannot retrieve rhodecode's revision. "
"disregard this if you don't know what that means. "
"Original error was: %s" % err)
fixes rhodecode upgrade problem that caused setuptool to crash on importing sqlalchemy models
r1541 return None