[mezzanine-users] Re: Some questions before migrating Drupal site to Mezzanine

2014-05-27 Thread palindrome
What are your conclusions 4 months later? -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegroups.com. For more options,

Re: [mezzanine-users] Re: how to serve static files under customized theme

2014-05-27 Thread Josh Cartmell
I'm not sure. So when you run collectstatic it doesn't get copied over to your project's static directory? On Mon, May 26, 2014 at 9:18 PM, Wesley nisp...@gmail.com wrote: Hi Josh, Yeah, I do think I am right in the beginning:-) My current problem is that, I have a 404.png under

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-27 Thread bob hosk
Hi Brad, Sorry it's taken me so long to get back to you on this, after your fantastic reply. It's been a very hectic week I tried exactly the settings you most recently posted, and unfortunately I'm still hitting the 500 error when attempted to use the upload featured image section of the

[mezzanine-users] Should Cartridge Order be SiteRelated?

2014-05-27 Thread Josh Cartmell
I'm working on a Mezzanine/Cartridge site which will have multi tenancy. I'm writing some custom management commands that should be able to filter Orders on a per site basis. I just noticed that Order is not SiteRelated so at least as things stand I won't be able to do that. Should Order inherit

[mezzanine-users] Bootstrap 3.1.1: Menu drop downs not working as expected

2014-05-27 Thread Preethi
Hi, I am using bootstrap 3.1.1. In the top nav bar, the items in the dropdowns are not visible unless I remove the disabled class set on the top level menu item in pages/menus/dropdown. Then the dropdowns appear only when I click on the top level menu item. How do I get the old behaviour of

Re: [mezzanine-users] Bootstrap 3.1.1: Menu drop downs not working as expected

2014-05-27 Thread Josh Cartmell
Hey Preethi, this works for me. Are you including the bootstrap-extras.js somewhere in your base.html? https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/core/templates/base.html#L37 On Tue, May 27, 2014 at 4:02 PM, Preethi preethid...@gmail.com wrote: Hi, I am using bootstrap

Re: [mezzanine-users] Should Cartridge Order be SiteRelated?

2014-05-27 Thread Stephen McDonald
Hard to answer. I imagine in some cases it'd be more desirable for orders to be global. Eg a business with one admin, one set of user accounts and many sites, would only want one interface to all orders. On Wed, May 28, 2014 at 1:57 AM, Josh Cartmell joshcar...@gmail.com wrote: I'm working on

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-27 Thread Ryan Sadwick
My site is SSL and I haven't had any problems with s3. It was rough initially but I just continued to work through the problems and found a sweet spot. I find that it is important to understand how S3/Boto work instead of pasting someone's settings. Here is what I used. I stripped out my

[mezzanine-users] Re: tinymce JS files on Amazone S3 CDN requires AWS_QUERYSTRING_AUTH = False?

2014-05-27 Thread Ryan Sadwick
Try these settings, there isn't much documentation on these. My site runs on SSL and all the TinyMCE editors work. I'm running Mezzanine 3.14 + Cartridge. *STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'* *AWS_QUERYSTRING_AUTH = False* *AWS_S3_SECURE_URLS = True*

Re: [mezzanine-users] Cartridge: wishlist text customization

2014-05-27 Thread Ryan Sadwick
Simple enough, thanks and it works great! On Sunday, May 18, 2014 11:03:16 PM UTC-4, Stephen McDonald wrote: I'd just modify the template code that displays the messages to check for that particular message, and in that case, display a different message directly in the template.. On Sun,

Re: [mezzanine-users] Re: Proposal: page_move signals

2014-05-27 Thread Stephen McDonald
Thanks for putting these points together - really well thought out. I think it's OK that can_move has a slightly different interface (exceptions vs boolean returns), so long as we document that. I think calling can_move when a page is created is also OK - the fact it returns an error messages

[mezzanine-users] Using local_settings.py is awkward - here is a better way.

2014-05-27 Thread Paul Whipp
Having the local_settings always outside of version control is a pain on large projects and not being able to arbitrarily alter settings (rather than simply overwrite them) is agony. In 'normal' Django, the 'two scoops' method can easily be used to replace the local_settings.py import but in