Make WSGI routing support routing to WSGI apps or to controller+action

Support the beginnings of serialization format detection (aka did the request ask for JSON or XML)
This commit is contained in:
Michael Gundlach
2010-08-12 15:19:33 -07:00
committed by Monty Taylor
4 changed files with 59 additions and 23 deletions

View File

@@ -1,5 +1,9 @@
[Messages Control]
disable-msg=C0103
disable=C0103
# TODOs in code comments are fine...
disable=W0511
# *args and **kwargs are fine
disable=W0142
[Basic]
# Variables can be 1 to 31 characters long, with
@@ -10,10 +14,6 @@ variable-rgx=[a-z_][a-z0-9_]{0,30}$
# and be lowecased with underscores
method-rgx=[a-z_][a-z0-9_]{2,50}$
[MESSAGES CONTROL]
# TODOs in code comments are fine...
disable-msg=W0511
[Design]
max-public-methods=100
min-public-methods=0