Re: new to django

2012-08-21 Thread Anoop Thomas Mathew
What is the error you are getting? atm ___ Life is short, Live it hard. On 21 August 2012 12:57, maha wrote: > Hi,I am new to django. Right now I am going through the tutorial. I am > stuck on the creating poll application. > > *Here are the settings.py ,* > >

Re: Demise of Mr. Kenneth Gonsalves

2012-08-03 Thread Anoop Thomas Mathew
Chronic Asthma. He was hospitalized yesterday, and passed away today. On 3 August 2012 20:45, Marcin Tustin <marcin.tus...@gmail.com> wrote: > What happened to him? He was posting on this list in the last week? > > On Fri, Aug 3, 2012 at 11:12 AM, Anoop Thomas Mathew <atm.

Demise of Mr. Kenneth Gonsalves

2012-08-03 Thread Anoop Thomas Mathew
the PyCon India, done a lot of workshops on Python and was an active member in the Django user group. Anoop Thomas Mathew -- 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@google

Re: Template Loader Error: (It's been really frustrating till now..!)

2012-07-18 Thread Anoop Thomas Mathew
On 19 July 2012 04:46, Mark Anderko wrote: > I am having similar problems. did you manage to get this fixed? > > > On Wednesday, January 25, 2012 6:51:34 AM UTC-8, leaks wrote: >> >> Hey all... i get this error while i have a template directory and my >> about.html file

Re: Graphs in django

2012-06-11 Thread Anoop Thomas Mathew
or any other serialized format, and plot it using a javascript plotting library like flot or flotr2 <http://humblesoftware.com/flotr2/>. This option would make it more maintainable, look nicer and interactive. Hope I am clear to you. Thanks and Regards, Anoop Thomas Mathew atm ___ Life is

Re: twitter timeline

2012-03-22 Thread Anoop Thomas Mathew
Hi, https://twitter.com/status/user_timeline/.json This would get you latest public tweets as json. This was good enough for my application. See if that helps. If you need twitter authentication and more features, you can use tweepy. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live

Re: Error on Tutorial Part 3 - https://docs.djangoproject.com/en/1.3/intro/tutorial03/

2012-02-29 Thread Anoop Thomas Mathew
You have to give template directories, not template names in the settings.py. Thanks, Anoop atm ___ Life is short, Live it hard. On 1 March 2012 01:16, Django_for_SB wrote: > Hello All, > > I'm going through the tutorial on djangoproject.com, and can't seem to >

Re: Audio Captcha for django

2012-02-27 Thread Anoop Thomas Mathew
Why can't you use this: http://www.google.com/recaptcha Thanks, Anoop atm ___ Life is short, Live it hard. On 27 February 2012 19:59, Karthik Abinav wrote: > Hi, > > Does django have an implementation of audio captch for registration? If > so please link me to

Re: complete for dropdown box in admin

2012-02-13 Thread Anoop Thomas Mathew
Hi, http://harvesthq.github.com/chosen/ Hope this helps. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 13 February 2012 12:17, kenneth gonsalves <law...@thenilgiris.com> wrote: > hi, > > I need a widget in admin to autoselect (I do not know wh

Re: Django Friends

2012-02-05 Thread Anoop Thomas Mathew
directly use it as an app adding it to your settings.py Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 5 February 2012 15:18, coded kid <duffleboi...@gmail.com> wrote: > Thanks bro. I'm not using pinax, so how can I go about it? -- You received this message be

Re: Django Friends

2012-02-05 Thread Anoop Thomas Mathew
Hi, Check pinax project. There are some apps in it, http://pinaxproject.com/ecosystem/ , especially, django-friends app, which should be helpful for you. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 5 February 2012 14:12, coded kid <duffleboi...@gmail.com>

Re: south create_table doesn't work

2012-02-03 Thread Anoop Thomas Mathew
Hi, May be you are asking at the wrong place. Please check it in south mailing list history, you should be able to find an answer. http://groups.google.com/group/south-users/search?group=south-users=create_table_g=Search+this+group Thanks, Anoop atm ___ Life is short, Live it hard. On 3

Re: Determine gender from first name

2012-01-25 Thread Anoop Thomas Mathew
Hi, If you are looking for a fuzzy solution, you can find it here https://github.com/sholiday/genderPredictor This should suit your purpose. It uses nltk package for predicting, but as Kenneth said, it won't be 100% perfect. You can expect 80-90% success. Hope this helps. Thanks, Anoop atm ___

Re: Facebook like activity feed commenting using django comments framework

2012-01-07 Thread Anoop Thomas Mathew
Hi, Try this https://github.com/agiliq/django-pubsub/ You can get a live demo here http://chat.agiliq.com/pubsub/. See if this suits your purpose. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 7 January 2012 19:34, Swaroop Shankar V <swaroo...@gmail.com> wrote: &

Re: new tables missing from admin page

2011-12-20 Thread Anoop Thomas Mathew
Hi, You should register the new models in the admin.py. https://docs.djangoproject.com/en/dev/ref/contrib/admin/#modeladmin-objects Above link should help. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 20 December 2011 23:32, Bill Beal <b.b...@eximflow.com> wrote:

Re: Which IDE should I use for Django?

2011-12-19 Thread Anoop Thomas Mathew
Hi, PyCharm is awesome!!! But is paid ($70) and not OpenSource. Best among the free is Aptana Studio. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 19 December 2011 16:41, Thomas Weholt <thomas.weh...@gmail.com> wrote: > Pycharm +1 > > > > On Mo

Re: [ date and null value ]

2011-11-26 Thread Anoop Thomas Mathew
Hi, Try this *fechaProyecto = models.DateField(verbose_name=**'Ingresó a la subdirección de Proyecto', blank=True, null=True)* Thanks, Anoop atm ___ Life is short, Live it hard. On 27 November 2011 05:22, Lord Goosfancito wrote: > Hello. > > I have problem when i

Re: IOError at / [Errno 13] Permission denied

2011-11-22 Thread Anoop Thomas Mathew
Hi, What about the permissions of cache folder? Thanks, Anoop atm ___ Life is short, Live it hard. On 22 November 2011 16:05, marjenni wrote: > Hi all, > I have been writing a django app, and testing locally using > runserver. > > Now I am in the process of

Re: django tutorial versions

2011-11-21 Thread Anoop Thomas Mathew
Hi, The tutorial you where following was dev version and the version you have installed is 1.3.1 https://docs.djangoproject.com/en/1.3/intro/tutorial01/ This would be helpful I guess. Thanks, Anoop atm ___ Life is short, Live it hard. On 21 November 2011 23:28, Jesse Aldridge

Re: syncdb not finding and syncing my MySQL database

2011-11-21 Thread Anoop Thomas Mathew
Hi, "I am getting an error" This is not a proper way to ask question. Please post your trace-back somewhere and send the link to the group or at least specify what error is it, so that, we could help you. Thanks, Anoop atm ___ Life is short, Live it hard. On 21 November 2011 23:31,

Re: Suse Linux installation

2011-10-14 Thread Anoop Thomas Mathew
Check the Python Version. Thanks, Anoop atm ___ Life is short, Live it hard. On 14 October 2011 22:24, Andrew Johnson wrote: > I download and untar Django-1.3.1 and try to install and get: > > django/Django-1.3.1> sudo python setup.py install > Traceback (most

Re: Media wiki

2011-09-28 Thread Anoop Thomas Mathew
Hi, If you want a basic wiki, you can try http://uswaretech.com/demo/djikiki/ Its not maintained well now, still, this might be enough to start with. Thanks, Anoop atm ___ Life is short, Live it hard. On 28 September 2011 14:20, Kirupashankar Sampath wrote: > I am

Re: Django tutorials

2011-09-22 Thread Anoop Thomas Mathew
You can try peepcode.com and thinkvitamin.com . They have good quality video tutorials. Not just django, many handy tools needed while developing for web. One thing, they are paid. Thanks, Anoop Thomas Mathew On 22 Sep 2011 16:49, "ANKUR AGGARWAL" <coolankur2...@gmail.com> wro

Re: Most stable Linux distribution for Django - Python development

2011-08-01 Thread Anoop Thomas Mathew
ing breaks in a new > exciting way? > > Obviously you can develop on any flavour of linux shouldnt matter. > Managing a production server is different ballgame. > > > good luck and i hope this advice helps > > > > On Mon, Aug 1, 2011 at 6:27 PM, Anoop Thomas Mathew <at

RE: Most stable Linux distribution for Django - Python development

2011-08-01 Thread Anoop Thomas Mathew
like some recommendation for a linux distro which is much stable, but still can support all relevant packages. Top recommendations I found around was Debian and OpenSuse. Please revert with your suggestions. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. -- You received

Re: static urls

2011-07-19 Thread Anoop Thomas Mathew
Hi, Depends on how you configured STATIC_URL in settings. If / is there in the STATIC_URL, then no need to add it. Add it with STATIC_URLS, that is the standard practice. regards, Anoop atm ___ Life is short, Live it hard. On 19 July 2011 11:31, NISA BALAKRISHNAN

Re: "attempt to write a readonly database" with write permissions in database file and folder

2011-06-29 Thread Anoop Thomas Mathew
Hi, Seems selinux permissions are causing trouble. Try shutting it off and try again. Regards, Anoop On 29 Jun 2011 21:03, "hectoraka" wrote: > Hello, > > I am getting the "attempt to write a readonly database" when trying to > access the admin site. I have read that this is

Re: E-store

2011-06-28 Thread Anoop Thomas Mathew
You can find many django based store modules. The one i liked using was satchmo. Check out http://www.satchmoproject.com/ and more help about it here. https://bitbucket.org/chris1610/satchmo/wiki/Home regards, Anoop atm ___ Life is short, Live it hard. On 28

Re: Django caching not working with SSL(https)

2011-06-22 Thread Anoop Thomas Mathew
short, Live it hard. On 21 June 2011 15:55, Anoop Thomas Mathew <atm...@gmail.com> wrote: > Hi all, > > A site which was caching through django caching backend db cache) it was > working well. When we changed it to https instead of http, the system > suddenly stopped cach

RE: Django caching not working with SSL(https)

2011-06-21 Thread Anoop Thomas Mathew
Hi all, A site which was caching through django caching backend db cache) it was working well. When we changed it to https instead of http, the system suddenly stopped caching. Is there any thought's regarding this? Anyone got the same issue? regards, Anoop atm ___ Life is short, Live it hard.

