Files @ 3f01d02c2cc6
Branch filter:

Location: kallithea/pylons_app/controllers/file.py

Marcin Kuzminski
fixed error when browsing revisions on path that doesn't exist. Fixed files browsing. Fixed templates in branches and tags
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 FileController(BaseController):

    def index(self):
        # Return a rendered template
        #return render('/file.mako')
        # or, return a string
        return 'Hello World'