Re: ANN: "Snakes and Rubies" (Django/Rails meetup) video/audio available

2006-01-27 Thread Eugene Lazutkin
After 18 days after uploading the main video file went live today: http://video.google.com/videoplay?docid=2939556954580527226. It includes the whole enchilada. Please somebody update "Snakes and Rubies downloads" page (http://www.djangoproject.com/snakesandrubies/) to include live links as w

Re: I need some directions to auth system and stuff

2006-01-27 Thread Waylan Limberg
On 1/26/06, Amit Upadhyay <[EMAIL PROTECTED]> wrote: > On 1/27/06, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> wrote: > > > > 2. I want to have login form on each page. How should I process form, > > if I want to stay inside built-in auth system? Dunno what should my > > View be. > > One option is to

Re: BigIntegerField type?

2006-01-27 Thread Adrian Holovaty
On 1/27/06, Roberto Aguilar <[EMAIL PROTECTED]> wrote: > But in the mean time, is the best thing to do simply manually alter > the database? i.e.: > > ALTER TABLE foo_bars ALER some_number TYPE bigint; > > I tried this and it works fine, but does anyone see something going > wrong with this? Hi R

BigIntegerField type?

2006-01-27 Thread Roberto Aguilar
Hello, I'm in need to store really big numbers in the database. It looks like the only limitation to this is that there is no BigIntegerField type to use. I found this bug, which covers the problem: http://code.djangoproject.com/ticket/399 But in the mean time, is the best thing to do simply

Re: Some thoughts about slug and slugify

2006-01-27 Thread gabor
Rudolph wrote: Batiste wrote: But there is possible to increase the quality of the generated slug with some European symbols like (é,è,à,â,È,É,À,Â,ö,ä ...) é -> e è -> e à -> a À -> a I did this once in PHP, it worked really well (yes, I know it's PHP, that's why I switched to Django): $slu

hierarchical navigation by date in my external view

2006-01-27 Thread frank h.
Hello, I want my external view to feature a "date hierarchy", as the one that can be configured in the admin application. This is really one fantastic feature, I could use it all over the place in my applications! If only it was more readily accessible to the layman... But I understand that with t

modifying DEFAULT_RESULTS_PER_PAGE

2006-01-27 Thread Chris Leonello
Is there anyway to change the MAX_SHOW_ALL_ALLOWED and DEFAULT_RESULTS_PER_PAGE variables short of editing the contrib/admin/views/main.py file? Since these are parameters that directly relate to presentation, it seems that they should be controlled at a module level basis at least (or class leve

Re: Guido on Django

2006-01-27 Thread Jason Huggins
Yeah, my thoughts exactly on the turbogears thing... I like Rails, Django, and gosh, even Plone, specifically because they're used in large, referenceable, high-traffic *production* sites. The Rails gang are very handy about documenting knowledge of their production support and deployment tips and

Re: Guido on Django

2006-01-27 Thread Wilson
I'll lose my train of thought and trail off! That's what! I'm crazy like that.

Re: Some thoughts about slug and slugify

2006-01-27 Thread Rudolph
Batiste wrote: > But there is possible to increase the quality of the generated slug > with some European symbols like (é,è,à,â,È,É,À,Â,ö,ä ...) > > é -> e > è -> e > à -> a > À -> a I did this once in PHP, it worked really well (yes, I know it's PHP, that's why I switched to Django): $slug = st

Re: Guido on Django

2006-01-27 Thread Jacob Kaplan-Moss
On Jan 27, 2006, at 9:53 AM, Wilson wrote: If I see another post on that thread that says "i'm very impressed with how fast turbogears is coming along! it should be actually useful in a few months now!" You'll what!? Don't leave me in suspense like that! Jacob

Re: Guido on Django

2006-01-27 Thread Wilson
If I see another post on that thread that says "i'm very impressed with how fast turbogears is coming along! it should be actually useful in a few months now!" Django is useful (and proven, and stable) now. And it's getting better fast. Don't be shy about hammering that point!

Manipulator Change calls INSERT

2006-01-27 Thread Brian Ray
I get an SQL error when trying to Change an already displayed form field. When loggedin() returns True and changes have already been made at are currently trying to be submitted, this view is still tries to INSERT: def changeaccount(request): uid = '-1' if loggedin(request.user): uid

Re: Guido on Django

2006-01-27 Thread Adrian Holovaty
On 1/27/06, Maniac <[EMAIL PROTECTED]> wrote: > Guido van Rossum wrote an article about him evaluating web frameworks > (http://www.artima.com/weblogs/viewpost.jsp?thread=146149). Some things > he dislike about Django are being fixed in the upcoming World Happiness > Branch (I mean 'magic removal'

Re: Guido on Django

2006-01-27 Thread tonemcd
Hmm, I don't know where that GvR gets that idea - one of the first things I tried to do was {{ results['content-type'] }} *that* didn't work, and neither did {{ results.content-type }}. Cheers, Tone

Custom field

2006-01-27 Thread Jiri Barton
I would like html2python be instance method. Consider the following RelaxedDateField class which can accept date in various formats. It can use day, month, and year from another date (reference date) if they are not provided. The following inputs are valid: 27 2006-27-01 27.1.2006 27.1. 27-01 Th

Guido on Django

2006-01-27 Thread Maniac
Guido van Rossum wrote an article about him evaluating web frameworks (http://www.artima.com/weblogs/viewpost.jsp?thread=146149). Some things he dislike about Django are being fixed in the upcoming World Happiness Branch (I mean 'magic removal' :-) ). But one thing strikes me as very strange:

Re: How do I get POST variables in my template

2006-01-27 Thread tonemcd
Thanks for the pointer Jeremy, but that was one of the first places I looked ;) - I made *real* sure that my action had a '/' at the end of it... Cheers, Tone