forked from Arachnid/bloggart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.py
34 lines (25 loc) · 1.31 KB
/
admin.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
32
33
34
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import fix_path
import config
import post_deploy
import handlers
post_deploy.run_deploy_task()
application = webapp.WSGIApplication([
(config.url_prefix + '/admin/', handlers.AdminHandler),
(config.url_prefix + '/admin/posts', handlers.AdminHandler), # Lists all posts in admin interface
(config.url_prefix + '/admin/pages', handlers.PageAdminHandler), # Lists all pages in admin interface
(config.url_prefix + '/admin/newpost', handlers.PostHandler), # Write a new post.
(config.url_prefix + '/admin/post/(\d+)', handlers.PostHandler), # Add or edit a post given its key
(config.url_prefix + '/admin/regenerate', handlers.RegenerateHandler), # Regenerate all content.
(config.url_prefix + '/admin/post/delete/(\d+)', handlers.DeleteHandler),
(config.url_prefix + '/admin/post/preview/(\d+)', handlers.PreviewHandler),
(config.url_prefix + '/admin/newpage', handlers.PageHandler), # Write a new page.
(config.url_prefix + '/admin/page/delete/(/.*)', handlers.PageDeleteHandler),
(config.url_prefix + '/admin/page/(/.*)', handlers.PageHandler),
])
def main():
fix_path.fix_sys_path()
run_wsgi_app(application)
if __name__ == '__main__':
main()