[mezzanine-users] Re: Tinymce Popup Bad Request

2014-06-12 Thread meenakshi . madan
This probably wont work for you guys, but the reason why I got that 400 bad request error with tinymce was because in my nginx config I set proxy_set_header as $host:$server_port. This gave a 400 bad request on port 80 but worked fine on port 81. I just figured out that by removing $server_por

[mezzanine-users] Re: Replace mezzanine search

2014-06-12 Thread Matt Mansour
Hi Craig - I am almost done with something similar. I integrated Haystack and Elastic Search. I have a few minor tweaks to make but I mostly have it working following the docs below. I'll probably do a write up to consolidate these docs. http://nanvel.name/weblog/django-haystack-elasticsearc

[mezzanine-users] Replace mezzanine search

2014-06-12 Thread Craig
Want to replace /search view with my own custom view. Anyone know how to do this? -- 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...

[mezzanine-users] Replace search view

2014-06-12 Thread Craig
How can I replace mezzanine /search view with my own? -- 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 o

[mezzanine-users] Re: Fabric file and related resources for deploying Mezzanine to Webfaction

2014-06-12 Thread Eduardo Rivas
Well, a Webfaction account is essentially a VPS with limited permissions and a bunch of stuff preinstalled, so what you can do with it depends on how well you use your RAM, bandwidth and disk space. A good thing about Webfaction is that the database server (Postrges or MySQL) and Nginx server d

Re: [mezzanine-users] Wagtail vs Django CMS vs Mezzanine - Pros and cons? Which one should I contribute to?

2014-06-12 Thread Ken Bolton
One stop shop: https://www.djangopackages.com/grids/g/cms/ I see that Wagtail is not listed in the above grid. It has not been around for very long. My understanding from a quick look at the source is that Wagtail operates under more or less the same idiom as Mezzanine. That is, both are simply co

Re: [mezzanine-users] Setting form field based on another object's value

2014-06-12 Thread Preethi
Hi Josh, Thanks a lot for the reply. Yes that would ensure that the parent's category_type is copied to the child. But what if I want to set the category_type in the select field when the user is still creating the category? Any pointers on how to do that would be helpful. On Thursday, June 12

[mezzanine-users] Wagtail vs Django CMS vs Mezzanine - Pros and cons? Which one should I contribute to?

2014-06-12 Thread Ray Alez
Hi, guys! I am new to the world of Open Source, and I want to start contributing to some CMS that is based on Django. Can you give me some idea about pros and cons of: - Wagtail - Django CMS - Mezzanine So I could decide which one to pick? My goal is simply to gain experience at Djang

Re: [mezzanine-users] Struggling with multi-level foreign keys ...

2014-06-12 Thread Ken Bolton
Hi James, What you seek are inline model admins: https://docs.djangoproject.com/en/dev/ref/contrib/admin/#inlinemodeladmin-objects . ken On Thu, Jun 12, 2014 at 11:59 AM, James Larkin wrote: > Hi Guys, > > Back again with another problem and if someone could point me in the right > direction

[mezzanine-users] Struggling with multi-level foreign keys ...

2014-06-12 Thread James Larkin
Hi Guys, Back again with another problem and if someone could point me in the right direction it'd be much appreciated. I followed the example http://mezzanine.jupo.org/docs/content-architecture.html#creating-custom-content-types. for Creating an Author and Book relationship ... however lets

Re: [mezzanine-users] Setting form field based on another object's value

2014-06-12 Thread Josh Cartmell
Hey Preethi, why not just override the save method of Category. The following is pseudo code so it'll require some cleanup: class Category(Page): """ A category for grouping activities """ category_type = models.CharField(max_length=15, choices=settings.CATEGORY_TYPES, default='M'