-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathurls.py
31 lines (29 loc) · 845 Bytes
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import settings
from views import *
application = webapp.WSGIApplication([
('/', MainPage),
('/settings/', SettingsHandler),
('/fb/', Face),
('/about/', About),
('/upload/', Temp),
('/save/', Save),
('/delete/', Delete),
('/view/(.*)', View),
('/back/(.*)', Back),
('/upload/(.*)', Temp),
('/upload2/', UploadHandler),
('/temp/(.*)', ServeHandler),
('/thumb/(.*)', Thumb),
('/thumb2/(.*)', Thumb2),
('/worker/push/(.*)/(.*)', WorkerPushRequestHandler),
('/profile/', Profile),
('/big/(.*)', Big),
('/featured/(.*)', Featured),
('/gallery/(.*)', Gallery),
('/facebook/', HomeHandler),
('/remote/upload/', Mobile),
('/remote/gallery/', MobileGallery),
('/new', SocialNetwork),
('/logout/', LogoutHandler),
('/(.*)', UserProfile),
], debug=DEBUG)