Re: Need Django Expert for short project (moving a website)

2013-09-06 Thread Jacob Kaplan-Moss
Hey Matt - Unfortunately, we can't help you. You've reached the django-developers mailing list, a group devoted to talking about the development *of* Django, not *using it*. I can understand the confusion, and I'm sorry to have to send you elsewhere, but the right place for this is the django-use

Re: [contrib][admin]: Grouping actions

2013-09-06 Thread German Larrain
Hi Stan. I'm currently looking for "admin-related" features that seemed to be kind of accepted by the core developers. What's the status of your proposal for grouping actions? Best regards, Germán Larraín On Thursday, March 28, 2013 8:51:10 AM UTC-5, Stan wrote: > > > > On Thursday, March 28,

Need Django Expert for short project (moving a website)

2013-09-06 Thread mattrsells
I run a small company and I need to move a website from server a to server b. So far, the people I have employed can not get the site running because they do not know how to install and configure the Django framework onto server b. I want to hire someone to get this done for me. I would i

Re: Thinking about NoSQL support

2013-09-06 Thread Alex Burgel
On Thursday, September 5, 2013 4:12:26 PM UTC-4, Benjamin Zuill-Smith wrote: > I've recently discovered Django and would love this framework in tandem > with a NoSql solution like MongoDB. I know there is project called > mongodb-engine but the solutions it brings feel hackish to me because it i

Converting (session, CSRF-protection, language) cookie settings to dicts

2013-09-06 Thread Ramiro Morales
I've opened ticked [1]21051 and PR [2]1554 This would help with ticket [2]#15381 that asks for the ability to tweak domain and expires of the language cookie By allowing to provide that kind of configurability without introducing more top-level settings and some other similar efforts. Alternative

Re: Support for WSGI applications within Django (Ticket #12091)

2013-09-06 Thread Gustavo Narea
Hello, Jacob et al. I was wondering whether there's an update on this. I'm still interested to learn about the concerns about the implementation, so that I can know what to focus on. And also whether it's even worth me doing a new implementation. Cheers, - Gustavo. On Thursday, April 18, 2

Re: Support POST of application/json content type

2013-09-06 Thread Tom Christie
In REST framework, we expose the accepted renderer as an `request.accepted_renderer` property. This allows you to switch based on the media type when needed by either doing something like: if request.accepted_renderer.format == 'yaml': # do something specific or like this: if r