Tagged Questions
The webob tag has no wiki summary.
3
votes
2answers
22 views
How to convert a MultiDict to nested dictionary
I would like to convert a POST from Webob MultiDict to nested dictionary. E.g.
So from a POST of:
'name=Kyle&phone.number=1234&phone.type=home&phone.number=5678&phone.type=work'
to ...
3
votes
2answers
38 views
How do you restrict large file uploads in wsgi?
I'm trying to get an understanding of the best way of handling file uploads safely in a wsgi app. It seems a lot of solutions involve using FieldStorage from the cgi module to parse form data. From ...
2
votes
2answers
145 views
I'm using Pylons and having issues with response.set_cookie
I am thinking one of the versions of Pylons is different but I could not find an easy way to tell what versions I was running. In the first example I am fairly certain it is 0.9.7 and up using webob ...
2
votes
2answers
547 views
WMS/WFS server: am I crazy to write my own?
I'm a "do it yourself" kind of guy, but I want to make sure I'm not going to do myself in by trying to bite off more than I can chew.
I am writing a browser-based mapping application that needs to ...
2
votes
1answer
283 views
How do I use pylons (paste) webtest with multiple checkboxes with the same name?
Suppose I have a form like this:
<form id='myform'>
Favorite colors?
<input type='checkbox' name='color' value='Green'>Green
<input type='checkbox' name='color' ...
2
votes
1answer
536 views
How to construct a webob.Request or a WSGI 'environ' dict from raw HTTP request byte stream?
Suppose I have a byte stream with the following in it:
POST /mum/ble?q=huh
Content-Length: 18
Content-Type: application/json; charset="utf-8"
Host: localhost:80
["do", "re", "mi"]
Is there a way ...
1
vote
1answer
91 views
GAE Python 2.7, no _io module?
I can't import WebOb 1.1 with the Python 2.7 runtime, as WebOb imports io, io imports _io, which is blocked by the SDK. Is there a way to whitelist _io? It is obviously not supposed to be blacklisted.
...
1
vote
2answers
190 views
How can I build a file-upload POST HTTP request with WebOb?
I am using Ian Bicking's WebOb to very great effect in writing Python web application tests. I call webob.Request.blank('/path...'), and then use the resulting request object's get_response(app) ...
1
vote
1answer
101 views
Fresh solr instance for every hudson test build
I'm building a test suite for a python site, powered by hudson. Currently, the workflow for a test run looks like:
Pull down the latest version from the repository.
Create a new mysql db and import ...
1
vote
3answers
207 views
How to redirect to a url with non-English characters?
I'm using pylons, and some of my urls contains non-English characters, such as:
http://localhost:5000/article/111/文章标题
At most cases, it won't be a problem, but in my login module, after a user has ...
1
vote
1answer
612 views
Opening POSTed file with PIL Image
Using WSGI, webob and PIL, I'm trying to use Image.open() on a file directly from the request. However, Image.open() always throws the exception "cannot identify image file". The image is the only ...
0
votes
1answer
67 views
Why does creating a neo4j.GraphDatabase from within a Paste app cause a segfault?
The following code causes Java to segfault:
import os.path
import neo4j
from paste import httpserver, fileapp
import tempfile
from webob.dec import wsgify
from webob import Response, Request
HOST = ...
0
votes
2answers
138 views
pyramid - threadlocal doesn't work inside Response's app_iter
With the following sample code:
from webob import Response
from paste.httpserver import serve
def test_iter():
from pyramid import threadlocal
yield 'current request: %s' % ...
0
votes
1answer
177 views
After referencing an element in a WebOb.params (UnicodeMultiDict) an element gets popped off the end
When I reference the params parameter of the WebOb Request an element is suddenly popped off the end. That or it's being reduced to a single element. The referenced element isn't the one getting ...
0
votes
1answer
305 views
Google App Engine Python WebApp framework supported self.error() codes
I know we can return errors to requests by calling self.error(http_error_code_here). However, there are some error codes that don't seem to be supported. "Unsupported error code" comes out when I use ...
0
votes
1answer
317 views
Pylons: response renaming? Is there a better way?
I've got a Pylons controller with an action called serialize returning content_type=text/csv. I'd like the response of the action to be named based on the input patameter, i.e. for the following ...