[mezzanine-users] Mezzanine reset password

2014-04-16 Thread Radomir Wojcik
I think the reset password function is broken in mezzanine, probably because django now uses 64 bit, not 36 bit uidb: def password_reset_verify(request, uidb36=None, token=None): user = authenticate(uidb36=uidb36, token=token, is_active=True) if user is not None:

Re: [mezzanine-users] Mezzanine reset password

2014-04-16 Thread Radomir Wojcik
Just tested looks good! Thanks! On Wednesday, 16 April 2014 16:27:26 UTC-4, Stephen McDonald wrote: Please check the latest unreleased version on github, I believe this is resolved. On Thu, Apr 17, 2014 at 4:40 AM, Radomir Wojcik radz...@gmail.comjavascript: wrote: I think the reset

Re: [mezzanine-users] thumbnail crop centering

2014-03-19 Thread Radomir Wojcik
The default thumbnail would be fine for 95% of all cases. There should be an option to re-do the thumbnail on a single image basis that lets you select the cropping. It also needs a bit of fixing with the portrait vs landscape photos. The other thing that would be nice is to see the a

Re: [mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
Does the cached query make sense? It won't update even if changed in db. I'm trying to generate a new app and see if I can get it working -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails

Re: [mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
OK so I connected to the database and cleared the mixed case queries and updated it to the all lower case. Works in dev but in production I get an error. Not very descriptive and don't see any twitter docs that can help: Twitter query error [Search: from:the_gelatospot]: Error retrieving:

[mezzanine-users] Re: mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
I give up, the twitter widget though from twitter is neater for me anyways, and no need to run any jobs, plus it has pics -- 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

[mezzanine-users] Mezzanine Twitter Feed Options

2014-03-11 Thread Radomir Wojcik
Hey All, is there a way to display images in the twitter feed, the ones that appear in the tweet itself? -- 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

Re: [mezzanine-users] How to override tinyMCE.init() ? #noobq

2014-03-09 Thread Radomir Wojcik
This seems to break the file browser pop-up, so you should copy the default js file and then edit it as it contains the file browser js apart from tinymce init. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this

Re: [mezzanine-users] Re: Mezzanine Multiple Content Blocks per Page

2014-02-28 Thread Radomir Wojcik
Its not really blocks im after, just dividing content up into segments like in this video: http://www.youtube.com/watch?v=1VtCSh_Z68c How did this guy do it? -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and

[mezzanine-users] Re: Mezzanine Multiple Content Blocks per Page

2014-02-27 Thread Radomir Wojcik
Ah so its an add-on or purely custom. I thought this was a feature that is already built in to Mez. If it isn't, it should. So when I am editing pages I can edit a smaller chunk rather than the whole page. Plus the vanilla editor makes a mess of the html so you easily get lost in the markup.

[mezzanine-users] HOST_THEMES working sample

2014-02-27 Thread Radomir Wojcik
So after working with the django sites framework, I see how easy it is to have multiple sites running Mezzanine in one instance. It works great if you have a multiple language site and don't want to use the internationalization built into Django and instead create a separate site where the

Re: [mezzanine-users] HOST_THEMES working sample

2014-02-27 Thread Radomir Wojcik
I was already past that point, the docs help, I relied on peoples examples from the mailing list. If I post a non-working example would someone be able to fork it, fix it , tell me why it wasn't working? The doc here also doesn't talk about base.html , Both of my themes have different

[mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
Themes tree of mez project: ├── lzone_theme_app │ ├── __init__.py │ ├── __init__.pyc │ ├── static │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootswatch.less │ │ │ ├── custom.less │ │ │ └── variables.less │ │ ├── img │ │ │ ├── favicon.ico │

Re: [mezzanine-users] Re: Templates for multi-tenancy?

2014-01-22 Thread Radomir Wojcik
Stephen says it works for him, I wish there was a working example project we can get our hands on! -- 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

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
to be importable the name has to be valid i.e. no periods and the __init__.py file is required. Is there anything else I should check? -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
I am hitting with both 127.0.0.1 and localhost, the page content changes correctly but not the theme. I will try the debug instructions next. I think HOST_THEMES should do what you want but since I haven't ever got it working I will stay out of the discussion until I fix it. I can try

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
Is there any way someone could create a quick example project with this working using localhost and 127.0.0.1 ? As simple as just changing the tag line in base.html for each theme would suffice. -- You received this message because you are subscribed to the Google Groups Mezzanine Users

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
I'm not using index.html though, I can get rid of that file I just want to get base.html going, that one doesn't extend anything. Couldn't find the template loader, is this it: https://github.com/pconerly/pc/blob/master/mezzanine/template/loader.py ? -- You received this message because

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
The TemplateForHostMiddleware is there in my settings but when debugging I added some print statements to see if it is hit and it doesn't look like it is using my configuration.. I can create a compact example on bitbucket and share it, hopefully you guys can help me fix it and it can be used

Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
Thanks Josh! It looks interesting, I will try it out tomorrow :) -- 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