Let me rephrase the question. Say I have a query string like this:

?view=Data&item=9875

What I want to do is simply invoke process "view" with variable
"Data". This would replace my existing query string mess which looks
like this:

if 'view' in form and 'item' in form:
    HTML=view(Data, item(9875))

so it just seems like it would be easier to encode the process in the
query rather than filtering the query string.

-- Gnarlie
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to