Re: [mezzanine-users] Re: TinyMCE4 - Problems on deployed site

2015-11-10 Thread Iain Mac Donald
On Wed, 11 Nov 2015 07:07:29 +1030 Danny wrote: > My overall solution was to make my entire site HTTPS... not elegant, > I know, but probably better in this security conscious world :) and don't forget ranking: http://googlewebmastercentral.blogspot.co.uk/2014/08/https-as-ranking-signal.html --

Re: [mezzanine-users] Re: TinyMCE4 - Problems on deployed site

2015-11-10 Thread Cody Pettit
Thanks for the quick response! We'll try your suggestion *Cody Pettit* *Marriott School of Management* *Masters of Information Systems Management* *(801) 877-2561* On Tue, Nov 10, 2015 at 1:32 PM, Cody Pettit wrote: > Hi Danny, > > Did you ever figure out what your issue was/is? We are facing

Re: [mezzanine-users] Re: TinyMCE4 - Problems on deployed site

2015-11-10 Thread Cody Pettit
Hi Danny, Did you ever figure out what your issue was/is? We are facing a similar issue. We can't select an image from the Media Library to insert into a page (or form). It's not even working for us in development with DEBUG = True. We can, however, select and insert an image into a Gallery Pa

Re: [mezzanine-users] Re: TinyMCE4 - Problems on deployed site

2015-11-10 Thread Danny
On 11/11/2015 7:02 AM, Cody Pettit wrote: Hi Danny, Did you ever figure out what your issue was/is? We are facing a similar issue. We can't select an image from the Media Library to insert into a page (or form). It's not even working for us in development with DEBUG = True. We can, however

[mezzanine-users] Python 3 and fabric

2015-11-10 Thread Joshua Glenn
I have installed mezzanine and deployed a working test website with it (the hard way). But I wanted to check into the fabric deployment tools that are included with mezzanine. But, I am using Python 3. Does fabric even work with Py3? -- You received this message because you are subscribed to t

Re: [mezzanine-users] Re: page_link via code

2015-11-10 Thread Ken Bolton
Hi Lorenzo, To programmatically generate a Link, the following should, more or less, work. >>> from mezzanine.pages.models import Link >>> menus = [] >>> new_link = Link.objects.get_or_create(title='New Link', slug=' http://www.example.com', in_menus=list(menus)) I feel like I am not getting to

[mezzanine-users] Re: page_link via code

2015-11-10 Thread Lorenzo D'Agostino
Hi, I want to create a "command" to populate my website with a default menu (in this case page_link). I found in documentation * class *mezzanine.pages.models.Link(**args*, ***kwargs*) but i don't undestand how to use. I can't find anywhere an example that explains how to use these instructio

[mezzanine-users] Re: page_link via code

2015-11-10 Thread Lorenzo D'Agostino
Hi, I want to create a "command" to populate my website with a default menu (in this case page_link). I found in documentation *class *mezzanine.pages.models.Link(**args*, ***kwargs*)[source]