Thomas Kolar

Results 11 issues of Thomas Kolar

…hooks for subclasses. I'm using this app for a project of my own, and wanted to set `user.last_login`. I felt like what I had to do to accomplish this wasn't...

I'm trying to host the LRS in a subpath, ie, it is to be accessed via `/lrs`. This appears not to be supported - for semi-technical/political/bureaucracy reasons, running on a...

The current implementation of `ADL.launch` uses `getQueryVariable` [1], which assumes that it will always be able to get the launch parameters from `window.location`. This is not true if `window` is...

See also: https://caniuse.com/#feat=form-submit-attributes This would be awesome considering that `form` elements are not allowed to be nested. For constructing a formset with some buttons that do something with individual objects...

please discuss

When running the following code: ```python import unihandecode d = unihandecode.Unihandecoder(lang="de") ``` The following error occurs: ``` Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python3.7/dist-packages/unihandecode/__init__.py", line...

enhancement

Code like this: ```python with pgtrigger.ignore(): try: do_something() # raises database error except: # handle exception without reraising ``` Will currently crash, as the `RESET` statement emitted by pgtrigger will...

question

Let's say I have two model objects `foo` and `bar`, and let's say that soft deleting `foo` has the side effect of also soft deleting `bar`. For unit testing, I'd...

This problem is basically the same as described in [this stackoverflow question](https://stackoverflow.com/questions/52043231/using-a-different-manager-with-refresh-from-db). Soft deleted instances are not found by the default manager, and `refresh_from_db` unfortunately uses that. A possible solution...

This ties in with #863 - debugging isn't made impossible by xdist, it's just that default PDB doesn't work. Remote debuggers do, and it would be nice if - Just...

If `DATABASES` is configured using `pgconnection.configure`, in-place alterations in derived settings will only apply in that thread. For example: ```python # base_settings.py DATABASES = pgconnection.configure({ (...) }) ``` ```python #...