[mezzanine-users] proposal to enhance comment default status in generic/models.py

2014-01-02 Thread Sergei G
I think it would be beneficial to set the default status of new comment to default settings value *only* if is_public is not set already. For example, if import operation sets the is_public value to 0, then it should not be overridden. Here is my proposed enhancement to generic/models.py file.

Re: [mezzanine-users] migration from private system to mezzanine

2014-01-02 Thread Josh Cartmell
Hey Sergei, glad that you are getting it sorted! For images, I think that you could put the images under the media directory, and then just update your IMG_ROOT setting. I.E. put all the images in /static/media/uploads/img/ (so they show in the media library) and then update your IMG_ROOT to

Re: [mezzanine-users] Import Error on local_settings

2014-01-02 Thread Stephen McDonald
Sounds like a python path issue. You'll see at the top of settings.py in latest Mezzanine, for consistency with Python 3.3: from __future__ import absolute_import ... which answers the questions as to what's changed. You probably need to add to sys.path somewhere or other in order to satisfy

[mezzanine-users] Re: How to Increase Max Length of Form Field Choices

2014-01-02 Thread danrwilliam
I've been working more on this without much success. The real problem with this is that the FORMS_FIELD_MAX_LENGTH setting does not get used for the Field *choices* max_length option even though the *default *field uses this setting. I've tried recreating the Field model and changing the