mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
Have attribute set return some data
Handle html form arrays with blanks, removing blank values (more complex usage requires JSON)
This commit is contained in:
parent
ecc7c21fc4
commit
5e406d6fa1
@ -59,7 +59,8 @@ def _get_query_dict(env, reqbody, reqtype):
|
||||
pbody = urlparse.parse_qs(reqbody, True)
|
||||
for ky in pbody.iterkeys():
|
||||
if len(pbody[ky]) > 1: # e.g. REST explorer
|
||||
qdict[ky] = pbody[ky]
|
||||
na = [i for i in pbody[ky] if i != '']
|
||||
qdict[ky] = na
|
||||
else:
|
||||
qdict[ky] = pbody[ky][0]
|
||||
if 'restexplorerhonorkey' in qdict:
|
||||
|
@ -41,3 +41,4 @@ def update(nodes, element, configmanager, inputdata):
|
||||
if updatenode:
|
||||
updatedict[node] = updatenode
|
||||
configmanager.set_node_attributes(updatedict)
|
||||
return retrieve(nodes, element, configmanager, inputdata)
|
||||
|
Loading…
Reference in New Issue
Block a user