On Aug 17, 5:13 pm, "Aaron Swartz" <[EMAIL PROTECTED]> wrote:
> Can you share your urls definitions?

urls = (
        '/','index',
        '/login(/.*)/?','login',
        '/logout/?','logout',
        '/register/?','register',
        '/users/?', 'userlist',
        '/users/page/([0-9]+)/?', 'userlist',
        '/user/(id/[0-9]+)/?', 'user_profile',
        '/user/(name/.*)/?', 'user_profile',
        '/profile/?', 'user_profile',
        '/profile/edit/?', 'edit_profile',
        '/profile/edit/([a-z]+)/?', 'edit_profile',
        '/new(?P<new_type>)/?', 'new_post',
        '/new/(?P<new_type>file)/?', 'new_post',
        '/new/(?P<new_type>link)/?', 'new_post',
        '/userposts/(.*)/?', 'post_listings',
        '/ownpost/(.*)/?', 'post_owner',
        '/tags/insertables/(.*)/?', 'tag_listings',
        '/post/([0-9]+)/?', 'view_post',
        '/post/([0-9]+)/edit/?', 'edit_post',
        '/post/([0-9]+)/xspf/?', 'xspf',
        '/post/([0-9]+)/post?', 'post_reply',
        '/post/(?P<edit_id>[0-9]+)/(?P<new_type>edit)/?', 'new_post',
        '/galleries/([^/]*)(.*)', 'galleries'
)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to