view pylons_app/controllers/graph.py @ 99:5b57295601b6

Updated basic files browser with, pygments
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 25 Apr 2010 01:19:21 +0200
parents aec4c0071cb3
children a86c8de926b4
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 GraphController(BaseController):

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