Re: My django admin page breaks up . Any reason why ?

2011-06-15 Thread Anoop Thomas Mathew
Hi Satyajit, On 15 June 2011 16:19, Satyajit Sarangi wrote: > My django admin page some times breaks up . As in , initially it will > show all the required tables in a nice columns , but suddenly the > whole design breaks and the data shows up in random ways . > 1.

Re: VERY cheap django hosting?

2011-06-08 Thread Anoop Thomas Mathew
Hi all, It would be a good idea to check out hostrail.com which provides really cheap vps' . I've been using it for last 6+ months and seems to be pretty good @ 1.4$/month for 256 MB vps. You can easily fetch some good promos to get cheap rates from them. Regards, Anoop Thomas Mathew On 8 Jun

Re: Best CSS/JS compressor?

2011-06-02 Thread Anoop Thomas Mathew
On 3 June 2011 00:01, Mike wrote: > What is everyone using to combine CSS/JS? > > Has anyone tried mod_pagespeed? Perhaps Django-Compressor? > Hi, +1 for django-compressor. Its very easy to use, and it servers its purpose well... There is a django-compress , but I

Re: admin site search field

2011-05-30 Thread Anoop Thomas Mathew
Hi, Did you notice you are missing closing quote ' in the search fields??? Regards, Anoop On 31 May 2011 04:54, "podio" wrote: > Hi, I'm new and I'm trying to make an app that have a field, pointing > to a record of the same object class. How can a make django has a

