Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-19 Thread Kundan Kumar
The app which i customized is Django voice. http://code.google.com/p/django-voice/ is quite easy to plug. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from th

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-15 Thread AJ
Thanks a lot for that suggestion. On Apr 15, 2011 8:52 AM, "Daniel Hilton" wrote: > On 15 April 2011 13:01, roberto wrote: >> You can also have a look at askbot. >> It seems to have more functionalities. >> Good luck ! >> >> www.askbot.org >> >> On Apr 14, 6:43 pm, AJ wrote: >>> Why has this be

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-15 Thread Daniel Hilton
On 15 April 2011 13:01, roberto wrote: > You can also have a look at askbot. > It seems to have more functionalities. > Good luck ! > > www.askbot.org > > On Apr 14, 6:43 pm, AJ wrote: >> Why has this become a case for me? I just wanted to know about a particular >> solution, that whether it exis

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-15 Thread roberto
You can also have a look at askbot. It seems to have more functionalities. Good luck ! www.askbot.org On Apr 14, 6:43 pm, AJ wrote: > Why has this become a case for me? I just wanted to know about a particular > solution, that whether it exists or not. I did try Google and other forums. > > I ne

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread AJ
Why has this become a case for me? I just wanted to know about a particular solution, that whether it exists or not. I did try Google and other forums. I never complained about 'a couple of days', someone else did. I apologize for asking a 'dumb' question by your standards. Please accept my since

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mike Ramirez
On Thursday, April 14, 2011 12:45:33 pm you wrote: > Wait aren't we programmers or not? This should be something you can do in a > couple days... > > Mike My mistake here is nameing an actual time frame that was taken litteral by a few folks. I forget how unimaginitve a lot you are. Sorry. T

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mike Ramirez
On Thursday, April 14, 2011 01:27:51 pm Javier Guerra Giraldez wrote: > On Thu, Apr 14, 2011 at 3:20 PM, Mike Ramirez wrote: > > A good programmer with experience, should have a few libraries around > > from other projects that add the polish and need minor tweaking. > > to get the basic post+com

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Javier Guerra Giraldez
On Thu, Apr 14, 2011 at 3:20 PM, Mike Ramirez wrote: > A good programmer with experience, should have a few libraries around from > other projects that add the polish and need minor tweaking. to get the basic post+comments+voting yes, a few days seems enough (if you already have Django, markdown

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mike Ramirez
On Thursday, April 14, 2011 12:57:17 pm Daniel Roseman wrote: > On Thursday, April 14, 2011 8:45:33 PM UTC+1, Mike Ramirez wrote: > > Wait aren't we programmers or not? This should be something you can do in > > a > > > > couple days... > > > > Mike > > You should read Stackoverflow creator Jeff

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Daniel Roseman
On Thursday, April 14, 2011 8:45:33 PM UTC+1, Mike Ramirez wrote: > > Wait aren't we programmers or not? This should be something you can do in a > > couple days... > > Mike > You should read Stackoverflow creator Jeff Atwood's post on exactly that: http://www.codinghorror.com/blog/2009/07/code-i

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread AJ
>>Wait aren't we programmers or not? This should be something you can do >>in a couple days... Indeed. Just wanted opinions. :) Consider this resolved now. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mike Ramirez
On Thursday, April 14, 2011 12:37:33 pm Mengu wrote: > doesn't pinax provide something like this? > > On 14 Nisan, 21:44, AJ wrote: > > >>Here's a fun thought, why can't a custom blog like enty and the > > >>comments framework be utilized to do this? > > > > Precisely but I was hoping I'd get s

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mengu
doesn't pinax provide something like this? On 14 Nisan, 21:44, AJ wrote: > >>Here's a fun thought, why can't a custom blog  like enty and the comments > >>framework be utilized to do this? > > Precisely but I was hoping I'd get something with modifications. > > Here is what I require: > > * Posts

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread AJ
>>Here's a fun thought, why can't a custom blog like enty and the comments >>framework be utilized to do this? Precisely but I was hoping I'd get something with modifications. Here is what I require: * Posts in the system: bunch of text. --- (This i already have.) * Each post gives user to be a

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Mike Ramirez
On Tuesday, April 12, 2011 02:17:22 pm AJ wrote: > Isn't there any app with just the commenting part? I mean the answer and > comments on those answers part only. Here's a fun thought, why can't a custom blog like enty and the comments framework be utilized to do this? Mike -- Real computer s

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Raúl Cumplido
Hi, Why is better? Have you got a good comparison or references to blogs with comparisons? This should help people to grow (in terms of expertise, knowledge...). I have no idea on which one is better and have no idea about the differences :) Thanks and sorry, I just want to know why you are sayi

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-14 Thread Venkatraman S
On Tue, Apr 12, 2011 at 11:12 AM, Anoop Thomas Mathew wrote: > http://osqa.net/ > askbot is a better implementation of osqa. http://blizzardzblogs.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-13 Thread AJ
I am kind of aware of that. I just want to add a Stackoverflow kind of a commenting system (with comments on answers and voting on answers) to my already present application. Does anyone know if Django's own comment app can be enhanced to be that or has anyone already done that? On Wed, Apr 13,

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-13 Thread Martin Pajuste
Are You aware of Django’s comments framework? http://docs.djangoproject.com/en/dev/ref/contrib/comments/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-12 Thread AJ
Isn't there any app with just the commenting part? I mean the answer and comments on those answers part only. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe fro

Re: Stackoverflow kind of Answer/commenting app in Django

2011-04-11 Thread Anoop Thomas Mathew
http://osqa.net/ regards, atm ___ Life is short, Live it hard. On 12 April 2011 07:04, AJ wrote: > I was wondering if there is a pluggable application in Django that I > can use which is a replica of Stackoverflow kind Answer and > commenting. > > Each post on my web app will have answers an

Stackoverflow kind of Answer/commenting app in Django

2011-04-11 Thread AJ
I was wondering if there is a pluggable application in Django that I can use which is a replica of Stackoverflow kind Answer and commenting. Each post on my web app will have answers and all answers can have comments discussing that answer, just like SO. Does anyone know such an app or has anyone