diff --git a/confluent/httpapi.py b/confluent/httpapi.py index 2690e34c..e9d711f0 100644 --- a/confluent/httpapi.py +++ b/confluent/httpapi.py @@ -52,20 +52,23 @@ def _get_query_dict(env, reqbody, reqtype): for qpair in qstring.split('&'): qkey, qvalue = qpair.split('=') qdict[qkey] = qvalue - print reqbody if reqbody is not None: if "application/x-www-form-urlencoded" in reqtype: - pbody = urlparse.parse_qs(reqbody) + pbody = urlparse.parse_qs(reqbody, True) for ky in pbody.iterkeys(): if len(pbody[ky]) > 1: # e.g. REST explorer qdict[ky] = pbody[ky] else: qdict[ky] = pbody[ky][0] - if 'restexplorerignorekey' in qdict: - for key in qdict['restexplorerignorekey']: - if key in qdict: - del qdict[key] - del qdict['restexplorerignorekey'] + if 'restexplorerhonorkey' in qdict: + nqdict = {} + for key in qdict: + if key == 'restexplorerop': + nqdict[key] = qdict['restexplorerop'] + continue + if key in qdict['restexplorerhonorkey']: + nqdict[key] = qdict[key] + qdict = nqdict return qdict @@ -173,7 +176,6 @@ def resourcehandler(env, start_response): if 'restexplorerop' in querydict: operation = querydict['restexplorerop'] del querydict['restexplorerop'] - print repr(querydict) if '/console/session' in env['PATH_INFO']: #hard bake JSON into this path, do not support other incarnations prefix, _, _ = env['PATH_INFO'].partition('/console/session') @@ -227,22 +229,33 @@ def resourcehandler(env, start_response): return start_response('200 OK', headers) if mimetype == 'text/html': - yield '
' - yield '' - for rsp in hdlr: - yield rsp.html() - yield "
" - yield '
' + for datum in _assemble_html(hdlr, resource): + yield datum else: - yield '[' - docomma = False - for rsp in hdlr: - if docomma: - yield ',' - else: - docomma = True - yield rsp.json() - yield ']' + for datum in _assemble_json(hdlr, resource): + yield datum + + +def _assemble_html(responses, resource): + yield '
' + yield '' + yield '' + for rsp in responses: + yield rsp.html() + yield "
" + yield '
' + + +def _assemble_json(responses, resource): + yield '[' + docomma = False + for rsp in responses: + if docomma: + yield ',' + else: + docomma = True + yield rsp.json() + yield ']' def serve(): diff --git a/confluent/messages.py b/confluent/messages.py index b1a46305..d0c54f9f 100644 --- a/confluent/messages.py +++ b/confluent/messages.py @@ -25,8 +25,6 @@ class ConfluentMessage(object): label = key value = '' note = '' - if 'label' in val: - label = val['label'] if 'value' in val: value = val['value'] if 'note' in val: @@ -34,8 +32,8 @@ class ConfluentMessage(object): snippet += label + ":" + \ '%s' % ( key, value, note) - snippet += '