##// END OF EJS Templates
added empty controllers for branches tags files graph, routing and test for them
added empty controllers for branches tags files graph, routing and test for them

File last commit:

r93:aec4c007 default
r93:aec4c007 default
Show More
files.py
16 lines | 425 B | text/x-python | PythonLexer
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'