Mercurial > public > src > rhodecode
view pylons_app/controllers/branches.py @ 93:aec4c0071cb3
added empty controllers for branches tags files graph, routing and test for them
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Wed, 21 Apr 2010 00:26:11 +0200 |
parents | |
children | 20dc7a5eb748 |
line wrap: on
line source
import logging from pylons import request, response, session, tmpl_context as c, url from pylons.controllers.util import abort, redirect from pylons_app.lib.base import BaseController, render log = logging.getLogger(__name__) class BranchesController(BaseController): def index(self): # Return a rendered template #return render('/branches.mako') # or, return a string return 'Hello World'