Index of the dispatch module
-
m
wareweb.dispatch
...
-
C
ActionDispatch
...
- This dispatches to a method based on a URL variable (GET or POST
-- remember that you can also include GET variables in your form's
action even if the form is being POSTed).
- a prefix ...
- f respond_event ...
- f __addtoclass__ ...
- f __init__ ...
- f valid_method ...
- f find_method ...
- f get_method ...
-
C
PathDispatch
...
- This dispatches to a method based on the PATH_INFO. Thus
/path/to/servlet/meth will call the meth method.
- a prefix ...
- f respond_event ...
- f __addtoclass__ ...
- f valid_method ...
- f find_method ...
- f get_method ...
- f public ...
-
C
ActionDispatch
...
- This dispatches to a method based on a URL variable (GET or POST
-- remember that you can also include GET variables in your form's
action even if the form is being POSTed).