comparison pylons_app/controllers/graph.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 a86c8de926b4
comparison
equal deleted inserted replaced
92:2968fb635787 93:aec4c0071cb3
1 import logging
2
3 from pylons import request, response, session, tmpl_context as c, url
4 from pylons.controllers.util import abort, redirect
5
6 from pylons_app.lib.base import BaseController, render
7
8 log = logging.getLogger(__name__)
9
10 class GraphController(BaseController):
11
12 def index(self):
13 # Return a rendered template
14 #return render('/graph.mako')
15 # or, return a string
16 return 'Hello World'