David Salvisberg

Results 127 comments of David Salvisberg

Yeah you're right, I've glossed over the part where `to_unicode` will just pass through the value if it's none of the special cased value types, so it's possible to pass...

@Tschuppi81 As a side note you probably should merge master again (or at least cherry pick 25d7d0e8436c537c8a314c0b742ebe0385fafed3) to skip the currently broken browser tests.

@Tschuppi81 This is going to be tricky in general and probably a bad idea in terms of performance anyways, you are going to be better off adding caches for the...

> @Daverball is there an easy way to verify if a migration script has been invoked on an instance similar to upgrade tasks in `upgrades` table? I want to make...

You can probably use `Cache-Control` headers instead, we use them heavily in `ElectionDay` views, since those are cached. You may need to add a separate view for the `HEAD` request...

Not sure if disabling the cache globally is the best idea, I was more thinking of setting headers in individual views. Although if it's just the standard file view (i.e....

`populate_obj` is just the regular wtforms method that does a `setattr` on the object for each field in the form, `update_model` is a convention we sometimes use when the form...

You need to set it in the file view not the view that links to the file, the file is a separate request, setting it on the html does absolutely...

@Tschuppi81 It might have something to do with that we're also setting max age on the `Cache-Control` header. Caching behavior is weird and complicated. Do you still not see any...