Skip to content

Commit

Permalink
cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
bsstoner committed Jan 17, 2010
1 parent f9f4e70 commit 9b96797
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions main.py
Expand Up @@ -27,10 +27,6 @@ class Application(tornado.web.Application):
def __init__(self): def __init__(self):
handlers = [ handlers = [
(r"/", MainHandler), (r"/", MainHandler),
#(r"/auth/login", AuthLoginHandler),
#(r"/auth/logout", AuthLogoutHandler),
#(r"/feeds/([^/]+)", FeedEntriesHandler),
#(r"/feeds/add", FeedAddHandler),
(r"/feeds/getupdates", ClientUpdatesHandler), (r"/feeds/getupdates", ClientUpdatesHandler),
(r"/feeds/update/?", FeedUpdateHandler), (r"/feeds/update/?", FeedUpdateHandler),
] ]
Expand All @@ -39,11 +35,9 @@ def __init__(self):
login_url="/auth/login", login_url="/auth/login",
template_path=os.path.join(os.path.dirname(__file__), "templates"), template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static") static_path=os.path.join(os.path.dirname(__file__), "static")
#xsrf_cookies=True
) )
tornado.web.Application.__init__(self, handlers, **settings) tornado.web.Application.__init__(self, handlers, **settings)



class BaseHandler(tornado.web.RequestHandler): class BaseHandler(tornado.web.RequestHandler):
@property @property
def dbserver(self): def dbserver(self):
Expand Down

0 comments on commit 9b96797

Please sign in to comment.