Re: BitmaskField

2008-12-05 Thread [EMAIL PROTECTED]
--~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Make django debug page simple when develop ajax page(with firebug)

2008-12-02 Thread [EMAIL PROTECTED]
Perhaps a better solution would be to vary based on request.is_ajax(). Alex On Dec 2, 11:37 pm, kernel1983 <[EMAIL PROTECTED]> wrote: > HTML debug page is good when you develop normal web page > > But when you debug ajax based web page with firebug, the HTML debug > page

Re: Django, Simplejson and speedups

2008-11-28 Thread [EMAIL PROTECTED]
, the django.utils.simplejson version could simply be removed in favor of a system-installed simplejson or the one in the standard library. Thanks, Eric Florenzano On Nov 28, 6:10 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Fri, 2008-11-28 at 01:56 -0800, Johan Bergström wrote: > >

Re: Cache key blackboard?

2008-11-28 Thread [EMAIL PROTECTED]
/queryset to be cached, the request, and whatever else needs to be known to determine the key), and than get's or sets the appropriate key. Alex On Nov 28, 9:18 am, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > It seems like cache keys need to be created using various > cros

Re: Dropping Python 2.3 compatibility for Django 1.1

2008-11-27 Thread [EMAIL PROTECTED]
On Nov 27, 2:13 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > * Solaris: I'm unable to find information detailing which Python >   version ships with various releases of Solaris and OpenSolaris. If >   anyone has that information, please post it in a reply. Solaris

Re: Dropping Python 2.3 compatibility for Django 1.1

2008-11-25 Thread [EMAIL PROTECTED]
, argument against is that some people don't have access to it, the only question is that a sizeable portion of Django users). alex On Nov 25, 12:33 pm, Ivan Sagalaev <[EMAIL PROTECTED]> wrote: > Ludvig Ericson wrote: > > On Nov 25, 2008, at 18:08, Jacob Kaplan-Moss wrote: > >>

Re: defer().

2008-11-21 Thread [EMAIL PROTECTED]
not in excluded_fields]. On Nov 21, 3:23 pm, "Ian Kelly" <[EMAIL PROTECTED]> wrote: > On Fri, Nov 21, 2008 at 1:05 PM, David Cramer <[EMAIL PROTECTED]> wrote: > > I won't use defer, and I won't recommend people use it. I think it's > > not good practice. It's like us

Re: ANN: Django 1.0.1 released

2008-11-18 Thread [EMAIL PROTECTED]
To generate the files just cd django; django-admin.py compilemessages - l LANG_CODE Another language ticket is: http://code.djangoproject.com/ticket/9597 On Nov 18, 2:44 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Sun, Nov 16, 2008 at 7:46 PM, James Bennett <[

