##// END OF EJS Templates
cleaned unused imports
cleaned unused imports

File last commit:

r223:4cf00c93 default
r223:4cf00c93 default
Show More
hg.py
29 lines | 1.0 KiB | text/x-python | PythonLexer
Marcin Kuzminski
initial commit.
r0 #!/usr/bin/python
# -*- coding: utf-8 -*-
removed ununsed imports
r135 import logging
added empty controllers for branches tags files graph, routing and test for them
r93 from operator import itemgetter
removed ununsed imports
r135 from pylons import tmpl_context as c, request, config
Marcin Kuzminski
refactoring update
r76 from pylons_app.lib.base import BaseController, render
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user....
r191 from pylons_app.lib.auth import LoginRequired
Marcin Kuzminski
major app speedup moved the wsgi creation to app globals, in order to make it run only once....
r10 log = logging.getLogger(__name__)
Marcin Kuzminski
initial commit.
r0
class HgController(BaseController):
Marcin Kuzminski
Wrapped into mako templates,...
r21
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user....
r191 @LoginRequired()
Marcin Kuzminski
Wrapped into mako templates,...
r21 def __before__(self):
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user....
r191 super(HgController, self).__before__()
Marcin Kuzminski
Moved summary to seperate controller,...
r82
Marcin Kuzminski
Implemented index page using vcs
r55 def index(self):
Marcin Kuzminski
Implemented main page sorting
r57 c.current_sort = request.GET.get('sort', 'name')
cs = c.current_sort
c.cs_slug = cs.replace('-', '')
sortables = ['name', 'description', 'last_change', 'tip', 'contact']
if cs and c.cs_slug in sortables:
sort_key = c.cs_slug + '_sort'
if cs.startswith('-'):
added long term caching of repo_list to the base controller. changed hg and repos to use that cached list.
r169 c.repos_list = sorted(c.cached_repo_list, key=itemgetter(sort_key), reverse=True)
Marcin Kuzminski
Implemented main page sorting
r57 else:
added long term caching of repo_list to the base controller. changed hg and repos to use that cached list.
r169 c.repos_list = sorted(c.cached_repo_list, key=itemgetter(sort_key), reverse=False)
Marcin Kuzminski
Implemented main page sorting
r57
Marcin Kuzminski
Implemented index page using vcs
r55 return render('/index.html')