Can we make one of these for Django?

2007-05-18 Thread chasfs
A friend who uses Rails sent me a link to the rails envy video http://www.youtube.com/watch?v=PQbuyKUaKFo Does anyone here have the ability to make a better one for Django? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Recommended Developer Tools

2007-04-07 Thread chasfs
production servers. https://addons.mozilla.org/en-US/firefox/addon/2409 Peace, chasfs http://zdecisions.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: Curious error with Session Variables

2007-04-04 Thread chasfs
can use django/bin/daily_cleanup.py to do this. Good luck, -chasfs On Apr 3, 1:36 pm, "Ramdas S" <[EMAIL PROTECTED]> wrote: > Since last few days I am getting this error on Django web sites hosted. > Obviously it is clashing with something. > > When I work on admi

min_value & max_value in newforms IntegerFields

2007-03-26 Thread chasfs
this? Should I just subclass django.db.models.fields.IntegerField? Thanks, -chasfs --~--~-~--~~~---~--~~ 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: ANN: Django-0.96 hosting available at WebFaction

2007-03-25 Thread chasfs
Thanks for the post, Remi. I may be moving over from Dreamhost when my contract expires. It would be great to have a fully supported Django environment. -chasfs On Mar 24, 1:47 pm, "Remi" <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I'm happy to announce that Web

Re: MySQLdb version

2007-03-20 Thread chasfs
Thanks for the quick reply! Do you know if Django has been tested with MySQLdb 1.2.2? On Mar 20, 11:20 am, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 3/20/07, chasfs <[EMAIL PROTECTED]> wrote: > > > The problem is that the MySQLdb page says that 1.2.1p2

MySQLdb version

2007-03-20 Thread chasfs
bout. Why is p2 required? Thanks! -chasfs --~--~-~--~~~---~--~~ 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: Reversed edit_inline?

2007-03-11 Thread chasfs
ORM has been contentious for many years - for more background on the problems of ORM, check out Ted Neward's blog entry - http://blogs.tedneward.com/2006/06/26/The+Vietnam+Of+Computer+Science.aspx Peace, -chasfs --~--~-~--~~~---~--~~ You received this me

Re: Django installation on dreamhost

2007-03-07 Thread chasfs
Can you set up your env so it it matches what fcgi has and then run manage.py shell? If that works, use the shell to try to access the database. The other thing that might help is to look at the logs, likely in ~/logs/django.gigzor.com. Thanks, -chasfs http://zdecisions.com On Mar 7, 5:35 am

Production site management

2007-03-04 Thread chasfs
hanks! -chasfs http://zdecisions.com --~--~-~--~~~---~--~~ 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 group

Cookies, Sessions & Firefox

2007-02-28 Thread chasfs
ds, so I thought this might be useful. Peace, -chasfs http://zdecisions.com --~--~-~--~~~---~--~~ 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.

Re: Comparison between Dreamhost and ASmallOrange

2007-02-15 Thread chasfs
ere's something similar at ASO or not. Good luck, -chasfs On Feb 15, 1:01 pm, "sansmojo" <[EMAIL PROTECTED]> wrote: > I thought this might be useful for those considering Django hosting > alternatives. > > I've been working on a Dreamhost server for quite a while for

Re: Dreamhost Statistics + Django

2007-02-13 Thread chasfs
Eugene, Thanks for the quick reply! That solved the problem. Is this a great group or what? Thanks, -chasfs On Feb 14, 12:05 am, Eugene Lazutkin <[EMAIL PROTECTED]> wrote: > No need to do it in Dkango --- you should add more rewrite rules in > .htaccess (seehttp://wiki.d

Dreamhost Statistics + Django

2007-02-13 Thread chasfs
to do with stats. Has anyone run into this? Is there anyway to configure Django to redirect a url to an off-Django url from the urls.py file? Or do I need to create a view to do this? Thanks! -chasfs --~--~-~--~~~---~--~~ You received this message because you are

Default widget parameters with newforms

2007-01-30 Thread chasfs
s['text2'].widget.attrs.update({'rows':'20', 'cols':'80'}) to specify the rows and columns for the textareas for text1 and text2. Is this the best way to do this? Thanks! -chasfs --~--~-~--~~~---~--~~ You received

Re: newforms, foreignKeys & constraints

2007-01-30 Thread chasfs
is: form = forms.form_for_instance(obj, formfield_callback=obj_callback) (request.POST) if form.is_valid(): for i in form.clean_data: obj.__setattr__(i, form.clean_data[i]) obj.save() return HttpResponseRedirect(...) Hope this helps! -chasfs On Jan 29, 2:52 pm, &qu

Re: having trouble with templates recognizing locations of css files

2007-01-26 Thread chasfs
The problem is in django/core/servers/basehttp.py - in class AdminMediaHandler. It hardcodes self.media_dir = django.__path__[0] + '/contrib/admin/media' and ignores MEDIA_ROOT. On Jan 19, 5:19 pm, "rsie" <[EMAIL PROTECTED]> wrote: > I'm not sure what to do to get my templates to resolve the css

Underscore in CharField definition

2007-01-09 Thread chasfs
I was looking at django.contrib.auth.models and noticed _ in front of the first parameter, e.g. first_name = models.CharField(_('first name'), maxlength=30, blank=True) What does that mean/do? Thanks! --~--~-~--~~~---~--~~ You received this message because

login_required decorator conflicts with admin documentation view

2007-01-05 Thread chasfs
found. Any suggestions other than removing the login_required decorator and doing the work in each view? Thanks! -chasfs --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Workflow engine for python?

2007-01-04 Thread chasfs
google python workflow - http://www.google.com/search?q=python+workflow --~--~-~--~~~---~--~~ 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 un

Re: Question about tutorial2

2006-12-08 Thread chasfs
Jeremy Dunck wrote: > On 12/8/06, chasfs <[EMAIL PROTECTED]> wrote: > > > > I've gone through the tutorials but had a bit of a problem when I > > changed the Choice's ForeignKey incorrectly half way through Tutorial > > 2. I typed in "Ta

Question about tutorial2

2006-12-08 Thread chasfs
the typo. Eventually restarting the server fixed it, but it took a while to figure out. Is this a bug? Thanks! -chasfs p.s. - I posted this as a comment on the tutorial page, which I now see was yet another user error - Sorry! --~--~-~--~~~---~--~~ You re

Re: Django + FastCGI Problems

2006-11-18 Thread chasfs
jango. Good luck, -chasfs http://chasfs.com --~--~-~--~~~---~--~~ 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 t