- 18 Eki, 2013 3 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
Alasdair Nicol yazdı
-
Alasdair Nicol yazdı
-
- 17 Eki, 2013 13 kayıt (commit)
-
-
Tim Graham yazdı
This changed was reverted in 5d74853e.
-
Kathryn Killebrew yazdı
-
Tim Graham yazdı
Unnecessary since introduction of DiscoveryTestRunner in 9012833a.
-
Claude Paroz yazdı
Thanks wildfire for the report.
-
Claude Paroz yazdı
Thanks Raphaël Barrois for the report and the initial patch and Aymeric Augustin for the review.
-
Loic Bistuer yazdı
This commit also lays the groundwork for future tests for the makemigrations command.
-
Anssi Kääriäinen yazdı
The method didn't change standard __deepcopy__ in any way.
-
Bouke Haarsma yazdı
Thanks Aymeric Augustin for the suggestion.
-
Alex Gaynor yazdı
-
Javed Khan yazdı
-
Alex Gaynor yazdı
-
Alex Gaynor yazdı
Fixed #21270 -- Fixed E701 pep8 warnings
-
Alasdair Nicol yazdı
-
- 16 Eki, 2013 6 kayıt (commit)
-
-
Claude Paroz yazdı
-
Claude Paroz yazdı
Thanks Manel Clos for the report and the initial patch, and Marc Tamlyn and Tim Graham for the review.
-
Tim Graham yazdı
refs #18866.
-
Bouke Haarsma yazdı
Thanks SamBull for the report.
-
Andrew Godwin yazdı
-
Andrew Godwin yazdı
-
- 15 Eki, 2013 14 kayıt (commit)
-
-
Alex Gaynor yazdı
Fixed #7261 -- support for __html__ for library interoperability
-
Tim Graham yazdı
Fixed DeprecationWarning caused by assertEquals.
-
Loic Bistuer yazdı
-
Claude Paroz yazdı
Refs #6730.
-
Marc Tamlyn yazdı
select_related('foo').select_related('bar') is now equivalent to select_related('foo', 'bar'). Also reworded docs to recommend select_related(*fields) over select_related()
-
Claude Paroz yazdı
-
Ryan Allen yazdı
refs #21220.
-
Daniele Procida yazdı
Improvement on InlineFormSet doc, refs #21006
-
Tianyi Wang yazdı
-
Claude Paroz yazdı
When both parent and child classes are decorated with override_settings, child class settings should take precedence. Thanks Sephi for the report and Marc Tamlyn for the review.
-
Unai Zalakain yazdı
`HttpRequest.scheme` is `https` if `settings.SECURE_PROXY_SSL_HEADER` is appropriately set and falls back to `HttpRequest._get_scheme()` (a hook for subclasses to implement) otherwise. `WSGIRequest._get_scheme()` makes use of the `wsgi.url_scheme` WSGI environ variable to determine the request scheme. `HttpRequest.is_secure()` simply checks if `HttpRequest.scheme` is `https`. This provides a way to check the current scheme in templates, for example. It also allows us to deal with other schemes. Thanks nslater for the suggestion.
-
Tianyi Wang yazdı
Thanks treysta at gmail.com for the suggestion.
-
Marc Tamlyn yazdı
Fixed #19617 -- Refactored form metaclasses to support more inheritance scenarios.
-
Florian Apolloner yazdı
-
- 14 Eki, 2013 4 kayıt (commit)
-
-
Tim Graham yazdı
Previously admindocs would throw an error when processing it: "Error in "default-role" directive: no content permitted." refs #6681
-
Unai Zalakain yazdı
The idea is that if an object implements __html__ which returns a string this is used as HTML representation (eg: on escaping). If the object is a str or unicode subclass and returns itself the object is a safe string type. This is an updated patch based on jbalogh and ivank patches.
-
Sorcha Bowler yazdı
Thanks ebertti at yahoo.com.br for the suggestion.
-
Larry O'Neill yazdı
-