<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/docs/ref/forms/widgets.txt, branch 1.6.8</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.6.8</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.6.8'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2014-05-16T21:43:10Z</updated>
<entry>
<title>[1.6.x] Fixed case in form widgets docs</title>
<updated>2014-05-16T21:43:10Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2014-04-05T14:26:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ba40d6509aac626763e534f555d50be895b53e75'/>
<id>urn:sha1:ba40d6509aac626763e534f555d50be895b53e75</id>
<content type='text'>
Backport of 9494f29d from master
</content>
</entry>
<entry>
<title>[1.6.x] Don't show `self` in the list of arguments of a method.</title>
<updated>2014-01-22T21:59:55Z</updated>
<author>
<name>Baptiste Mispelon</name>
<email>bmispelon@gmail.com</email>
</author>
<published>2014-01-22T21:17:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=6bca149af5b8e2d6fb6fe19bdb53904f07248033'/>
<id>urn:sha1:6bca149af5b8e2d6fb6fe19bdb53904f07248033</id>
<content type='text'>
This is consistent with Python's official documentation
and it's a sphinx recommendation too[1].

[1] http://sphinx-doc.org/markup/desc.html#dir-method

Refs #21855.

Backport of 79e1d6ebd70898d514a44b85648e3d24104c4243 from master.
</content>
</entry>
<entry>
<title>[1.6.x] Misc doc cleanups.</title>
<updated>2013-07-29T11:06:29Z</updated>
<author>
<name>minusf</name>
<email>minusf@gmail.com</email>
</author>
<published>2013-07-28T10:58:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=518faa19c1f9212cbbbfaca6ef605fd02acd3abb'/>
<id>urn:sha1:518faa19c1f9212cbbbfaca6ef605fd02acd3abb</id>
<content type='text'>
Backport of 70c080fcdb from master
</content>
</entry>
<entry>
<title>[1.6.x] Fixed #19695 -- Retitle "Form Media" to "Form Assets".</title>
<updated>2013-07-08T18:09:02Z</updated>
<author>
<name>James Bennett</name>
<email>james@b-list.org</email>
</author>
<published>2013-06-20T06:51:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b2afe396635e2de5b3a917a61350cd96fbde9ab7'/>
<id>urn:sha1:b2afe396635e2de5b3a917a61350cd96fbde9ab7</id>
<content type='text'>
Backport of c0f03175ce from master
</content>
</entry>
<entry>
<title>Fixed #20567 - Documented BoundField.id_for_label.</title>
<updated>2013-06-09T16:13:43Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2013-06-06T18:15:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=175a102ddceae2ebd1a4e03916a23adafc35bda5'/>
<id>urn:sha1:175a102ddceae2ebd1a4e03916a23adafc35bda5</id>
<content type='text'>
Thanks littlepig for the suggestion.
</content>
</entry>
<entry>
<title>add missing imports to the examples in the 'Forms'</title>
<updated>2013-05-19T11:31:45Z</updated>
<author>
<name>leandrafinger</name>
<email>leandra.finger@gmail.com</email>
</author>
<published>2013-05-19T09:15:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=08b501e7d314e9c45dd51d3ba27b2ecb0287df3b'/>
<id>urn:sha1:08b501e7d314e9c45dd51d3ba27b2ecb0287df3b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Adapted uses of versionchanged/versionadded to the new form.</title>
<updated>2013-04-20T15:18:35Z</updated>
<author>
<name>Juan Catalano</name>
<email>jc@streema.com</email>
</author>
<published>2013-03-25T05:53:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=78c842a3230f026ad678d243e5459cd6b314d99a'/>
<id>urn:sha1:78c842a3230f026ad678d243e5459cd6b314d99a</id>
<content type='text'>
Refs #20104.
</content>
</entry>
<entry>
<title>Fixed #4592: Made CheckboxSelectMultiple more like RadioSelect</title>
<updated>2013-04-13T14:37:27Z</updated>
<author>
<name>Baptiste Mispelon</name>
<email>bmispelon@gmail.com</email>
</author>
<published>2013-04-13T00:02:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9ac4dbd7b53d187ca54f28e247d3a120660938ca'/>
<id>urn:sha1:9ac4dbd7b53d187ca54f28e247d3a120660938ca</id>
<content type='text'>
I refactored RadioSelect and CheckboxSelectMultiple to
make them inherit from a base class, allowing them to share
the behavior of being able to iterate over their subwidgets.

Thanks to Matt McClanahan for the initial patch and to
Claude Paroz for the review.
</content>
</entry>
<entry>
<title>Fixed #4117: Apply id attribute to the outer &lt;ul&gt; of RadioSelect</title>
<updated>2013-04-13T10:23:25Z</updated>
<author>
<name>Baptiste Mispelon</name>
<email>bmispelon@gmail.com</email>
</author>
<published>2013-04-12T21:22:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=c4186c2fec6f5418c81366a911792bf5295db494'/>
<id>urn:sha1:c4186c2fec6f5418c81366a911792bf5295db494</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #19874: Apply id attribute to the outer &lt;ul&gt; of CheckboxSelectMultiple</title>
<updated>2013-04-13T09:09:47Z</updated>
<author>
<name>Baptiste Mispelon</name>
<email>bmispelon@gmail.com</email>
</author>
<published>2013-04-07T08:37:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=844fbc85c1d419ed7ecbb7208bd392c1770ea72d'/>
<id>urn:sha1:844fbc85c1d419ed7ecbb7208bd392c1770ea72d</id>
<content type='text'>
</content>
</entry>
</feed>
