Sergey Maranchuk

Results 17 comments of Sergey Maranchuk

for compiling mo i use https://github.com/slav0nic/DjangoBB/blob/master/setup.py#L9-L31 better move translation to service like transifex, outdated translation is annoying :|

time to think about Bootstrap **5** integration :)

But kinto also support plugins that internally have all of this, for example `/accounts/` endpoint don't use bucket/collection, is it possible get listing via kinto-http.js for existing accounts for example?...

Also will be nice extending functionality for support HttpOnly cookies, currently here is no way for add `credentials` params to `fetch()` call https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters for example in axios i do something...

here is also some conversion from chat about `websauna.system.model.retry` functionality https://gitter.im/websauna/websauna?at=5d1b077984e3391a5abbadc9 zope `transaction` package have some retry functionality: ```py # Failed def test_conflict2(test_request, dbsession_factory, test_instance): TestModel = get_test_model() s1 =...

```python from websauna.system.form.fields import JSONValue, EnumValue from websauna.system.form.schema import enum_values ... include = [ ... colander.SchemaNode(EnumValue(Position), name="position", widget=deform.widget.SelectWidget(values=enum_values(Position))),] ```

i think we must use csrf as is without linking to `request`, it templates `{{ get_csrf_token() }}` available, in deform we need only change one validator. Also maybe make sense...

https://github.com/ooduor/websauna.depot

`/about` endpoint in `npx nuxi init content-app -t content` app with latest `npm:@nuxt/content-edge@latest` still return error after `yarn generate/preview` ``` { "message": "You should use slots with ", "slot": "default",...

Normal request profiling stack ![normal](https://i.imgur.com/sR9o8f0.png) Slow with wrong password ![normal](https://i.imgur.com/fCMq3pI.png ) so, as i understand `bcrypt.checkpw` called 2 times, bcrypt slow by design, but second call looks strange (in error...