So I have:
urls = (
"/example/(.+)", "example"
)
class example:
def GET(self, examplexxx):
if examplexxx:
#return "You requested examplexxx: %s" % examplexxx
try:
return render.examplefolder.examplexxx()
except Exception, e:
return e
def POST(self):
pass
Well obviously it takes examplexxx literally, rather than using the actual
value of examplexxx.
How can I get around this?
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/webpy.
For more options, visit https://groups.google.com/groups/opt_out.