Re: How to fix a column typo in django

2011-04-18 Thread ravi krishna
table_name MODIFY column_name column_type; Thanks & Regards, Ravi Krishna My profiles: [image: Facebook]<http://www.facebook.com/profile.php?id=578709891> [image: LinkedIn] <http://www.linkedin.com/profile/edit?id=65129620=hb_pro> [image: Twitter] <http://twitter.com/

Could not find the GEOS library

2011-02-28 Thread ravi krishna
is due to some wrong geoDjango installation. But i dont need geoDjango and i am wondering how its throwing this error. Before doing this, my app was working fine. Somebody please help me to solve this problem. Thanks & Regards, Ravi Krishna My profiles: [image: Facebook]<http://www.facebook

Re: ViewDoesNotExist Error

2011-02-22 Thread ravi krishna
Hi all, I got it solved. def employeeProfile(request): *emp_profile* = EmployeeDetails.objects.all() return render_to_response('employeeProfile.html',{'emp_profile':emp_profile}) Thanks & Regards, Ravi Krishna My profiles: [image: Facebook]<http://www.facebook.com/profile.php?id=57

ViewDoesNotExist Error

2011-02-22 Thread ravi krishna
project = models.CharField(max_length=200) dateOfJoin=models.DateField() Thanks & Regards, Ravi Krishna My profiles: [image: Facebook]<http://www.facebook.com/profile.php?id=578709891> [image: LinkedIn] <http://www.linkedin.com/profile/edit?id=65129620=hb_pro> [image: Tw

Integrating Django with Amazon's Database

2011-02-20 Thread ravi krishna
Hi, Can somebody help me to integrate Django with Amazon's Database (SimpleDB). Can we use SimpleDB like sqlite or mysql with Django? What are the process involved in doing it ? It would be great help if someone could explain me or send me some tutorial for doing it. Thanks & Regards,

Re: import Error

2010-09-13 Thread ravi krishna
perly added the app to your PYTHONPATH start up > python then type `import dojango` > > n > > On Thu, Sep 9, 2010 at 9:37 PM, ravi krishna <ravi.9...@gmail.com> wrote: > >> Hi, >> For installing i followed their instructions >> SetupĀ¶ <http://code.google.co

Any Django/Python Chat application ??

2010-09-10 Thread ravi krishna
Hi, Can somebody tell me some django Chat application which can be used to embed inside a Django web application. Both private and group chat should be possible. Can u suggest some ?? -- Regards, Rav! -- You received this message because you are subscribed to the Google Groups "Django users"

Re: import Error

2010-09-09 Thread ravi krishna
! On Thu, Sep 9, 2010 at 1:12 PM, Jitesh <eximius...@gmail.com> wrote: > Have you installed the django-chat-0.2 using setup.py, (make sure it > is there in python site-packages and also check its application name > there) > and have you specified python's bin path in enviornment

import Error

2010-09-08 Thread ravi krishna
Hi, I am newbie with python and django. I am trying out various examples in order to learn it. I wanted to try using django- chat application. downloaded the code from site and installed dojango as instructed. But when i start the server it gives me an error "ImportError: No module named

how to call an external Javascript using static serve() in Django?

2010-06-08 Thread ravi krishna
Hi, How can i call an external javascript file in Django. I got a value printed in my html file from View using templates. Now I want to try out printing a data in View in html using Javascript ( eg: using onload() ). But the path i i gave in html file is not passing the values to the js file. *

Passing JSON data

2010-06-02 Thread ravi krishna
Hi, I am a newbie with Python n Django programming. Can somebody tell me some easy methods for passing the Json data to the html page as arguments. I have the Json converted data stored in a variable. Now need to print those data in html. while searching found some methods like using eval() in

Re: Beginner's doubt

