[mezzanine-users] hiding the "Rich text page" as creatable page type

2017-03-30 Thread michiel
Hi, I'm trying to hide the "Rich text page" page type in the admin/pages/page view - normally this would be finding the admin.py and commenting off the `register` call for it, but since this file is somewhere under mezzanine's source control, deep editing an admin.py inside an app is probably

[mezzanine-users] Options for using a better S3 solution while preserving the media manager?

2017-03-31 Thread michiel
Hiya, we had a look at the filebrowser_safe module for doing reliable and high-volume S3 file storage, but all reports seem to be that while it's great for local files, it's kind of spotty and unreliable for production level S3 asset hosting. As such, we've also found advice that says "bypass

Re: [mezzanine-users] upload thumbnails rendering with relative URLs instead of absolute (AWS S3)

2017-04-17 Thread michiel
can you file an issue for that? Given that it has the word "unicode" I suspect this is python3 code being run on pythonLessThanThree - Pomax On Saturday, April 15, 2017 at 1:31:36 AM UTC-7, ja...@bitflight.io wrote: > > "error":"Unicode-objects must be encoded before hashing", >

[mezzanine-users] Re: Options for using a better S3 solution while preserving the media manager?

2017-04-17 Thread michiel
We decided to, rather than a PR, release the fix as a separate package that people can install alongside Mezzanine, that just "bolts on" to Mezzanine with pretty much zero effort: https://pypi.python.org/pypi/filebrowser-s3/ (this *should* be filebrowser_s3 but PyPi does not allow me to rename

Re: [mezzanine-users] upload thumbnails rendering with relative URLs instead of absolute (AWS S3)

2017-04-14 Thread michiel
I'll extend the readme with that information (https://github.com/Pomax/filebrowser_s3/issues/1). in the mean time: AWS_ACCESS_KEY_ID - your AWS access key AWS_SECRET_ACCESS_KEY - your AWS secret AWS_STORAGE_BUCKET_NAME - the bucket name to use on your AWS account AWS_STORAGE_ROOT - the name of

[mezzanine-users] Re: creating a page with a custom, or multiple, rich text fields

2017-03-13 Thread michiel
Very nice, thank you so much. On Monday, March 13, 2017 at 4:09:25 PM UTC-7, Eduardo Rivas wrote: > > Hi Mike. > > You are importing RichText, which is an abstract model, not a field. The > actual field is located at mezzanine.core.fields.RichTextField. You can > import it and add as many

Re: [mezzanine-users] hiding the "Rich text page" as creatable page type

2017-03-31 Thread michiel
Very nice, thanks! - Pomax On Thursday, March 30, 2017 at 12:18:50 PM UTC-7, Eduardo Rivas wrote: > > Sorry, auto correct messed up your name! > > On Mar 30, 2017 1:18 PM, "Eduardo Rivas" > wrote: > >> Hi Pima. >> >> There's a setting just for that >>