Has anyone else found that using prepopulated_fields in admin.ModelAdmin
since r14123 produces a javascript error: "d.join is not a function"?
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to django-devel
Hi Alex,
Patch is looking good, except few small things.
Wiki docs are also very good, but they are quite incomplete.
Replied to the ticket.
On Tue, Oct 26, 2010 at 11:23 PM, Alex Kamedov wrote:
> Can anybody rewiew the patch?
>
> On Wed, Oct 13, 2010 at 6:35 PM, Alex Kamedov wrote:
>>
>> Hi Al
nice to see the Django guys involved, and should absolutely be
google's #1 priority for app engine...
however, we should be able to access the native datastore entities (if
datastore is the base architecture for rel abstractions) for our own
performance tuning purposes.
and congrats to you Wesely
On Tue, Oct 26, 2010 at 9:31 PM, James Bennett wrote:
> On Tue, Oct 26, 2010 at 7:23 PM, Alex Gaynor wrote:
>> It depends what you mean by "MySQL" compatible. If by that you mean
>> that it's importable as mysqldb and implements the exact API it should
>> work out of the box, more or less. Howe
For what it's worth, here are some of the decisions that I made in the
serializer I linked to above.
- m2m values are serialized as comma separated values surrounded by
brackets, like Python lists: "[1, 2, 3]"
- The Python contstants True, False, and None are serialized as the
strings "True", "Fal
On Tue, Oct 26, 2010 at 7:23 PM, Alex Gaynor wrote:
> It depends what you mean by "MySQL" compatible. If by that you mean
> that it's importable as mysqldb and implements the exact API it should
> work out of the box, more or less. However, if by that you mean it
> implements PEP-249 you really
On Wed, Oct 27, 2010 at 3:57 AM, Richard Laager wrote:
> We have a CSV view (not a serializer) that is linked from every
> change_list page. This allows sufficiently privileged users to dump the
> database table into Excel to do things not covered by our existing
> views. We do not allow for a CSV
On Wed, Oct 27, 2010 at 6:56 AM, wesley chun wrote:
> Dear Django developers,
>
> I got in touch with Jacob who suggested I contact you all together. As
> you may (or may not) know, at Google I/O back in May, we announced a
> hosted cloud SQL service as a new feature for our App Engine
> applicati
On Tue, Oct 26, 2010 at 6:56 PM, wesley chun wrote:
> Dear Django developers,
>
> I got in touch with Jacob who suggested I contact you all together. As
> you may (or may not) know, at Google I/O back in May, we announced a
> hosted cloud SQL service as a new feature for our App Engine
> applicati
Dear Django developers,
I got in touch with Jacob who suggested I contact you all together. As
you may (or may not) know, at Google I/O back in May, we announced a
hosted cloud SQL service as a new feature for our App Engine
application cloud-hosting platform:
http://code.google.com/appengine/bus
On 27 October 2010 08:15, Simon Litchfield wrote:
> The ModelAdmin's permission hooks are great- has_add_permission,
> has_change_permission, and has_delete_permission.
>
> It would be nice if they were supported by inlines in the same way; ie
> InlineModelAdmin, StackedInline, TabularInline, Gen
The ModelAdmin's permission hooks are great- has_add_permission,
has_change_permission, and has_delete_permission.
It would be nice if they were supported by inlines in the same way; ie
InlineModelAdmin, StackedInline, TabularInline, GenericStackedInline,
GenericTabularInline.
UI is fairly obviou
We have a CSV view (not a serializer) that is linked from every
change_list page. This allows sufficiently privileged users to dump the
database table into Excel to do things not covered by our existing
views. We do not allow for a CSV import, but it's been something that
we've wanted.
We'd be ver
2010/6/30 Łukasz Rekucki :
> Hi,
>
> I was wondering if I could get some feedback on this ticket. It was
> recently briefly discussed here:
> http://groups.google.com/group/django-developers/browse_thread/thread/fb8a4a0eb4e1d35e.
> It has a patch with tests and probably not-so-good docs, but still
Can anybody rewiew the patch?
On Wed, Oct 13, 2010 at 6:35 PM, Alex Kamedov wrote:
> Hi All,
>
> I uploaded patch with tests and little improvements
>
> http://code.djangoproject.com/attachment/ticket/8054/8054-list-column.5.diff
> I think it ready for review.
>
> I really sorry, but I couldn't
On Oct 26, 8:05 am, Russell Keith-Magee
wrote:
> On Tue, Oct 26, 2010 at 12:01 PM, David Lindquist
>
> wrote:
> > I was wondering what the prospect was of getting a CSV serializer
> > added to Django. It seems like it would be useful for many use cases,
> > especially for bulk editing of object
On Tue, Oct 26, 2010 at 7:46 PM, Serkan Kenar wrote:
> Hello,
>
> I have created a new localflavor for Turkey and attached the sources
> and documentation to the ticket #14563 (http://code.djangoproject.com/
> ticket/14563). Is it possible that this new local flavor could be
> added to 1.3 release
On Tue, Oct 26, 2010 at 12:01 PM, David Lindquist
wrote:
> I was wondering what the prospect was of getting a CSV serializer
> added to Django. It seems like it would be useful for many use cases,
> especially for bulk editing of objects by non-technical users. We have
> this requirement where I w
> I've two modules called plan and income and both have a class called
> Income in their respective models. Now if I do user.income_set, it is
> accessing the income set under plan. How do I alter it to access
> income.income? Any ideas?
Please don't cross-post. Your question should go to django-u
Hello,
I have created a new localflavor for Turkey and attached the sources
and documentation to the ticket #14563 (http://code.djangoproject.com/
ticket/14563). Is it possible that this new local flavor could be
added to 1.3 release?
Best regards,
Serkan Kenar
--
You received this message bec
I've two modules called plan and income and both have a class called
Income in their respective models. Now if I do user.income_set, it is
accessing the income set under plan. How do I alter it to access
income.income? Any ideas?
Thanks in advance
--
You received this message because you are sub
I was wondering what the prospect was of getting a CSV serializer
added to Django. It seems like it would be useful for many use cases,
especially for bulk editing of objects by non-technical users. We have
this requirement where I work, so I wrote a CSV serializer:
http://djangosnippets.org/snippe
Hi,
requests with a QUERY_STRING are not cached up to now.
I uploaded a patch with tests and I think it is ready for commit:
http://code.djangoproject.com/ticket/4992
According to
http://docs.djangoproject.com/en/1.2/internals/contributing/#triage-by-the-general-community
I (general community
On Tuesday, 26 October 2010 at 01:24, Preston Timmons wrote:
Hi,Could one of the core devs take a look over #10899 and give
someguidance on what the best step to take next is? Thanks.I'm not a core dev,
but it looks like the patch is missing documentation an
24 matches
Mail list logo