[mezzanine-users] Wiki for Mezzaine

2015-12-15 Thread Sathishkumar Duraisamy
Hi All, The https://github.com/dfalk/mezzanine-wiki is not active. What is good wiki for mezzaine? -- Regards, Sathishkumar D -- 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

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Joel Gwynn
I have looked at that, but it seems that to handle form input and url parameters I would still have to create a page_processor method, no? On Tue, Dec 15, 2015 at 11:11 AM, Ken Bolton wrote: > Hi Joel, > > The calendar metaphor does not fit well into the Page model that

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Eduardo Rivas
This section of the docs expands a little on my previous message: http://mezzanine.jupo.org/docs/content-architecture.html#integrating-third-party-apps-with-pages -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Eduardo Rivas
I think the Blog app would also be a good place to look. Basically, what you want to do is outside the scope of Pages and page processors. You'd be better off implementing the calendar as a regular Django app (you can still use Mezzanine's Displayable class, though) with it's own url

Re: [mezzanine-users] Re: Python 3 and fabric

2015-12-15 Thread Sathishkumar Duraisamy
Will https://pythonhosted.org/six/ helps to run fabric with python 3? -- 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] Re: URL Parameters for a Page

2015-12-15 Thread Joel Gwynn
Thanks for the purple link, Mr. Rexford. I have spent quite some time on that page, and it seems like my rule should work, but alas, here we are. On Tuesday, December 15, 2015 at 2:22:53 AM UTC-5, Nkansah Rexford wrote: > > Learn more about the URL dispatcher >

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Ken Bolton
Hi Joel, What does your page processor code look like? My instinct is that a calendar is not a page and should probably not use the page view. Please accept every attempt at communication on this forum in good faith and, in the future, hold the sarcasm. ken On Tue, Dec 15, 2015 at 8:43 AM,

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Joel Gwynn
Sorry about that. The calendar is a page that I created through the admin interface, and the page processor looks like this: @processor_for("calendar") def location(request, page): On Tuesday, December 15, 2015 at 9:53:24 AM UTC-5, Kenneth Bolton wrote: > > Hi Joel, > > What does your page

Re: [mezzanine-users] Re: URL Parameters for a Page

2015-12-15 Thread Joel Gwynn
Upon closer inspection, the 404 is: Request Method:GETRequest URL:http://localhost:8000/calendar/MARaised by: mezzanine.pages.views.page So it seems that maybe the url rule is being called, but views.py isn't able to find the page. On Tuesday, December 15, 2015 at 10:12:22 AM UTC-5, Joel Gwynn