Justin Ouellette

Results 7 comments of Justin Ouellette

Thanks for the reply. And no need to rush 0.5 out, I was able to do what I needed to do. My model has some fields I'm encrypting/decrypting with KMS....

Just a quick example of what I'm thinking of. ``` python def pre_save_(self, engine): """ Called before saving items """ self.__engine__ = engine v_err = [] for field in six.itervalues(self.meta_.fields):...

I've made a Base class/mixin to subclass along with Model to add this feature if anyone is interested in it: ``` python class Base(object): def validate(self): self._fields_with_errors = [] for...

I'm seeing a segfault in my test environment (Ubuntu 16.04 container in aws codebuild) but not locally (Ubuntu 18.04), both are ruby 2.6.1. **Latest, not working:** sassc 2.4.0 sass-rails 2.1.2...

It looks like this was actually fixed in the primary repo https://chromium-review.googlesource.com/c/angle/angle/+/3279232 I'm going to try to find out why this sat open and unreviewed for a year+ though.

Is there any resolution for this? It's been 2+ years... Currently trying to programatically set titles and slugs but even setting slug in clean or or full_clean is causing a...

I've managed to work around this with the following: ``` $(document).ready(function(){ if($('#id_slug').val() == ''){ $('#id_slug').val('placeholder'); } }); ``` and in my model: ``` def clean(self): super(CustomPage, self).clean() self.title = "{}...