Re: newforms + editable=False

2007-06-04 Thread Malcolm Tredinnick
On Mon, 2007-06-04 at 22:23 +, SmileyChris wrote: > Ticket #611 was reopened just now and the point raised seems valid > enough. > http://code.djangoproject.com/ticket/611#comment:8 > > Quoting rogerdpack from the ticket comment: > "The problem it generated for me was that say I have a User w

Re: Ticket #3297 and File uploads

2007-06-04 Thread Malcolm Tredinnick
On Mon, 2007-06-04 at 13:58 +0200, David Danier wrote: > > Perhaps request.POST.copy() could do this translation/decoding? > > Shouldn't request.{POST,GET}.copy() return an decoded version anyway? They return an *exact* copy of the same data structure. So it has an encoding attribute and the dec

Re: Ticket #3297 and File uploads

2007-06-04 Thread Malcolm Tredinnick
On Mon, 2007-06-04 at 18:57 +0800, Russell Keith-Magee wrote: > On 6/4/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > > On Mon, 2007-06-04 at 12:44 +0800, Russell Keith-Magee wrote: > > > Hi All, > > > > > > I've been looking at ticket #3297 - a request to implement FileField > > > and Im

Re: Ticket #3297 and File uploads

2007-06-04 Thread Malcolm Tredinnick
On Mon, 2007-06-04 at 13:37 +0200, David Danier wrote: > > So the Unicode branch does decoding when > > things in request.GET and request.POST are accessed, not on > > construction, and you can change the encoding to whatever you like via > > an attribute on the HttpRequest (or http.QueryDict) cla

Re: newforms + editable=False

2007-06-04 Thread Russell Keith-Magee
On 6/5/07, SmileyChris <[EMAIL PROTECTED]> wrote: > > Ticket #611 was reopened just now and the point raised seems valid > enough. > http://code.djangoproject.com/ticket/611#comment:8 The interpretation of editable=False behaviour is consistent from old to newforms - editable=False fields are not

multiple-db-support

2007-06-04 Thread Ben Ford
Hi JP, I've been using your multiple-db-support for sometime now and i wondered if you are still actively developing it? I have a couple of suggestions/queries to do with a few of my specific needs and I would guess those of others... There are a couple of tickets about this on trac, but I might tr

Ping: Extend "for" tag to allow unpacking of lists

2007-06-04 Thread SmileyChris
Ticket http://code.djangoproject.com/ticket/3523 has been sitting quietly for a couple of months as a design decision and it's a reasonably common question in the IRC channel so I thought I'd ask a core developer for a decision. The ticket itself relies on a change to context.update, which is pro

Re: Bugs in Image Validator (.96 release)

2007-06-04 Thread SmileyChris
It's a bug with PIL reading OLE files with Python 2.4: http://mail.python.org/pipermail/image-sig/2006-February/003764.html Probably worth filing a ticket - it'd be easy enough to catch OverflowError in our validator. On Jun 5, 5:06 am, [EMAIL PROTECTED] wrote: > Since the focus is on newforms I

newforms + editable=False

2007-06-04 Thread SmileyChris
Ticket #611 was reopened just now and the point raised seems valid enough. http://code.djangoproject.com/ticket/611#comment:8 Quoting rogerdpack from the ticket comment: "The problem it generated for me was that say I have a User with a field 'registered' which is, of course, not editable, then i

((<< Unbelievable Mega machines >>))

2007-06-04 Thread Sheela Thaper
*Friends Here are New 7 Wonders (Unbelievable Mega machine)* http://information.100stuff.com/unbelievable-megamachine/ if you know about any unbelievable thing please us Thanks bye --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

<< Unbelievable HEART SURGERY =>>>

2007-06-04 Thread Sheela Thaper
*Hello Friends i saw Unbelievable Heart surgery site i am sure you all believe it.* http://100stuff.com/heart-attack/ Please share us some unbelievable things Bye --~--~-~--~~~---~--~~ You received this message because you a

Bugs in Image Validator (.96 release)

2007-06-04 Thread pchilds
Since the focus is on newforms I wanted to float this by the developers first to see whether I should submit a ticket for this bug. I've tried searching for this on the news groups and trac and couldn't find anything. My first test was to upload a valid image. Worked fine. My next few tests were

Re: Can django support easy_install

2007-06-04 Thread Jacob Kaplan-Moss
On 6/4/07, kernel1983 <[EMAIL PROTECTED]> wrote: > Setuptools is a powerful tools for python. > > When could django support it? At Version One? What kind of support are you looking for? What do you need to be able to do? Jacob --~--~-~--~~~---~--~~ You received t

