Skip to content

Instantly share code, notes, and snippets.

@jkern
Created March 10, 2009 19:54
Show Gist options
  • Save jkern/77099 to your computer and use it in GitHub Desktop.
Save jkern/77099 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import web
urls = (
'/', 'index',
'/page/(*), 'page',
'/user/(*), 'user',
'/page/(*)/editor, 'editor',
'/page/(*)/save/(*), 'save', #Restful page export. CSV, HTML, XML
'/page/(*)/comment', 'comment'
'(*)/rss,
'/login', 'login',
'/logout', 'logout'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment