-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.py
20 lines (18 loc) · 1006 Bytes
/
blog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import webapp2
from handlers import *
app = webapp2.WSGIApplication([('/', MainPage),
('/blog/?', BlogFront),
('/blog/([0-9]+)', PostPage),
('/blog/([0-9]+)/like', LikeBtn),
('/blog/([0-9]+)/comment/newcomment', NewComment),
('/blog/([0-9]+)/comment/([0-9]+)/delete', DeleteComment),
('/blog/([0-9]+)/comment/([0-9]+)/edit', EditComment),
('/blog/newpost', NewPost),
('/blog/([0-9]+)/edit', EditPost),
('/blog/([0-9]+)/delete', DeletePost),
('/signup', Signup),
('/welcome', Welcome),
('/login', Login),
('/logout', Logout),
],
debug=True)