# HG changeset patch # User casties # Date 1282674571 -7200 # Node ID a2e4ca3f1cffe7fdb6d896b6af933f745fb4d3a6 # Parent 2b73f868d34f79a9e5c19a84b2731f5b686ef521 NEW - # 12: create table and upload data https://it-dev.mpiwg-berlin.mpg.de/tracs/GIS/ticket/12 fix oopsie diff -r 2b73f868d34f -r a2e4ca3f1cff RestDbInterface.py --- a/RestDbInterface.py Mon Aug 23 17:14:38 2010 +0200 +++ b/RestDbInterface.py Tue Aug 24 20:29:31 2010 +0200 @@ -181,9 +181,9 @@ # ReST path was stored in request path = REQUEST.get('restdb_path',[]) - # queryType and resultFormat are real parameter + # type and format are real parameter resultFormat = REQUEST.get('format','HTML').upper() - queryType = REQUEST.get('queryType',None) + queryType = REQUEST.get('type',None) logging.debug("index_html path=%s resultFormat=%s queryType=%s"%(path,resultFormat,queryType))