Re: Regarding Django Applicaiton

2011-05-28 Thread Anoop Thomas Mathew
Hi Amit, Welcome to django. 1.By th way, this is not the proper way to behave in a mailing list. First learn that. 2. Run a basic app and try the tutorial at docs.djangoproject.com, only then your'll understand what to ask. 3. Be more specific while asking questions, maximum descriptive as

Re: Loading project to alwaysdata

2011-05-07 Thread Anoop Thomas Mathew
Can you elaborate a little. is it that you want to set up a django project or just to display an html from web space?? if your aim is 1, you can find help here.. docs.djangoproject.com/en/dev/howto/deployment/ if your aim is 2, you'd better go to some basic web hosting forums. regards, On

Re: Django Bigener

2011-05-07 Thread Anoop Thomas Mathew
Hi Rahim, try docs.djangoproject.com and do the tutorial yourself. This would help you very much. regards, atm On 08/05/2011, hersh wrote: > Hi to all, > > I am new. I want to apply Django to develop an E-commerce project. I > am looking for a good reference to start.

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

Re: Django News Site Resources

2011-04-08 Thread Anoop Thomas Mathew
Search in the groups history first. You'll get a lot of related topics. regards, atm ___ Life is short, Live it hard. On 8 April 2011 17:51, Ed Sutherland wrote: > Can anyone point me to some resources for building a Django-based news > site? > > -- > You received this

