Re: Important info for translators (especially those with commit access)

2009-12-26 Thread Nicola Larosa (tekNico)
Russell Keith-Magee wrote: > I've just committed [12003], which reverted commit [12000]. Sorry, my bad: couldn't resist the nice rev number. ;-) > This mirrors commit [11941], which reverted [11881]. These commits all > relate to translation updates for the 1.0.X branch. > > Translations should

safe characters used in iri_to_uri (#12445)

2009-12-26 Thread Gary Wilson Jr.
http://code.djangoproject.com/ticket/12445 RFC 3986 [1] defines the following as "reserved" and "unreserved" characters: reserved= gen-delims / sub-delims gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" unrese

Possible bug with multi-db changes

2009-12-26 Thread Sean Brant
I just upgraded to the latest trunk today and the admin now throws an exception http://dpaste.com/138130/ when I try and save to a ImageField. I messed with it a bit to make sure that it was not something else in my code that could be causing the error. It looks like the error only occurs when I ha

Important info for translators (especially those with commit access)

2009-12-26 Thread Russell Keith-Magee
Hi all, I've just committed [12003], which reverted commit [12000]. This mirrors commit [11941], which reverted [11881]. These commits all relate to translation updates for the 1.0.X branch. Translations should *not* be backported to the 1.0.X branch. The 1.0.X branch is in security fix only mode

Re: Proposal for new field type: CompositeField

2009-12-26 Thread Michael P. Jung
I just implemented [1] the ComplexNumberField using the CompositeField class. It also shows that it is possible to change subfield attributes inside the __init__ method since the subfields are deep copied for every instance. I hope that the test cases are mostly complete. I plan on writing down th

Re: Proposal for new field type: CompositeField

2009-12-26 Thread Michael P. Jung
On 2009-12-26 05:17, Andy Mikhailenko wrote: > Maybe I'm missing something, but I don't understand how is this > different from having a bunch of separate fields. The CompositeField > adds a namespace, but foo.bar_x=1 seems to be no harder to read than > foo.bar.x=1. I must admit that this field