##// END OF EJS Templates
Fixed differ to properly extract filenames, and dates from diff file. and swaped order of columns with lines nr in diff html
Fixed differ to properly extract filenames, and dates from diff file. and swaped order of columns with lines nr in diff html

File last commit:

r93:aec4c007 default
r152:0c00fbaf default
Show More
file.py
16 lines | 423 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 FileController(BaseController):
def index(self):
# Return a rendered template
#return render('/file.mako')
# or, return a string
return 'Hello World'