[mezzanine-users] Drum developper

2016-02-02 Thread Hermann Stern
I would like to integrate 'Reddit' features on my site www.obermatt.com. We publish research on 10 000 stocks for free based on an algorithm. I would like to allow visitors to leave their "bull" and "bear" story on stocks and others to up or down vote submissions. Would anyone know of

Re: [mezzanine-users] Flash removed from media library

2016-02-02 Thread Eduardo Rivas
Nice! Just gave it a try and it seems to be working fine. I really like that the file picker dialog shows previews of images now. I've noticed that selecting with Shift and Control is not working. It looks like you have to click the Browse button every time you want to add a file. Can we

[mezzanine-users] Flash removed from media library

2016-02-02 Thread Stephen McDonald
Hi all, One of the most long requested features has just landed, removal of the flash widget for file uploads in the media library: https://github.com/stephenmcd/filebrowser-safe/pull/54 The new JavaScript widget works great, but it's a lot of code add/removed, so *please* help by testing it.

[mezzanine-users] "Models aren't loaded yet" when importing "cartridge.shop.forms"

2016-02-02 Thread Márcio Moreira
Hello, I am trying to learn a bit about monkey patching due to a question that I still could not solve . So, I created inside my app the following file ( my_app/my_app/models.py ) with just one line: from

[mezzanine-users] Re: Page Processor not being called

2016-02-02 Thread Steve Harwin
Thanks Chris, The empty string results from the page processor not being called as far as I can tell. I have a view that is basically the same as this page processor and it works. Cheers, Steve On Wednesday, January 27, 2016 at 6:42:06 AM UTC+11, christia...@googlemail.com wrote: > > Hi

Re: [mezzanine-users] Flash removed from media library

2016-02-02 Thread Danny
On 3 February 2016 at 08:55, Eduardo Rivas wrote: > Nice! > > Just gave it a try and it seems to be working fine. I really like that the > file picker dialog shows previews of images now. > > I've noticed that selecting with Shift and Control is not working. It > looks

Re: [mezzanine-users] "Models aren't loaded yet" when importing "cartridge.shop.forms"

2016-02-02 Thread Ryne Everett
I think you may be having the same issue as a recent question: https://groups.google.com/forum/#!topic/mezzanine-users/dy_3UsDtumI On Tue, Feb 2, 2016 at 4:29 PM, Márcio Moreira wrote: > Unhandled exception in thread started by check_errors..wrapper at 0xb6261974> >

[mezzanine-users] Django Migration(formerly South) issue

2016-02-02 Thread George M
Hi all, I've used this link from Josh Cartmell to set up my add field portion in a migration file https://gist.github.com/joshcartme/f8dc0f3a238024c52681 I have tried running makemigrations but I get the same error as before only with different results Traceback (most recent call last): File

[mezzanine-users] Re: How to translate slug with modeltranslation

2016-02-02 Thread Cajoline
Any idea ? Le mercredi 27 janvier 2016 13:43:52 UTC+1, Cajoline a écrit : > > > Hi ! > I am creating a multilingual site and I would like to know how to > translate slug ? > > Thank you > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To

[mezzanine-users] Re: new Published Mezzanene CMS pages raise 404 'Page not found' unless logged in as admin.

2016-02-02 Thread Cajoline
I have the same problem, i don't know why, my home page return 404 error if i 'im not logged Le mercredi 15 octobre 2014 02:45:19 UTC+2, b_dub a écrit : > > > Logged into the admin as an authorised user, i can create a page (e.g. > rich-text or form) and set it to 'Published', the new page is

[mezzanine-users] Re: new Published Mezzanene CMS pages raise 404 'Page not found' unless logged in as admin.

2016-02-02 Thread Cajoline
I found the error for my case my client client had added an expiration date, so the page will see if the user was logged :) Le mardi 2 février 2016 12:00:28 UTC+1, Cajoline a écrit : > > I have the same problem, i don't know why, my home page return 404 error > if i 'im not logged > > > Le

[mezzanine-users] Re: Django Migration(formerly South) issue

2016-02-02 Thread George M
Solved! On Wednesday, February 3, 2016 at 8:39:32 AM UTC+3, George M wrote: > > Hi all, > I've used this link from Josh Cartmell to set up my add field portion in a > migration file https://gist.github.com/joshcartme/f8dc0f3a238024c52681 > I have tried running makemigrations but I get the same

Re: [mezzanine-users] Re: How to translate slug with modeltranslation

2016-02-02 Thread Cajoline
Thx you Eduardo ! I try to translate slug and i have an error when it's generated automatically I'm going to try a bit more, and if i found the solution i'll post the solution Gracias ! Le mardi 2 février 2016 14:48:50 UTC+1, Eduardo Rivas a écrit : > > If I remember correctly, when

Re: [mezzanine-users] Re: Page Processor not being called

2016-02-02 Thread Alexander Hill
Hi Steve, Certainly sounds like the processor isn't being run. Have you confirmed that e.g. by inserting some print statements or using a debugger? Is the app your processor is defined in definitely in INSTALLED_APPS? page_processors.autodiscover won't work otherwise. BTW if you don't use a

Re: [mezzanine-users] Re: How to translate slug with modeltranslation

2016-02-02 Thread Eduardo Rivas
If I remember correctly, when Modeltranslation support was added it was decided to support prefixed slugs (using the language code) instead of translatable slugs. For that reason, the slug field is not marked for transalation, and the views and urls don't handle that use case. I think you can