Re: What to learn first?

2013-12-26 Thread sahil13082
Thanks I got it! On Thursday, December 26, 2013 1:04:26 AM UTC+5:30, sahil...@iiitd.ac.in wrote: > > Hi, > > I wanted to ask that what should I learn first = wxPython or Django?(Being > a beginner in python) > -- You received this message because you are subscribed to the Google Groups "Djang

Re: What to learn first?

2013-12-26 Thread shmengie
On Wednesday, December 25, 2013 2:34:26 PM UTC-5, sahil...@iiitd.ac.in wrote: > > Hi, > > I wanted to ask that what should I learn first = wxPython or Django?(Being > a beginner in python) > I learned wxPython first, found it easier to assimilate, thanks to the wxDemo, smaller code segments u

Re: What to learn first?

2013-12-26 Thread Sahil Babbar
Hi shmengie, Thanks for your explanation. I appreciate it. Regards, *SAHIL BABBAR* R.N.:2013082 (M)-88-5060 On Thu, Dec 26, 2013 at 8:21 PM, shmengie <1st...@gmail.com> wrote: > > > On Wednesday, December 25, 2013 2:34:26 PM UTC-5, sahil...@iiitd.ac.inwrote: >> >> Hi, >> >> I wanted to as

Displaying HTML forms through AJAX

2013-12-26 Thread Arun Kaushik
I am a newbie. I am learning Django by developing a web application. There is use-case where I got stuck. there are 3 buttons on a html page *Personal info* *Education* *Work Experience* It is desired when the user click any of the button, respective html form shall be displayed on right-half of

Re: Displaying HTML forms through AJAX

2013-12-26 Thread Thomas
My initial recommendation would be to read up on the Forms section of the Django manual. A lot of the logic you've written here is abstracted away in Django's built-in methods. Also, I'd replace that messy HTML in views.py with a call to a separate partial. In fact, that partial would prob

Re: Need Direction for Web App

2013-12-26 Thread zobcloud
Doug, I am speechless, but will attempt to overcome that. Thank you for doing this. Merry Christmas. I will open this bad boy up and see if I can make heads or tails. Thank you again. Very nice of you indeed. Mike On Tuesday, December 24, 2013 7:55:37 PM UTC-5, zobc...@gmail.com wrote: > > I

What is your experience with SOAP Client and Server thru Django?

2013-12-26 Thread Bernard Kuehlhorn
I'm looking to support SOAP as Client and Server thru Django. Spyne looks good. Is there any way to convert WSDL or XSD to Django Model? Does anybody have an example of support for generally available WSDL like Google search? -- You received this message because you are subscribed to the Googl

new to Django and Python

2013-12-26 Thread Register, Brent (CMG-Atlanta)
I get an error message when I run the "$ python manage.py syncdb" Command. 70 SyntaxError: Non-ASCII character '\xe2' in file /Users/bmregister/djangoLocal/myFirstSite/myFirstSite/settings.py on line 70, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details I can’

Re: new to Django and Python

2013-12-26 Thread Diogene Laerce
On 12/27/2013 03:44 AM, Register, Brent (CMG-Atlanta) wrote: I get an error message when I run the "$ python manage.py syncdb" Command. 70 SyntaxError: Non-ASCII character '\xe2' in file /Users/bmregister/djangoLocal/myFirstSite/myFirstSite/settings.py on line 70, but no encoding declared; s

Good news for Django devs - labbler.com code has been released to public

2013-12-26 Thread Alexander Grytsenko
As an example of successful commercial product built on top of Django framework: https://github.com/agrytsenko/labbler -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an ema

ANN - django-databrowse 1.3 released.

2013-12-26 Thread Alireza Savand
Hey django-users, We released django-databrowse 1.3 couple of days ago. This release includes: * Pagination (fixed). * Many new unit-tests. * PEP8 on source code. django-databrowse 1.3 is available on: PyPi: https://pypi.python.org/pypi/django-databrowse/1.3 Source on GitHub: https://github.co

Re: Good news for Django devs - labbler.com code has been released to public

2013-12-26 Thread Cal Leeming [Simplicity Media Ltd]
I wish I knew what it was, but it's all in Russian.. :/ Cal On Thu, Dec 26, 2013 at 10:24 PM, Alexander Grytsenko < alexander.grytse...@dev-pro.net> wrote: > As an example of successful commercial product built on top of Django > framework: https://github.com/agrytsenko/labbler > > -- > You rec

Re: new to Django and Python

2013-12-26 Thread trojactory
Hi Brent, Did you try the suggestions in the PEP link? Try adding this line at the top of the file: # coding: utf-8 Cheers, Arun On Friday, 27 December 2013 02:14:24 UTC+5:30, Brent Register wrote: > > I get an error message when I run the > "$ python manage.py syncdb" > Command. > > >