Google Code Exporter
Google Code Exporter
``` no, not currently. ``` Original comment by `[email protected]` on 23 May 2011 at 12:31
Original comment by `[email protected]` on 13 Oct 2011 at 11:29 - Added labels: **Type-Enhancement**, **Priority-Low** - Removed labels: **Type-Defect**, **Priority-Medium**
``` Was this solved? ``` Original comment by `[email protected]` on 16 Apr 2013 at 5:11
``` nope, that's why this issue is still open. ``` Original comment by `[email protected]` on 17 Apr 2013 at 12:11
``` There is currently no builtin support for this. If you wanted to do it yourself, the modification happens in the Dispatcher.update_impl (single property update) and Dispatcher.model_from_xml (multi-property update) methods....
``` I am now using a CustomModelHandler with custom create(self, props) method, to resolve this problem, to use a CustomModelHandler, I add Dispatcher.model_handler_class , this must be set before add_models....
``` using a custom create() method will only solve the problem for initial Model creation. that does not stop those fields from being modified in an update call. ``` Original...
``` you are right. so I make another modification. added a method Authorizer.filter_props(model_type, props, model, is_replace) which returns props. please check it. ``` Original comment by `[email protected]` on 29 Nov...
``` Me really interested in this enhancement, too. It's vital to prevent from the modifying such hidden properties as created, updated, author, etc. So Authorizer should definitely be able to...
``` Btw, this patch does still not address all update possibilities. an individual property may be set using the "model/key/property_name" path (handled in update_impl as a "single property update"). should...