2010-05-24 Thread ravi krishna
This is the error i get now InvalidURL at /index nonnumeric port: On Mon, May 24, 2010 at 10:51 AM, ravi krishna <ravi.9...@gmail.com> wrote: > sorry the VIEW.py is: > > > > conn=httplib.HTTPConnection("www.python.org") > conn.request("GET", "

Re: Beginner's doubt

2010-05-23 Thread ravi krishna
sorry the VIEW.py is: conn=httplib.HTTPConnection("www.python.org") conn.request("GET", "/index.html") r1 = conn.getresponse() print r1.status, r1.reason data1 = r1.read() conn.close() On Mon, May 24, 2010 at 10:30 AM, ravi krishna <ravi.9...@gmail.com> wro

Beginner's doubt

2010-05-23 Thread ravi krishna
Hi, I want to retrieve data from wikimapia api. For this i am using httplib function of python. this is my VIEW.py file( just the httplic() ) conn=httplib.HTTPConnection("www.python.org") r1 = conn.getresponse() print r1.status, r1.reason data1 = r1.read() conn.close() Initially i gave the

Re: How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ravi krishna
>> >> view.py >> def myView(request,path): >> >p=request.POST.get("yourfield") > >> >> >> >> >> >> On Fri, May 21, 2010 at 2:59 PM, ravi krishna <ravi.9...@gmail.com>wrote: >> >>> Hi, >

How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ravi krishna
Hi, I have 2 pages. My first page has a form( simple html form) with 3 fields.I want to display the data entered in first page ,to second page. I am a beginner with Django framework, Somebody please help me to solve this. I will post my 'VIEW' n 'html file for the first page ' here. VIEW: def

Re: How to insert a search form inside Django?

2010-05-19 Thread ravi krishna
www.slideshare.net/ecomsmith/custom-signals-for-uncoupled-design. > > Furthermore you can look at DjangoBook here: > http://www.djangobook.com/en/2.0/chapter07/ > > Have fun! > bx2 > > > On 19 Maj, 08:47, ravi krishna <ravi.9...@gmail.com> wrote: > > Hi, >

How to insert a search form inside Django?

2010-05-19 Thread ravi krishna
Hi, I want to include a search button inside my Django, which retrieves data from some google API or Wikimapia API, But i am stuck with adding a search option inside Django. i am a beginner with Django and Python programming. Can somebody please help me with this. -- Regards, Rav! -- You

How to retrieve data from Wikimapia using its API?

2010-05-18 Thread ravi krishna
Hi, I am a beginner with Django. Can someone tell me how to access the database of Wikimapia using its API through Django. -- Regards, Rav! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Shows indendation error

2010-05-13 Thread ravi krishna
thank a lot everyoneit was really helpful...:) On Thu, May 13, 2010 at 7:33 PM, Karen Tracey <kmtra...@gmail.com> wrote: > On Thu, May 13, 2010 at 2:53 AM, ravi krishna <ravi.9...@gmail.com> wrote: > >> Hi,,This is my url.py file, when i run this it shows indenda

Re: Shows indendation error

2010-05-13 Thread ravi krishna
On Thu, May 13, 2010 at 12:23 PM, ravi krishna <ravi.9...@gmail.com> wrote: > Hi,,This is my url.py file, when i run this it shows indendation error at > line 25. But i dont see an indendation error. Can somebody help me. I am > just a beginner with Django. > > > from d

Shows indendation error

2010-05-13 Thread ravi krishna
Hi,,This is my url.py file, when i run this it shows indendation error at line 25. But i dont see an indendation error. Can somebody help me. I am just a beginner with Django. from django.conf.urls.defaults import * from django.conf import settings # Uncomment the next two lines to enable the

Re: how to display an image inside Django

2010-05-11 Thread ravi krishna
;wrote: > On May 11, 7:10 am, ravi krishna <ravi.9...@gmail.com> wrote: > > Hi, > > I am a beginner in Django . > > Can somebody tel me how to display an image in django... > > if anyone has the right tutorial for beginners, please share with me.. > > -- >

how to display an image inside Django

2010-05-11 Thread ravi krishna
Hi, I am a beginner in Django . Can somebody tel me how to display an image in django... if anyone has the right tutorial for beginners, please share with me.. -- Regards, Rav! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this