PelleK

Results 20 comments of PelleK

This is great, I would love to see this merged. We're working on providing windows support for our software and this is currently hindering us. On posix we can use...

Any chance I could get a response on this, or is it better to discuss this on the forum?

@Nicolas-Medina-Teracode nope, we decided to go with a different library

I've limited the flag only when debug is also set, but this doesn't work if debug is managed statically in a different file. Consider the following: For security reasons, `DEBUG`...

We have discussed that we could put our description in the metadata instead of making use of the Argus' provided Incident.description field. This is indeed a possibility but I'm a...

we'd also need a ui element to store a filter as a global filter, and some way to manage global filters

I like this, this will allow us to remove some of our own code for creating incidents from json files :)

Nice, I like where this is going :), Do you want to make `spa` an app?

perhaps instead of learning the namespace from the app_label and the classname, we can let the subclasses determine their own namespaces: ```python class MyPreferences(Preferences): NAMESPACE = 'my_prefs' ``` could alternatively...

> > ```python > > class MyPreferences(Preferences, namespace='my_prefs): > > pass > > ``` > > > > > > > > > > > > > > > >...