Mercurial > public > src > rhodecode
diff pylons_app/controllers/files.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 | 5b57295601b6 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pylons_app/controllers/files.py Wed Apr 21 00:26:11 2010 +0200 @@ -0,0 +1,16 @@ +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 FilesController(BaseController): + + def index(self): + # Return a rendered template + #return render('/files.mako') + # or, return a string + return 'Hello World'