Sorry, let me clarify and be more specific again. The framework I referred 
to was Django, where their url dispatcher can create named groups like so:

r'^places/(?P<lastname>\w+)/(?P<firstname>\w+)/$', 'misc.views.home'


This url would be mapped to a function with the name given in the url:


def home(request, lastname, firstname)

   # Do something with name and return data to webpage



I don't quite understand how web2py's routes.py would handle this.




>>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to