Re: Should we have a database independent SQL like query language in Django?

2012-10-06 Thread Jeremy Sandell
On Sat, Oct 6, 2012 at 10:38 AM, Yugal Jindle wrote: > *Note :* > > - I know we have `Django ORM` already that keeps things database > independent and converts to the database specific `SQL` queries. > - Once things starts getting complicated it is preferred to write `raw

Re: how to run a given project

2010-03-16 Thread Jeremy Sandell
On Mar 16, 4:58 am, hk wrote: > hi > > Ive just started experiencing DJango i am an undergrad student i was > given a Django project on which to extend functionality but after > installing all the necessary apps for it but  i cant seem to run it > i get "Database wit does not

Re: How to make django use a different python interpreter located at some random location.

2010-03-11 Thread Jeremy Sandell
On Mar 10, 11:41 pm, Abhinov wrote: > Hi All, > > How to make my django use a different python interpreter located at > some random location ? > Any help will be of great help. > > Regards, > Abhinov I'll second Bjunix's recommendation of checking out virtualenv. It

Re: Django Equivalent to Rails Rumble

2008-10-25 Thread Jeremy Sandell
On Oct 25, 11:45 am, "Keyton Weissinger" <[EMAIL PROTECTED]> wrote: > Hello everyone! > > Long time listener. First time caller > > Is there an equivalent to the Rails Rumble for the Django community? > Shouldn't there be one? What do you think? > > Keyton Having just googled it, I

Re: Boosting your productivity when debugging Django apps

2008-10-06 Thread Jeremy Sandell
winpdb has been a life saver for me, as well. I had been using pyDev + Eclipse (for the debugger), with the viPlugin (for my sanity). The amount of ram used just to fire up the debugger made me want to cry. winpdb + vim (with Python bindings) solved that issue very nicely. I can code on my old

Re: actual django stack

2008-09-27 Thread Jeremy Sandell
On Sep 26, 1:25 pm, David Zhou <[EMAIL PROTECTED]> wrote: > > I've also heard good things about WSGI -- though I haven't heavily   > tested its stability compared to, say, mod_python. > --- > David Zhou > [EMAIL PROTECTED] FWIW, WSGI has thus far worked wonderfully for me, and using daemon mode

Re: Just learning the ropes with Django and authentication

2008-04-01 Thread Jeremy Sandell
Probably the best way to understand how it works is to check the source. under django/contrib/admin/views/decorators.py is the view (_display_login_form), and under django/contrib/admin/templates/admin/ login.html is the form itself. I'd also suggest looking at django/contrib/auth/ for futher

Re: Example application

2008-04-01 Thread Jeremy Sandell
There are some great resources available here: http://code.djangoproject.com/wiki/DjangoResources Though you might be better served creating a mockup site in Django, and implementing such things using the rest of the Django documentation (outside of the tutorials, I mean). Anyway, good luck!

Re: IDE

2008-03-05 Thread Jeremy Sandell
On Mar 5, 3:06 pm, gabriel <[EMAIL PROTECTED]> wrote: > What do you think about : > > eclipse + plugins( pydev + html/css ) > eric4 + django plugin > SPE - is there plugin for django Eclipse + Pydev extension (especially with the non-free remote debugger) is really handy, though I've found

Re: Access cycle var in template - gentle hack

2008-03-04 Thread Jeremy Sandell
What I meant was that you could use the catch tag to avoid having to use html comments to hide it. (: It's still just as much of a hack, of course, but not quite as visible after rendering. On Feb 28, 3:51 am, itpaul <[EMAIL PROTECTED]> wrote: > ok. like this? > > {% for p in post_list %} >