Results 21 comments of Wonder

A docker `ENTRYPOINT` script like below can get around this problem: ```shell #!/bin/sh set -e # see: https://github.com/dubiousjim/dcron/issues/13 # ignore using `exec` for `dcron` to get another pid instead of...

I have tried fixing this issue by writing a view mixin: ```python class PartialUpdateModelMixin: """ Update a model instance in patch mode. Why not rest_framework.mixins.UpdateModelMixin? Because it bundles "update" and...

> using decorators such as login_required is convenient, however, they could be added outside of dispatcher: However I want a way for global decorator for all rpc handlers. > rpc_method_prefix...

@pavlov99 > One more thing: dispatcher should not know about any hooks. They could be implemented in manager. I've tried, but I found `JSONRPCResponseManager` was intended to be a static...

@RubyLouvre 如果由于业务风险不便于改, 建议后续版本保留现有用法, 但是要把 `ms-duplex-gt` 加 `Deprecated`, 从文档中隐藏, 并运行时警告, 然后使用其它替代实现. 我为什么这么建议呢, 因为 max, min 这些属于[input的标准属性](https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/Input), 当使用场景多的时候冲突就会很难避免. 至于用什么替代呢, 下面是我的建议: - ms-duplex-gt => ms-duplex-exceed, 表示要超过的值 - ms-duplex-lt => ms-duplex-under, 表示要低于的值 - ms-duplex-gte...

Hi, I just made the [dotbot-if](https://github.com/wonderbeyond/dotbot-if) plugin, and found it's sharing the similar idea with this PR.

@lkraider I think all fields of a user should be defined on User model. Then you can think other derivatives like Views of Table in database domain, and they are...

@lkraider It's a pity that none of `export_level`s meet my need: ```python from schematics.models import Model from schematics.types import StringType from schematics.common import NONEMPTY, ALL, DEFAULT, NOT_NONE, DROP class UserSelfUpdateSerializer(Model):...

@lkraider I think this is a very urgent need, since I have messed a lot while handling input/output, where I have to clean unexpected keys manually!