Re: Caught NoReverseMatch while rendering: Reverse for 'homepage_about' with arguments '()' and keyword arguments '{}' not found.

2011-04-06 Thread Anoop Thomas Mathew
Hi goutam, 1. You should not attach files in here. Bad practice. Just post it somewhere like dpaste.de or pastebin.ca Now, You just try renaming your homepage_about to about. _ are usually taken instead of . .And change correspondingly everywhere. It should work. regards, atm ___ Life is

Re: Caught NoReverseMatch while rendering: Reverse for 'homepage_about' with arguments '()' and keyword arguments '{}' not found.

2011-04-06 Thread Anoop Thomas Mathew
Hi Goutam, Post your urls.py somewhere. It seems you have not added anything in urls.py to handle homepage_about. regards, atm ___ Life is short, Live it hard. On 6 April 2011 18:26, GOUTAM KUMAR RANA wrote: > Environment: > > > Request Method: GET > Request URL:

Re: Multiple modelforms in single POST

2011-03-14 Thread Anoop Thomas Mathew
Thanks buddy. Sure!! I'll try next time. regards, atm ___ Life is short, Live it hard. On 14 March 2011 14:46, bruno desthuilliers <bruno.desthuilli...@gmail.com>wrote: > On 14 mar, 08:16, Anoop Thomas Mathew <atm...@gmail.com> wrote: > > > > @bruno: If

Re: Multiple modelforms in single POST

2011-03-14 Thread Anoop Thomas Mathew
e, you want to associate with the Profile > model. But why did you have to inherit the Meta from Profileform with this > line "Class Meta(Profileform)"? Do you want to override it? > > > > On Fri, Mar 11, 2011 at 6:16 PM, bruno desthuilliers < > bruno.desthu

RE: Multiple modelforms in single POST

2011-03-10 Thread Anoop Thomas Mathew
Hi all, I have a Profile model, which has a ForiegnKey to User model. I want to edit both of it at same form. this is what I tried, http://dpaste.de/ODOJ/ Still, no success. Please help. regards, atm -- You received this message because you are subscribed to the Google Groups "Django users"

Re: PLEASE HELP ME IN ADDING A CATEGORY IN THE ADMIN SITE

2011-03-08 Thread Anoop Thomas Mathew
Pankaj, If there is no relevant data in the db, remove it, create a new db and try syncdb. That'll work. regards, atm ___ Life is short, Live it hard. On 8 March 2011 18:00, Kenneth Gonsalves wrote: > On Mon, 2011-03-07 at 21:34 -0800, pankaj sharma wrote: > > and

Re: Collaborative text editor with Django

2011-02-28 Thread Anoop Thomas Mathew
@piotr zalewa: jsFiddle is of course a nice Is jsFiddle open source?? I couldn't find its source anywhere. http://www.facebook.com/topic.php?uid=183790024998=14241 So, friends, This etherpad is in comet (java) and can anyone tell how to integrate etherpad, keeping it as it is, with other django

Re: django and mod_wsgi

2011-02-28 Thread Anoop Thomas Mathew
Try adding, *import os* *import sys* * * *path = 'C:\\Programme\\Apache Software Foundation\\Time2\\Time2\\'* *path1 = 'C:\\Programme\\Apache Software Foundation\\Time2\\'* * * *if path not in sys.path:* *sys.path.append(path)* *sys.path.append(path1) * * *

Re: Collaborative text editor with Django

2011-02-23 Thread Anoop Thomas Mathew
fym...@gmail.com> wrote: > On Wednesday, February 23, 2011 12:32:55 am Anoop Thomas Mathew wrote: > > > Hi, > > > > > > Is there any collaborative text editing application available for django. > > > Has anybody tried with etherpad(www.etherpad.org

RE: Collaborative text editor with Django

2011-02-23 Thread Anoop Thomas Mathew
Hi, Is there any collaborative text editing application available for django. Has anybody tried with etherpad(www.etherpad.org) along with django? Please reply, Thanks in advance, Anoop atm ___ Life is short, Live it hard. -- You received this message because you are subscribed to the Google