[mezzanine-users] Re: FileSystemEncodingChanged exceptions

2014-02-25 Thread Terry Brown
+10 on this comment - spent most of a day setting LC_* to en_US.UTF-8 all over the place, didn't help. Deleted ./static/media/uploads/gallery/Ávila, Spain.jpg ./static/media/uploads/gallery/Düsseldorf, Germany.jpg ./static/media/uploads/gallery/.thumbnails/Ávila, Spain-60x60.jpg

Re: [mezzanine-users] Re: FileSystemEncodingChanged exceptions

2014-02-25 Thread Ken Bolton
Hi Terry, If you look at the fabfile.py, https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/project_template/fabfile.py#L339-L354, you can see how the system should be configured to handle the demonstrative gallery images included in Mezzanine. hth, ken On Tue, Feb 25, 2014 at 11:54

[mezzanine-users] Re: Using a foreign key in Model search_fields?

2014-02-25 Thread step
I couldn't get this to work :( Path of least resistance was to just add the field data to self.description On Monday, February 17, 2014 10:48:21 PM UTC-5, step wrote: Hey guys, I can't figure this out. I figured this might be something worth resolving on the mailing list as a reference.

Re: [mezzanine-users] Stripe payments

2014-02-25 Thread Josh Cartmell
Hey Tom, is this for use with Cartridge or something else? If something else I have used something like the following. in the template: script src=https://checkout.stripe.com/checkout.js;/script script $(document).ready(function() { var handler = StripeCheckout.configure({ key: '{{

Re: [mezzanine-users] Admin navigation

2014-02-25 Thread Josh B
I haven't been able to jump back on it. So feel free. On Tuesday, February 25, 2014 2:07:11 PM UTC-7, Josh Cartmell wrote: Yeah, although it ended up being a small CSS change it took me quite a bit of messing around to get it looking like that. I think putting the selectors in the top bar

Re: [mezzanine-users] Cartridge and Product Option Type Choices

2014-02-25 Thread Josh B
Couple of ideas I have been batting around: No matter what I think we need to move all product option types to the database. a. Allow a user to create a option group. ie. Shirt options, which would include Size and Color (or whatever the user chooses). Each time a new product is created you

Re: [mezzanine-users] Admin navigation

2014-02-25 Thread Stephen McDonald
That's awesome - I think next we'd need to figure out how to have the current section you're on open by default. On Wed, Feb 26, 2014 at 8:42 AM, Josh Cartmell joshcar...@gmail.com wrote: Ok, just added some js, take a look at http://codepen.io/joshcartme/full/wtkrF (that's a different url

Re: [mezzanine-users] Admin navigation

2014-02-25 Thread Cameron Moore
I like where this is headed. I'm not a front-end pro either, but here are a couple usability things I noticed: #1: Having cursor: pointer on .dropdown-menu li is confusing since clicking the list-item doesn't do anything. You have to click the anchors to get any actions to fire. Can you add