Re: [mezzanine-users] IO Error on Upload - Firefox but not Chrome

2015-10-07 Thread Iain Mac Donald
I suffered from this problem a while back but unfortunately I never took notes at the time :-( I seem to remember the problem didn't occur when I was running the Django server on localhost but it did happen when I was running it on another host on my LAN. When I moved to production with Gunicorn

Re: [mezzanine-users] Re: Another Mezzanine site

2015-10-07 Thread Ahmad Khayyat
The Mezzanine-based http://openerparabia.org/ Arabic (RTL) website is now: http://odooarabia.org/ New brand, new theme, still happily powered by Mezzanine. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and

Re: [mezzanine-users] Mezzanine top lvel pages menu in a a third party app

2015-10-07 Thread Graeme Pietersz
I got what I wanted by doing this: Page.objects.filter(parent__isnull=True) but the order was different. I am sure other people will have the same problem, and I cannot find it documented anywhere, and it takes a bit of going through the code to find it, so what works is

[mezzanine-users] Making alterations to Mezzanine's Blog models.py

2015-10-07 Thread Richard Jackson
Hi there, I was interested in making an addition to my own site's BlogPost class in mezzanine.blog.models.py (such as adding a new field called "foo"), and was wondering about the best way to do this. I'm assuming that editing the models.py file directly isn't a good idea since this won't be

Re: [mezzanine-users] Making alterations to Mezzanine's Blog models.py

2015-10-07 Thread Richard Jackson
Cheers Ken, much appreciated! Rich On Wednesday, October 7, 2015 at 3:39:00 PM UTC+1, Kenneth Bolton wrote: > > Hi Rich, > > Your instincts regarding future-proofing are good. Take a look at the Model > Customization > >

Re: [mezzanine-users] Making alterations to Mezzanine's Blog models.py

2015-10-07 Thread Ken Bolton
Hi Rich, Your instincts regarding future-proofing are good. Take a look at the Model Customization section of the docs. - ken On Wed, Oct 7, 2015 at 10:33 AM, Richard Jackson wrote: > Hi there, > > I

Re: [mezzanine-users] Making alterations to Mezzanine's Blog models.py

2015-10-07 Thread Richard Jackson
Tiny typo in the first example there: EXTRA_MODEL_FIELDS = ( # Four-item sequence for one field injected. ( # Dotted path to field. "mezzanine.blog.models.BlogPost.image", # Dotted path to field class. "somelib.fields.ImageField", # Positional args