I'm looking at the example of sub-applications in the docs:

http://webpy.org/cookbook/subapp

In the example for blog.py, it's the following:

import web
urls = (
  "", "reblog",
  "/(.*)", "blog"
)

What exactly does the "" for the reblog url mean?  Is this different
from "/"?

In the example for the subapplication, if I go to

http://example.com/blog (without the ending /)

will class reblog or class blog be invoked?

Thanks in advance,

Ken

-- 
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