In the implementation of this object, None represents the global
namespace as well as a namespace with no key.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toArgs(self)
Return all namespaced arguments, failing if any non-namespaced
arguments exist. |
source code
|
|
str or unicode
|
toFormMarkup(self,
action_url,
form_tag_attrs=None,
submit_text=' Continue ' )
Generate HTML form markup that contains the values in this message,
to be HTTP POSTed as x-www-form-urlencoded UTF-8. |
source code
|
|
|
toURL(self,
base_url)
Generate a GET URL with the parameters in this message attached as
query parameters. |
source code
|
|
|
toKVForm(self)
Generate a KVForm string that contains the parameters in this
message. |
source code
|
|
|
toURLEncoded(self)
Generate an x-www-urlencoded string |
source code
|
|
|
|
|
getKey(self,
namespace,
ns_key)
Get the key for a particular namespaced argument |
source code
|
|
str or the type of default
|
getArg(self,
namespace,
key,
default=None)
Get a value for a namespaced key. |
source code
|
|
dict
|
getArgs(self,
namespace)
Get the arguments that are defined for this namespace URI |
source code
|
|
|
|
|
setArg(self,
namespace,
key,
value)
Set a single argument in this namespace |
source code
|
|
|
|
|
|
|
|
|
|
|
getAliasedArg(self,
aliased_key,
default=None) |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|