Re: [Django] #27068: Acquire form's initial data more consistently

2016-08-18 Thread Django
#27068: Acquire form's initial data more consistently
---+-
 Reporter:  jdufresne  |Owner:  nobody
 Type:  Bug|   Status:  closed
Component:  Forms  |  Version:  master
 Severity:  Normal |   Resolution:  fixed
 Keywords: | Triage Stage:  Ready for checkin
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+-
Changes (by GitHub ):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"f5c6d3c8d9fa2158734858fa0a7ac917c384cb97" f5c6d3c8]:
 {{{
 #!CommitTicketReference repository=""
 revision="f5c6d3c8d9fa2158734858fa0a7ac917c384cb97"
 Fixed #27068 -- Unified form field initial data retrieval.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.76928751a758fcaf06565ad04fd4109d%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #27068: Acquire form's initial data more consistently

2016-08-18 Thread Django
#27068: Acquire form's initial data more consistently
---+-
 Reporter:  jdufresne  |Owner:  nobody
 Type:  Bug|   Status:  new
Component:  Forms  |  Version:  master
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Ready for checkin
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+-
Changes (by timgraham):

 * stage:  Accepted => Ready for checkin


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.f53a4aeb41bcc31d334627711de8a8ce%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #27068: Acquire form's initial data more consistently

2016-08-16 Thread Django
#27068: Acquire form's initial data more consistently
---+
 Reporter:  jdufresne  |Owner:  nobody
 Type:  Bug|   Status:  new
Component:  Forms  |  Version:  master
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Accepted
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+
Changes (by claudep):

 * stage:  Unreviewed => Accepted


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.ffae9a3613860410b6bbbff7fc1be65e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #27068: Acquire form's initial data more consistently

2016-08-15 Thread Django
#27068: Acquire form's initial data more consistently
---+--
 Reporter:  jdufresne  |Owner:  nobody
 Type:  Bug|   Status:  new
Component:  Forms  |  Version:  master
 Severity:  Normal |   Resolution:
 Keywords: | Triage Stage:  Unreviewed
Has patch:  1  |  Needs documentation:  0
  Needs tests:  0  |  Patch needs improvement:  0
Easy pickings:  0  |UI/UX:  0
---+--
Changes (by jdufresne):

 * has_patch:  0 => 1


Comment:

 [https://github.com/django/django/pull/7097 PR]

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.6d7abf71a33bfe5392f6d09356dfba7a%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #27068: Acquire form's initial data more consistently

2016-08-15 Thread Django
#27068: Acquire form's initial data more consistently
--+
   Reporter:  jdufresne   |  Owner:  nobody
   Type:  Bug | Status:  new
  Component:  Forms   |Version:  master
   Severity:  Normal  |   Keywords:
   Triage Stage:  Unreviewed  |  Has patch:  0
Needs documentation:  0   |Needs tests:  0
Patch needs improvement:  0   |  Easy pickings:  0
  UI/UX:  0   |
--+
 In `BoundField`, sometimes initial data
 
[https://github.com/django/django/blob/698be78d7438aade49d3cac5ea1f9de219d33e42/django/forms/boundfield.py#L222
 handles callables]. While other times,
 
[https://github.com/django/django/blob/698be78d7438aade49d3cac5ea1f9de219d33e42/django/forms/boundfield.py#L136
 it doesn't]. This can lead to a theoretical bug when the initial data is a
 callable, but the field is disabled.

 Other times, the initial callable is handled, but microseconds are
 
[https://github.com/django/django/blob/698be78d7438aade49d3cac5ea1f9de219d33e42/django/forms/forms.py#L435
 not chopped] leading to theoretical false positives that data has changed.

 Initial data should be handled more consistently across all cases.

 Marking as a bug due to the theoretical edge cases that can produce
 unexpected results. Noticed these inconsistencies while working on #27037.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.bf213327952ee734dce574e67f2ac627%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.