Re: [mezzanine-users] Django Compressor does not minify files

2014-07-16 Thread Josh Cartmell
Hey Luigi, you shouldn't have to do anything manually to get django compressor working once it's installed. That said, Mezzanine doesn't use it by default when you are using the development server (i.e. runserver). To override this you just need to set: COMPRESS_ENABLED = True In your settings.

Re: [mezzanine-users] Django Compressor does not minify files

2014-07-16 Thread Luigi
Thank you Josh, I am using Apache2 + mod_wsgi + virtualenv. These are the packages installed in my environment: Django==1.6.5 Mezzanine==3.1.5 Pillow==2.5.1 bleach==1.4 distribute==0.6.24 django-appconf==0.6 django-compressor==1.4 filebrowser-safe==0.3.5 future==0.9.0 grappelli-safe==0.3.12

[mezzanine-users] Re: Django Compressor does not minify files

2014-07-16 Thread Eduardo Rivas
Hey Luigi. By default, Django Compressor will simply concatenate (join) your static files. This is good because it will save HTTP requests to your site, and your visitors will get all your static files in one request (instead of many). If you also want to minify your files (remove whitespace

[mezzanine-users] Email confirmation for admin-created users?

2014-07-16 Thread Matt Gushee
Hello, folks-- I am putting together my first Mezzanine (also my first Django) site ... it's taking longer than I expected, but it's mostly an enjoyable experience, so I guess it's all good. Anyway, I am trying to set up a simple online collaboration system. And this is a business site, not an

Re: [mezzanine-users] Blog Posts in Menu

2014-07-16 Thread Andrzej Grymkowski
Thanks, I feel stupidly how I could miss this one. Your hint works for me. Thanks so much. best regards, Andrzej Grymkowski -- 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,

[mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Eduardo Rivas
Hi Matt. Mezzanine supports user access control in a self-service configuration that might be useful for you. You can have your users request an account (fill in their details and password), but they will not be granted access to the site (they can't log in) until an authorized member clears

[mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Eduardo Rivas
Also, my explanation is really just a rephrasing of what you can find in the official docs: http://mezzanine.jupo.org/docs/user-accounts.html#account-approval. In that page you'll also find info about the more traditional Click here to verify your account approach, and details on Mezzanine's

Re: [mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Matt Gushee
Hi again-- On Wed, Jul 16, 2014 at 1:47 PM, Eduardo Rivas jerivasmel...@gmail.com wrote: Lastly, remember you must have your email settings set correctly to be able to send notifications to your users and yourself. For example, you can use a Gmail account: EMAIL_HOST_USER =

Re: [mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Matt Gushee
Hi, Josh-- Awesome! That sounds like what I'm looking for. I don't fully understand your suggestion, but I should be able to figure it out. If not, I'll be back with more questions ... because I need this to work ;-) BTW, any opinion on my question as to whether this should be a core feature? I

Re: [mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Josh Cartmell
Definitely ask away if you have more questions! Mezzanine tries to implement a basic set of features and make it easy to add on when it's desirable. With that in mind I think whether or not it should be a core feature comes down to the demand and weather or not someone has time to code it =)

Re: [mezzanine-users] Re: Email confirmation for admin-created users?

2014-07-16 Thread Stephen McDonald
For the record, it's mostly already implemented when you combine both the approval/verification settings: https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/accounts/admin.py#L22-L45 On Thu, Jul 17, 2014 at 11:03 AM, Josh Cartmell joshcar...@gmail.com wrote: Definitely ask away if