Timo Brembeck
Timo Brembeck
@osmers I can only speak for myself that I probably won't have time to fix this issue in the near future.
However, I wouldn't put too much Python code on our production servers without the normal reviewing process of our cms repo. So instead, I suggest to wait for https://github.com/digitalfabrik/integreat-cms/pull/2071 to...
Yes, but I wouldn't recommend to implement these functions as scripts running only on the production server - instead, we should develop them as part of this repository (which also...
As mentioned in https://github.com/digitalfabrik/integreat-cms/pull/2082#issuecomment-1438535513, I'm pretty sure this is not completely resolved yet and needs further attention.
I think the culprit is the somewhat confusing [`MoveNodeForm`](https://github.com/django-treebeard/django-treebeard/blob/f0e197bf7d98f127c3372ee174cc0c380f0fe42e/treebeard/forms.py#L16) which is also instantiated in the normal page form. This also calls e.g. the model methods `add_root()`/`add_child()`/`add_sibling()`, even sometimes when the...
Quoting from the [other issue](https://github.com/digitalfabrik/integreat-cms/issues/1716#issuecomment-1483777716): > Now that we have the mutex, I think we can definitely say that we can barely see a difference to before. We currently have...
Another idea from @ulliholtgrave: We could also move the page tree into their separate db tables based on the region, this would also make sure that they're independent and prevent...
Hmm, I guess I would stick with the year/month naming scheme instead of `int(time())`, so maybe it would already suffice to just remove the following lines? https://github.com/digitalfabrik/integreat-cms/blob/cd9508fd7700b663ebb76a78a04d9c9c1d55e83f/integreat_cms/cms/models/media/media_file.py#L46-L55 And I think...
> My initial idea would either be some text file for each language (e.g. like a config file) or we can provide some UI and save the glossary entries in...
We could implement a csv or json import/export? And we could intercept `Ctrl + F` to directly jump into our own search input field? :smile: