Roman Miroshnychenko

Results 99 comments of Roman Miroshnychenko

I've tested `sys.argv` behavior for script and plugin addons, and don't see any difference from the current implementation.

The log record in question is created only in debug mode: https://github.com/romanvm/django-tinymce4-lite/blob/master/tinymce/widgets.py#L96 so it shouldn't be logged in production. If you are running Django with debug enabled in production, this...

As you can see in the code, the log record in question is guarded by `if settings.DEBUG:` condition and should not occur with `DEBUG = False'

In the latest version the logging logic has been changed and the issue should not happen any more.

Again, I can only recommend to check your project configuration. The message has DEBUG level and should not appear under normal circumstances. E.g. it does not appear in the test...

To be honest, I have absolutely no idea what you are talking about.

Thank you for your explanation. Indeed, this application attaches TinyMCE widget to textareas via inline `` tags. If you disable that, it won't work any more. As for fixing this,...

Honestly, my priorities have changed, and I have not time to develop this package beyond minimal maintenance. So any pull request are welcome.

Your solution is correct. See here: https://docs.djangoproject.com/en/3.0/ref/settings/#x-frame-options

> Now, besides this, why load the filebrowser in a frame? Why not, for example, using ajax if possible? (I didn't saw the code, so I am just guessing here)....