Bharat Chauhan
Bharat Chauhan
@bdarnell Ah, you're right. I didn't know that all the fds are closed during autoreload. I even monitored the db processes to double check; connections are indeed closed. It seems...
Hi, I've added a basic JavaScript API ([see docs](https://django-jsonform.readthedocs.io/en/stable/guide/javascript.html)) which will allow you to dynamically update the schema and the widget. Please upgrade to [v2.11.0](https://github.com/bhch/django-jsonform/releases/tag/v2.11.0) and test it out. ---...
Fixed in v2.11.0. However, `tests` files are still there. But that's for future.
Fixed in [v2.11.0](https://github.com/bhch/django-jsonform/releases/tag/v2.11.0). Please upgrade.
Yeah, docs definitely need to be updated. A lot of the new features, such as `bulk_update`, `ArrayField`, etc. I didn't know existed until I saw the changelog.
Ah, yes you're right. I was trying to generate a new token for the current response but that just reused the cached value. I saw Django's source code and they...
The namespace idea is really nice (although this convention ought to be called something other than "namespace" because of template namespace). It will also allow for distributing packages with their...
@piraz I did some tests based on the cases you presented. This is how the resolver will work: 1. If there's a namespace present, find the template in the directory...
According to [this RFC](https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2), header field names are case-insensitive. So, `authtoken` and `Authtoken` are same and should be treated as such by the client and the server. But what "troubles...
> The server I visited dose not treat the header `Authtoken` and `authtoken` as same That's the fault in their implementation. But I understand that you need to keep it...