Re: Notification on new database connections (ticket #6064)

2008-11-17 Thread [EMAIL PROTECTED]
As long as you get the connection itself, i would think that would be sufficient, obviously the receiver should know which connection it is in the multi-db scenario, as it won't be able to just infer that based on the settings. On Nov 17, 6:15 pm, "Matthew D. Hancher" <[EMAIL PROT

Re: Notification on new database connections (ticket #6064)

2008-11-17 Thread [EMAIL PROTECTED]
Matthew, would you mind sticking the script you used to test this up on dpaste? Alex On Nov 17, 3:01 pm, "Matthew D. Hancher" <[EMAIL PROTECTED]> wrote: > On Nov 16, 11:03 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]>   > wrote: > > > I know

Re: Notification on new database connections (ticket #6064)

2008-11-16 Thread [EMAIL PROTECTED]
Right, I understand the need for absolute numbers, I just meant that we don't need to start rewriting new benchmarks if Jeremy still has the benchmark script. Alex On Nov 16, 11:03 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Mon, Nov 17, 2008 at 12:21 P

Re: Notification on new database connections (ticket #6064)

2008-11-16 Thread [EMAIL PROTECTED]
Well, Jeremy Dunck was kind enough to do a benchmark against the old system: http://groups.google.com/group/django-developers/browse_thread/thread/815f76ad7e823cbf/b008a757fbdefa2b On Nov 16, 9:49 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Mon, Nov 17, 2008 a

Re: Notification on new database connections (ticket #6064)

2008-11-16 Thread [EMAIL PROTECTED]
In terms of signal overhead, the most likely case here is probably no receivers, and in the signal refactor, that particular case is now hugely faster. On Nov 16, 8:55 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sun, 2008-11-16 at 17:14 -0800, Matthew D. Hancher wrote: &

Re: Proposal: connection pooling with psycopg2

2008-11-16 Thread [EMAIL PROTECTED]
This sounds like a good feature, however, it's very difficult to read a patch in either email or on google groups, so could you please open a ticket in trac, and post this as a patch there. On Nov 16, 2:57 pm, jothan <[EMAIL PROTECTED]> wrote: > PsycoPg2 with a remote DB over a WAN

Re: ANN: Django 1.0.1 released

2008-11-16 Thread [EMAIL PROTECTED]
This: http://code.djangoproject.com/ticket/9613 seems to be of the same vein. I haven't confirmed it however. On Nov 16, 7:54 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sun, 2008-11-16 at 17:42 -0600, Jacob Kaplan-Moss wrote: > > On Sun, Nov 16, 2008 at 5:33 PM, Karen

Re: Denormalisation Magic, Round Two

2008-11-16 Thread [EMAIL PROTECTED]
p. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Multi-Threaded Dev Server

2008-11-15 Thread [EMAIL PROTECTED]
://www.oebfare.com/blog/2008/nov/03/writing-custom-management-command/ On Nov 16, 1:39 am, "Calvin Spealman" <[EMAIL PROTECTED]> wrote: > Does it need to be multi-threaded? Can you get a multi-process dev > server instead/also? > > > > On Sun, Nov 16, 2008 at 1:26 A

Re: Proposal: Ordering in the admin and via the model API

2008-11-12 Thread [EMAIL PROTECTED]
I'd just like to point out that this isn't something to solve just for many to many's, it's also for ForeignKeys. On Nov 12, 6:58 pm, Jonas Pfeil <[EMAIL PROTECTED]> wrote: > The idea of an ordered many-to-many field is very old [1] and has been > proposed a lot over the years (

Re: 1.0.1 Feature UserProfile inline Filter in User

2008-10-31 Thread [EMAIL PROTECTED]
This just seems like a generalization of this: http://code.djangoproject.com/ticket/3400 On Oct 31, 7:28 pm, Cornbread <[EMAIL PROTECTED]> wrote: > I've ran into an issue I think that many will run into. > > In our project we have a profile for each user and we have integrate

Re: Arbitrary objects in urlconf

2008-10-31 Thread [EMAIL PROTECTED]
There is a ticket about reverse not respecting request.urlconf. Alex On Oct 31, 7:50 pm, "ludvig.ericson" <[EMAIL PROTECTED]> wrote: > On Oct 29, 8:06 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote: > > > You can already do what your proposal

Re: 1.0.1 release blockers?

2008-10-31 Thread [EMAIL PROTECTED]
Ahh whoops, I have a patch for that(only covers unique right now), will upload now. Alex On Oct 31, 9:26 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On Fri, Oct 31, 2008 at 4:38 AM, mrts <[EMAIL PROTECTED]> wrote: > > The only major issue

Re: 1.0.1 release blockers?

2008-10-31 Thread [EMAIL PROTECTED]
And whoops again, brosner has a patch that covers the parent fkey issue. My patch covers the issue of duplicate data within the formset. On Oct 31, 9:26 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On Fri, Oct 31, 2008 at 4:38 AM, mrts <[EMAIL PROTECTED]> wrote:

Re: Arbitrary objects in urlconf

2008-10-29 Thread [EMAIL PROTECTED]
You can already do what your proposal would allow in middleware as seen here: http://www.b-list.org/weblog/2007/nov/06/urlconf/ On Oct 29, 1:31 pm, Ludvig Ericson <[EMAIL PROTECTED]> wrote: > On Oct 29, 2008, at 18:23, Ludvig Ericson wrote:> class MyTest(object): > >  

Re: admin.autodiscover() uses method that cannot find files inside of eggs: possible fix included

2008-10-22 Thread [EMAIL PROTECTED]
regular modules and eggs. Alex On Oct 23, 12:20 am, "Waylan Limberg" <[EMAIL PROTECTED]> wrote: > On Wed, Oct 22, 2008 at 7:16 PM, Clint Ecker <[EMAIL PROTECTED]> wrote: > > > Hi all, > >   I've opened a ticket on this matter (http://code.djangopr

Re: Lazy-loading model fields

2008-10-14 Thread [EMAIL PROTECTED]
:56 pm, "Marty Alchin" <[EMAIL PROTECTED]> wrote: > On Tue, Oct 14, 2008 at 12:34 PM, Jesse Young <[EMAIL PROTECTED]> wrote: > > A LazyTextField that manages a dynamic model behind the scenes sounds > > like a neat idea. That would certainly make the Dja

Re: admin doesn't allow more than one null fk where unique=True

2008-09-24 Thread [EMAIL PROTECTED]
I'll go upload a fix now, the current behavior doesn't make sense, since the SQL spec says that NULL != NULL, does anyone know if there are any dbs for which this isn't true? On Sep 19, 11:10 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Fri, Sep 19, 2008 at 10:51

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-23 Thread [EMAIL PROTECTED]
o developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-23 Thread [EMAIL PROTECTED]
posed to adding them as non-default options). In what case does someone need the extraneous writes in Django's save() impmlementation which can undo previous updates? jack. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-22 Thread [EMAIL PROTECTED]
jack. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL P

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-22 Thread [EMAIL PROTECTED]
is one down. jack. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more option

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-22 Thread [EMAIL PROTECTED]
roups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-22 Thread [EMAIL PROTECTED]
---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at ht

Re: Postgresql transaction aborts, despite being in autocommit mode

2008-09-21 Thread [EMAIL PROTECTED]
at you hide this means people aren't even aware of the problems. jack. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers

Re: incorrect field type for object_pk in contrib.comments?

2008-09-19 Thread [EMAIL PROTECTED]
models will be commentable. I'd agree it's probably not ideal, but I can't think of a better solution. On Sep 19, 12:50 pm, Ludvig Ericson <[EMAIL PROTECTED]> wrote: > On Sep 16, 2008, at 23:31, [EMAIL PROTECTED] wrote: > > > > > It's intentional, usually you see an objec

Re: RFC: django.template refactoring (#7806)

2008-09-17 Thread [EMAIL PROTECTED]
If I follow you are saying that it is lispy in that flow control statements and functions are handled just the same way(meaning you can define your own statements if you like)? On Sep 17, 8:02 pm, zvoase <[EMAIL PROTECTED]> wrote: > I don't know if anyone's noticed, but the templating

Re: incorrect field type for object_pk in contrib.comments?

2008-09-16 Thread [EMAIL PROTECTED]
It's intentional, usually you see an object_pk as an integer field, however that means it won't work with any field with a custom primary key, specifically those with string type pks. And a textfield offers the flexibility to work with all of those. On Sep 16, 3:42 pm, smcoll <[EMAIL PROTEC

Re: Inline formsets unique(_together) validation problems

2008-09-16 Thread [EMAIL PROTECTED]
I'll take a look at this, the reason the second part didn't go in originally(yeah, we thought of it), was that it was considered to be in a different scope then the rest of the work on unique validation. On Sep 16, 7:14 am, mrts <[EMAIL PROTECTED]> wrote: > A bug in 1.0 makes unique

Re: Recursive inlines in admin?

2008-09-15 Thread [EMAIL PROTECTED]
On Sep 11, 2:27 am, "Adrian Holovaty" <[EMAIL PROTECTED]> wrote: > On Thu, Sep 4, 2008 at 4:08 PM, Jeff Forcier <[EMAIL PROTECTED]> wrote: > > Second: if not possible, is it desirable? I recognize that with any > > nontrivial hierarchy/number of

BIG PUSSIES

2008-09-08 Thread [EMAIL PROTECTED]
send email to crrsexpage@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/crrsexpage?hl=en -~--~~~~--~~--~--~---

BIG PUSSIES

2008-09-08 Thread [EMAIL PROTECTED]
p. To post to~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit

mogileFS for django

2008-09-06 Thread [EMAIL PROTECTED]
to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Working on comments

2008-08-30 Thread [EMAIL PROTECTED]
On Aug 30, 1:40 am, "Bruce Kroeze" <[EMAIL PROTECTED]> wrote: > I'm mostly through with a drop-in replacement for the old comments, using > the new Comment system and signals.  It should be slick. > > When it tests out, I'll also commit the new save() parameters

500 error if django run in scgi mode(fcgi is ok)

2008-08-28 Thread [EMAIL PROTECTED]
~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this

Re: Exceptions documention - #6842

2008-08-27 Thread [EMAIL PROTECTED]
or in IRC. Thanks for your work On Aug 27, 9:54 pm, varikin <[EMAIL PROTECTED]> wrote: > Hi, > > I grabbed ticket #6842 and added a patch that has some documentation > for the exceptions Django raises since I needed some of this info:) > The file I added, exceptions.txt is no

Re: The last push to 1.0

2008-08-27 Thread [EMAIL PROTECTED]
"We're not in complete and total feature freeze. " I assume you mean the opposite of this. On Aug 27, 9:15 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > Hi folks -- > > Right, so this is it. > > We've got about a week until the scheduled release

Re: MultiDb status ?

2008-08-27 Thread [EMAIL PROTECTED]
That branch is totally dead, there is some external work attempting to add multi-db support, I don't know the status of it though. On Aug 27, 4:40 am, Romain Gaches <[EMAIL PROTECTED]> wrote: > Hi, > > Thinking about switching from a homemade framework to django, I

Re: request_started signal

2008-08-26 Thread [EMAIL PROTECTED]
a property of the print statement? Btw, I couldn't agree more on the importance of adhering to the letter and spirit of HTTP. The whole RESTful approach makes perfect sense to me. On Aug 26, 2:38 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Tue, Aug 26, 2008 at 8:05 AM, [EMAIL PRO

request_started signal

2008-08-26 Thread [EMAIL PROTECTED]
g that need to be weeded out or am I doing something wrong? Henrik I'm on: git-svn-id: http://code.djangoproject.com/svn/django/[EMAIL PROTECTED] bcc190cf-cafb-0310-a4f2-bffc1f526a37 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Status Post of Django-newcomments

2008-08-25 Thread [EMAIL PROTECTED]
django-newcomments is now in trunk. On Aug 25, 8:41 pm, Jonathan Nelson <[EMAIL PROTECTED]> wrote: > Any thoughts on when a beta is going to be released? > > On Aug 10, 8:50 pm, Thejaswi Puthraya <[EMAIL PROTECTED]> > wrote: > > > Hello, > > It's been

Re: Call for testing: new docs

2008-08-22 Thread [EMAIL PROTECTED]
Try this link instead: http://docs.djangoproject.com/en/dev/ On Aug 22, 12:21 pm, AmanKow <[EMAIL PROTECTED]> wrote: > I've tried several times yesterday and today to go to the new docs > link above, but unfortunately 404'ed every time. > Thanks, > Wayne > > On Aug 19

Re: Aggregation Final Report

2008-08-22 Thread [EMAIL PROTECTED]
I'd also just like to say thanks, it looks like a tremendous amount of work, and a big gain for the entire django community! On Aug 22, 7:03 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Fri, Aug 22, 2008 at 4:12 AM, Nicolas Lara <[EMAIL PROTECTED]> wrote

Re: Aggregation Final Report

2008-08-22 Thread [EMAIL PROTECTED]
Awesome! Simply, awesome! Thanks for all your hard work. I can't wait to see this in trunk! -Eric Florenzano On Aug 21, 1:12 pm, "Nicolas Lara" <[EMAIL PROTECTED]> wrote: > Hello, > > I am writing to let you know that I have posted the latest patches on > aggregat

Re: innodb with mysql

2008-08-22 Thread [EMAIL PROTECTED]
the time. Cheers, Holm On Aug 21, 10:17 pm, Eric Montgomery <[EMAIL PROTECTED]> wrote: > The reason I posted this here is that it seems like it might be a > problem with the way django generates the mysql. > From what I understand, problems with foreign-key constraints with >

Re: Call for testing: new docs

2008-08-20 Thread [EMAIL PROTECTED]
; group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Ticket 7947 - 1:1 field bug

2008-08-20 Thread [EMAIL PROTECTED]
roup, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Possible bug with full_clean in forms.py

2008-07-25 Thread [EMAIL PROTECTED]
On Jul 25, 3:59 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Fri, Jul 25, 2008 at 6:42 AM, [EMAIL PROTECTED] < > > > > [EMAIL PROTECTED]> wrote: > > > On Jul 24, 3:24 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > &

Re: Possible bug with full_clean in forms.py

2008-07-25 Thread [EMAIL PROTECTED]
On Jul 24, 3:24 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I think i stumbled over a bug. And i wanted to know if this a known > issue or not..a search here and in the bug db revealed nothing. > > Calling full_clean in forms.py with a ModelChoiceField resul

Re: Ordered ManyToMany

2008-07-24 Thread [EMAIL PROTECTED]
It sounds like what you are looking for is an intermediary model, this is ticket #6905 I believe, and is currently considered a django beta maybe-feature, which is to say if it's ready by beta, it's in 1.0 else it will be afterwords. On Jul 22, 6:38 am, Mathieu Richardoz <[EMAIL PROTEC

Re: Custom validation on models

2008-07-24 Thread [EMAIL PROTECTED]
Model validation is ticket #6845 , and is considered a 1.0 beta maybe- feature. I believe Honza's latest patch is just about complete, perhaps you could test it out, I believe it has docs. On Jul 22, 10:36 am, "Alex Rades" <[EMAIL PROTECTED]> wrote: > Hi, > sorry

Re: Solved: DNS for *.djangoproject.com broken

2008-07-22 Thread [EMAIL PROTECTED]
Oh, I thought it was just a bad joke about how the server would be getting a ton of load since the alpha was just released :/ On Jul 22, 3:55 pm, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > Ludvig Ericson wrote: > >> In general, expect DNS hiccups for a while; the whole worl

Re: Problems with concurrent DB access and get_or_create()

2008-07-16 Thread [EMAIL PROTECTED]
to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: newforms-admin Status Update

2008-07-15 Thread [EMAIL PROTECTED]
I'm almost positivie #7353 is no longer an issue. I was getting that error with oldforms-admin, and once upgrading to newforms-admin it was resolved. On Jul 16, 12:16 am, "Joseph Kocherhans" <[EMAIL PROTECTED]> wrote: > On Tue, Jul 15, 2008 at 11:50 PM, Brian Rosner <[E

Re: Choice of solutions for #7411

2008-07-14 Thread [EMAIL PROTECTED]
I think Jacob is correct, both choices result in the entire result set being read into memory, however #2 leaves the users code database agnostic. On Jul 14, 7:21 pm, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On Mon, Jul 14, 2008 at 7:13 PM, Malcolm Tredinnick &g

Re: Make clickable area of object links larger

2008-07-13 Thread [EMAIL PROTECTED]
On Jul 13, 12:56 pm, David Danier <[EMAIL PROTECTED]> wrote: > So making the whole field () clickable should really be enough, the > row itself (everything inside ) does not need to be clickable by > default. If I'm not mistaken, in NFA, you can create a custom subclass of ModelAd

Re: One more issue with file storage

2008-07-10 Thread [EMAIL PROTECTED]
with additional meta data separate from the raw "data". This was also influenced by the Amazon S3 API which was going to be implemented as an alternate strategy for this project. - Justin On Jun 13, 9:21 am, "Marty Alchin" <[EMAIL PROTECTED]> wrote: > On Fri, Jun 13, 20

Re: User admin list display contain "is_active"?

2008-07-10 Thread [EMAIL PROTECTED]
Both "sublass" and "dubclass" are supposed to be "subclass" up there, sorry. On Jul 10, 10:05 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > The admin site is currently being entirely redone, and in the new > system it will be very easy t

Re: Will oldforms completely go after 1.0?

2008-07-10 Thread [EMAIL PROTECTED]
I believe oldforms will be moved to oldforms and newforms will go in forms, but old forms won't be completely removed, someone let me know if I'm wrong. On Jul 10, 2:10 am, Julien Phalip <[EMAIL PROTECTED]> wrote: > Hi, > > I couldn't find a precise indication for that in t

Re: Reminder: "Must-have" feature freeze in two weeks

2008-07-09 Thread [EMAIL PROTECTED]
Ok, thanks Russell, Nicholas said he is going to be taking a look at it during the sprint, so I will try to talk with him then. On Jul 9, 6:40 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Thu, Jul 10, 2008 at 1:45 AM, [EMAIL PROTECTED] > > <[EMAIL PROT

Re: Reminder: "Must-have" feature freeze in two weeks

2008-07-09 Thread [EMAIL PROTECTED]
Russell, if you can post the feedback for #7210 either here, or on the ticket(or on IRC), I'd try to take a look at fixing it. On Jul 9, 7:40 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Tue, Jul 8, 2008 at 2:58 AM, Jacob Kaplan-Moss > > <[EMAIL PROTEC

Re: newforms-admin and urls (reverse/etc)

2008-07-08 Thread [EMAIL PROTECTED]
. Any assistance or ideas would(as always) be welcome. On Jul 8, 12:23 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > My suggestion is that we make AdminSite have an attr that is actually > a getter that dynamically generates a module like object that just has > a

Clarification on what is getting into v1 & Ticket 3148

2008-07-08 Thread [EMAIL PROTECTED]
e part of v1? thanx, -- Ben Scherrey --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from th

Re: newforms-admin and urls (reverse/etc)

2008-07-07 Thread [EMAIL PROTECTED]
together. If there is any interest in this at all I can put together a prototype. On Jul 7, 11:24 pm, Collin Grady <[EMAIL PROTECTED]> wrote: > I know it's kind of late to bring this up, but I haven't been using the > branch, > so it hasn't been at the front of my mind at all

fixture loading broken with django tagging

2008-07-07 Thread [EMAIL PROTECTED]
best regards, christian schilling --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group

Re: Correct URL paths and compromises (ticket #285)

2008-07-05 Thread [EMAIL PROTECTED]
, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sat, 2008-07-05 at 19:53 -0700, Ken Arnold wrote: > > On Jul 5, 9:51 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> > > wrote: > > > Solution #1 > > > === > > >         SITE_PREFIX=

Review of #6587

2008-07-05 Thread [EMAIL PROTECTED]
groups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Community representation, or, #django user "Magus-" needs to go far away

2008-07-01 Thread [EMAIL PROTECTED]
On Jun 25, 11:48 pm, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > Two things: > > > I don't know the background of whether Tom tried these things or not. > Again, I don't care to ague about it. Let's not make this happen again > in the future, OK? > &g

QuerySetPaginator object_list type check?

2008-06-28 Thread [EMAIL PROTECTED]
ceived this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: More secure user password reset

2008-06-27 Thread [EMAIL PROTECTED]
It sounds like what you are advocating is changing the password reset to work similar to the way activation works in James Bennett's django- registration, is that correct? On Jun 27, 4:01 pm, Luke Plant <[EMAIL PROTECTED]> wrote: > Hi all, > > Currently password reset is d

Re: Call for testing: streaming uploads (#2070)

2008-06-27 Thread [EMAIL PROTECTED]
Full test pass on Ubuntu Hardy Heron, with python 2.5, and sqlite3. I also did some general testing of uploading files, which were succesful, and I was able to observe large uploads going to my /tmp dir. On Jun 27, 4:41 am, David Reynolds <[EMAIL PROTECTED]> wrote: > Jacob, >

Re: RegexURLResolver.resolver can fall through and return None

2008-06-26 Thread [EMAIL PROTECTED]
To avoid spam detection sign up. On Jun 26, 3:06 pm, Andreas Klöckner <[EMAIL PROTECTED]> wrote: > Hey there, > > I tried to submit this bug, but it wouldn't let me--it thought I'm a spammer. > You should really work on that spam detection thing, it should not turn away

Re: Locations needed for 1.0 sprints.

2008-06-26 Thread [EMAIL PROTECTED]
Also, if anyone is going to PyOhio(July 26) perhaps we can get some work done there. On Jun 26, 10:41 am, Rob Hudson <[EMAIL PROTECTED]> wrote: > OSCON is July 21st to the 25th in Portland, OR.  It's not in a date > range listed but I'm curious if something could

Re: Community representation, or, #django user "Magus-" needs to go far away

2008-06-25 Thread [EMAIL PROTECTED]
ing people through the same 5 newbie stumbling blocks--he puts more volunteer hours in on IRC than most of us combined. It really comes down to cost/benefit of your dislike for his demeanor versus his assistance as a developer--I know my decision. -S On Jun 25, 5:21 pm, "Tom Tobin" <[EMAIL

Intended usage of dump/load data

2008-06-25 Thread [EMAIL PROTECTED]
o-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: more DDN Tickets

2008-06-25 Thread [EMAIL PROTECTED]
That one looks like it should have been #4148: http://code.djangoproject.com/ticket/4148 On Jun 25, 1:25 am, Collin Grady <[EMAIL PROTECTED]> wrote: > Jeff Anderson said the following: > > > #4118 > > Do you have the wrong # here? That ticket is closed: duplicate

Re: Introducing ModelView, a RESTful class-based view of your resources

2008-06-20 Thread [EMAIL PROTECTED]
:15 am, tifosi <[EMAIL PROTECTED]> wrote: > Hi David, > > Thank for your code and the repository, I use the django-rest-interface and > it's good news, that someone continue the job. > > I would like to get nested resources (e.g.: /articles/1/comments/ or > /user/user

Re: Race condition in ModelChoiceIterator (affects ModelChoiceField and ModelMultipleChoiceField)

2008-06-19 Thread [EMAIL PROTECTED]
It seems to me you can just do: if self.field.cache_choices: qs = self.queryset else: qs = self.queryset.all() for obj in qs: On Jun 19, 10:04 am, Jason Davies <[EMAIL PROTECTED]> wrote: > Hello, > > We have a reasonably high-traffic site, which started intermitte

Re: Experimental Git repository available

2008-06-19 Thread [EMAIL PROTECTED]
Is this only going to offer the trunk branch? On Jun 19, 11:39 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > Hi folks -- > > I've published an experimental Git clone of Django's SVN repository > (created with git-svn). If you're a Git user and want to use th

Re: List of DDN Tickets

2008-06-19 Thread [EMAIL PROTECTED]
. On Jun 19, 1:25 am, "Alexander Solovyov" <[EMAIL PROTECTED]> wrote: > On Thu, Jun 19, 2008 at 2:58 AM, Jeff Anderson <[EMAIL PROTECTED]> wrote: > > *http://code.djangoproject.com/ticket/4996- I don't know if it would be a > > good idea to make 'runserver'

Re: RFC: Django 1.0 roadmap and timeline

2008-06-16 Thread [EMAIL PROTECTED]
to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: RFC: Django 1.0 roadmap and timeline

2008-06-16 Thread [EMAIL PROTECTED]
. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For mo

Re: Translation tickets

2008-06-15 Thread [EMAIL PROTECTED]
com -- will be finished some day. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Community search [was: Django community aggregator and non-English posts]

2008-06-13 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: Community search [was: Django community aggregator and non-English posts]

2008-06-13 Thread [EMAIL PROTECTED]
Also for anyone interested, there's this: http://djangosearch.com/ I'm not sure who maintains it, but it seems up-to-date. On Jun 13, 10:19 am, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > On Fri, Jun 13, 2008 at 12:07 PM, Marty Alchin <[EMAIL PROTECTED]> wr

Re: Django community aggregator and non-English posts

2008-06-13 Thread [EMAIL PROTECTED]
: > On Fri, Jun 13, 2008 at 11:05 AM, Arien <[EMAIL PROTECTED]> wrote: > > > > On Fri, Jun 13, 2008 at 10:58 AM, Tom Tobin <[EMAIL PROTECTED]> wrote: > >> > >> The Django community aggregator includes non-English posts, which are > >> unfortunately

Re: RFC: Django 1.0 roadmap and timeline

2008-06-12 Thread [EMAIL PROTECTED]
won't be a problem at all :) jack. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL P

Re: RFC: Django 1.0 roadmap and timeline

2008-06-12 Thread [EMAIL PROTECTED]
--~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: RFC: Django 1.0 roadmap and timeline

2008-06-11 Thread [EMAIL PROTECTED]
---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~--~~~~--~~--~--~---

Re: RFC: Django 1.0 roadmap and timeline

2008-06-11 Thread [EMAIL PROTECTED]
because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-dev

Re: One more issue with file storage

2008-06-10 Thread [EMAIL PROTECTED]
, so take it with a grain of salt :) -Eric Florenzano On Jun 9, 12:11 pm, "Marty Alchin" <[EMAIL PROTECTED]> wrote: > Hey all, > > I've been fairly quiet on the file storage front for a while, since > it's basically done now, and is just waiting on the streaming upload

Re: About an UPDATE.txt file

2008-06-07 Thread [EMAIL PROTECTED]
I'd be +1 on this, the only downside is that whoever commits the patch will need to insert the correct revision at commit time. PS: http://www.pointy-stick.com/blog/2008/05/21/not-here-right-now/ On Jun 7, 7:46 pm, Marc Fargas <[EMAIL PROTECTED]> wrote: > Hi there, > Right n

  1   2   3   4   5   6   7   >