##// END OF EJS Templates
version bump. Made changesets work as should, but vcs had to be fixed for that.
version bump. Made changesets work as should, but vcs had to be fixed for that.

File last commit:

r191:b68b2246 default
r218:58b46f91 rhodecode-0.0.0.7.4 default
Show More
shortlog.py
29 lines | 990 B | text/x-python | PythonLexer
import logging
from pylons import tmpl_context as c, app_globals as g, session, request, config, url
from pylons.controllers.util import abort, redirect
from pylons_app.lib.base import BaseController, render
from pylons_app.lib.utils import get_repo_slug
from pylons_app.model.hg_model import HgModel
from webhelpers.paginate import Page
from pylons_app.lib.auth import LoginRequired
log = logging.getLogger(__name__)
class ShortlogController(BaseController):
@LoginRequired()
def __before__(self):
super(ShortlogController, self).__before__()
def index(self):
hg_model = HgModel()
p = int(request.params.get('page', 1))
repo = hg_model.get_repo(c.repo_name)
c.repo_changesets = Page(repo, page=p, items_per_page=20)
c.shortlog_data = render('shortlog/shortlog_data.html')
if request.params.get('partial'):
return c.shortlog_data
r = render('shortlog/shortlog.html')
return r