filebrowser-safe icon indicating copy to clipboard operation
filebrowser-safe copied to clipboard

File manager for Mezzanine

Results 27 filebrowser-safe issues
Sort by recently updated
recently updated
newest added

Uploaded files with an ampersand (&) in their name fail to rename or delete. To recreate for deletion: 1. Upload an image with an ampersand (&) in the title 2....

Static generation of admin media url won't work with whitenoise or other cdn (since the only available assets are the ones containing hashes in their names)

django-storages removed the S3BotoStorage backend in v. 1.9. It is replaced by S3Boto3Storage. So filebrowser_safe.storage needs a corresponding mixin class. At present, mixin_class name lookup fails silently.

Using mezzanine EXTRA_MODEL_FIELDS raises an AppRegistryNotReady exception, which is circumvented by this. This change fixes this issue: https://github.com/stephenmcd/filebrowser-safe/issues/143

Using EXTRA_MODEL_FIELDS = ( ( "mezzanine.pages.models.RichTextPage.featured_image", "mezzanine.core.fields.FileField", ("featured image",), { "blank": True, "null": True, "upload_to": "afbeeldingen", "format": "Image", "max_length": 255, }, ), ) gives us an error, see traceback below....

I wanted to limit the upload size of images while allowing PDFs etc of larger size

Issue I have this model field `image = FileField(verbose_name=_("Image"), upload_to="images", format="Image", max_length=255, null=True, blank=True)` - Uploading images using regular admin works fine - When called inside editable, the FileBrowserWidget seems...

This function was removed when django-storages removed support for Python 2 https://github.com/jschneier/django-storages/commit/2dac7b83a191acff42a595e249dface3cf9f3959