Re: Can django support easy_install

2007-06-04 Thread Waylan Limberg
It appears that this is part of a Goggle SoC project. See this thread for more: http://groups.google.com/group/django-developers/browse_thread/thread/9fe1c3f8dd6f6099/ On 6/4/07, kernel1983 <[EMAIL PROTECTED]> wrote: > > Setuptools is a powerful tools for python. > > When could django support

Can django support easy_install

2007-06-04 Thread kernel1983
Setuptools is a powerful tools for python. When could django support it? At Version One? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develo

Re: Sqlalchemy, SQL Views, Sysadmin

2007-06-04 Thread Guy Hulbert
On Mon, 2007-06-04 at 08:36 -0400, Guy Hulbert wrote: > I can work on django.contrib.sqlalchemy.db.models.Model without SVN > access so that is what I plan to do. > > If someone would like things to go faster and takes on the > 'sqlalchemy' > branch then let me know (starting django-announce woul

Re: Sqlalchemy, SQL Views, Sysadmin

2007-06-04 Thread Guy Hulbert
On Mon, 2007-06-04 at 07:17 -0500, James Bennett wrote: > On 6/4/07, gh <[EMAIL PROTECTED]> wrote: > > I contacted R Munn about the SQLAlchemy integration in January but I > > understand he has dropped it. I would like to volunteer as a guinea > > pig for testing once someone takes this on ... bu

Re: Sqlalchemy, SQL Views, Sysadmin

2007-06-04 Thread James Bennett
On 6/4/07, gh <[EMAIL PROTECTED]> wrote: > I contacted R Munn about the SQLAlchemy integration in January but I > understand he has dropped it. I would like to volunteer as a guinea > pig for testing once someone takes this on ... but figuring this out > via google is a > pain. If half as many p

Re: Ticket #3297 and File uploads

2007-06-04 Thread David Danier
> Perhaps request.POST.copy() could do this translation/decoding? Shouldn't request.{POST,GET}.copy() return an decoded version anyway? Otherwise the copy() might look different to the vars under request: post_copy = request.POST.copy() if post_copy['foo'] == request.POST['foo']: print '

Sqlalchemy, SQL Views, Sysadmin

2007-06-04 Thread gh
I will be spending the next three months creating several small-scale django apps (I can count 5 now but there will be more). I am working with pg but expect to support sqlite and mysql. I am using SQL VIEWs and SQLAlchemy. I have a command-line i/f which includes: create/drop/status/sizes an

Re: Ticket #3297 and File uploads

2007-06-04 Thread David Danier
> So the Unicode branch does decoding when > things in request.GET and request.POST are accessed, not on > construction, and you can change the encoding to whatever you like via > an attribute on the HttpRequest (or http.QueryDict) class. Perhaps request.POST.copy() could do this translation/deco

Re: Ticket #3297 and File uploads

2007-06-04 Thread Russell Keith-Magee
On 6/4/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Mon, 2007-06-04 at 12:44 +0800, Russell Keith-Magee wrote: > > Hi All, > > > > I've been looking at ticket #3297 - a request to implement FileField > > and ImageField in newforms. ... > > If we then modify value_from_datadict to also

Re: Volunteer(s) needed: Django needs a buildbot

2007-06-04 Thread Massimiliano Ravelli
On 4 Giu, 10:21, Henrik Levkowetz <[EMAIL PROTECTED]> wrote: > I've done a good-enough-to-start-with integration of Trac and BuildBot > ... cut ... > I'll clean up the code and place this on Trac Hacks (trac-hacks.org) > within a day or so. This is good news ! Let me know when the code is availa

Re: Volunteer(s) needed: Django needs a buildbot

2007-06-04 Thread Henrik Levkowetz
On 2007-06-04 09:53 Massimiliano Ravelli said the following: > On 1 Giu, 17:15, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> > wrote: >> So, is there anybody out there who could get some sort of CI tool set >> up? > > I have a very simple installation of buildbot. > At every commit the build-slave ch

Re: Volunteer(s) needed: Django needs a buildbot

2007-06-04 Thread Massimiliano Ravelli
On 1 Giu, 17:15, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > So, is there anybody out there who could get some sort of CI tool set > up? I have a very simple installation of buildbot. At every commit the build-slave checks out the source of my django apps, runs the tests and builds debian pa