Commit 565e8f32 authored by 's avatar

Added Michels proposed change to support 'action' form var type ('method'

is still supported but officially deprecated).
parent f5553ba2
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.39 $'[11:-2] __version__='$Revision: 1.40 $'[11:-2]
import regex, re, sys, os, string, urllib import regex, re, sys, os, string, urllib
from string import lower, atoi, rfind, split, strip, join, upper, find from string import lower, atoi, rfind, split, strip, join, upper, find
...@@ -413,10 +413,11 @@ class HTTPRequest(BaseRequest): ...@@ -413,10 +413,11 @@ class HTTPRequest(BaseRequest):
seqf=tuple seqf=tuple
tuple_items[key]=1 tuple_items[key]=1
flags=flags|SEQUENCE flags=flags|SEQUENCE
elif type_name == 'method': elif (type_name == 'method' or type_name == 'action'):
if l: meth=key if l: meth=key
else: meth=item else: meth=item
elif type_name == 'default_method': elif (type_name == 'default_method' or type_name == \
'default_action'):
if not meth: if not meth:
if l: meth=key if l: meth=key
else: meth=item else: meth=item
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment