| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-29 | Fixed #19897 - Updated static files howto. | Tim Graham | |
| Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing. | |||
| 2013-03-29 | Fixed #19582 - Added a static files tutorial. | Tim Graham | |
| Thanks James Pic. | |||
| 2013-03-29 | Fixed #15379 - Added "how to cite Django" to FAQ. | Tim Graham | |
| Thanks Russ and Susan Tan. | |||
| 2013-03-30 | Fixed #20150 -- Fixed an error in manager doc example | Nimesh Ghelani | |
| 2013-03-29 | Fixed #20160 -- Erronous reference to `module_name` in admin doc. | Baptiste Mispelon | |
| Ref #19689. | |||
| 2013-03-29 | Fixed #20159 -- Mispelled attribute in multi-db documentation example. | Simon Charette | |
| Thanks to sane4ka.sh at gmail for the report! | |||
| 2013-03-29 | Improved FormView docs in class-based views index. | Tim Graham | |
| Thanks Stefan Berder. | |||
| 2013-03-29 | Merge pull request #956 from maikhoepfel/master | Tim Graham | |
| Removed ambiguity regarding LANGUAGES setting | |||
| 2013-03-28 | Fixed #20146 -- Updated removed_tags example | ferhat elmas | |
| 2013-03-28 | Minor updates to 'How is Django Formed.' | Carl Meyer | |
| 2013-03-28 | Updated the release document after actually doing a release (!). | Jacob Kaplan-Moss | |
| 2013-03-28 | Added 1.5.1 release notes. | Jacob Kaplan-Moss | |
| 2013-03-28 | Fixed spelling errors | Gavin Wahl | |
| 2013-03-27 | Updated bios of committers | Richard Cornish | |
| 2013-03-26 | Fix a missing " character in the password documentation | Donald Stufft | |
| 2013-03-26 | Fixed #20138 -- Added BCryptSHA256PasswordHasher | Donald Stufft | |
| BCryptSHA256PasswordHasher pre-hashes the users password using SHA256 to prevent the 72 byte truncation inherient in the BCrypt algorithm. | |||
| 2013-03-25 | Fixed docs reST warning. | Ramiro Morales | |
| 2013-03-25 | Docs: Remove ambiguity. | Maik Hoepfel | |
| The docs to the LANGUAGES setting were using both the term language code and language name for the same thing. | |||
| 2013-03-24 | Merge pull request #951 from yohanboniface/set_signed_cookie | Tim Graham | |
| Fixed signature of HttpResponse.set_signed_cookie in docs. | |||
| 2013-03-24 | Fixed #20124 - Fixed doc warnings. | Tim Graham | |
| 2013-03-24 | Goodbye, Malcolm. | Aymeric Augustin | |
| 2013-03-24 | Doc: "value" is arg not kwarg in HttpResponse.set_signed_cookie | Yohan Boniface | |
| 2013-03-24 | Added changes missing from previous commit. | Aymeric Augustin | |
| Sorry. | |||
| 2013-03-24 | Fixed #15124 -- Changed the default for BooleanField. | Aymeric Augustin | |
| Thanks to the many contributors who updated and improved the patch over the life of this ticket. | |||
| 2013-03-24 | Added release notes for 4b31a6a9. | Aymeric Augustin | |
| Thanks Florian for reporting this omission. | |||
| 2013-03-23 | Merge pull request #941 from xakon/master | Tim Graham | |
| Small typo error in tutorial | |||
| 2013-03-23 | Fixed #20119 -- Fixed typo in auth docs | Claude Paroz | |
| Thanks vinyll for the report. | |||
| 2013-03-23 | Fixed #9055 -- Standardized behaviour of parameter escaping in db cursors | Claude Paroz | |
| Previously, depending on the database backend or the cursor type, you'd need to double the percent signs in the query before passing it to cursor.execute. Now cursor.execute consistently need percent doubling whenever params argument is not None (placeholder substitution will happen). Thanks Thomas Güttler for the report and Walter Doekes for his work on the patch. | |||
| 2013-03-23 | Merge pull request #942 from stephrdev/trac-18000 | Jannis Leidel | |
| Fixed #18000 -- Moved the code to handle goto requests to an extra WizardView method. | |||
| 2013-03-23 | Updated docs, changed versionchanged to versionadded. | Stephan Jaekel | |
| 2013-03-23 | Added some class attributes to pass initial form lists to the WizardView ↵ | Stephan Jaekel | |
| without the need to add them in the as_view call. | |||
| 2013-03-23 | Moved the code to handle goto requests in a extra WizardView method. | Stephan Jaekel | |
| 2013-03-23 | Fix minor typo in tutorial | Christos Kontas | |
| 2013-03-22 | Added missing markup to docs. | Tim Graham | |
| 2013-03-22 | Merge pull request #935 from tomviner/master | Tim Graham | |
| Docs template name typo | |||
| 2013-03-22 | Fixed #17935 - Clarified intro of topics/files.txt. | Tim Graham | |
| Thanks guettli for the suggestion. | |||
| 2013-03-21 | Docs template name mistake | Tom V | |
| change_list_request.html doesn't exist, it's named change_list_results.html | |||
| 2013-03-21 | Fixed #20084 -- Provided option to validate formset max_num on server. | Andrew Gorcester | |
| This is provided as a new "validate_max" formset_factory option defaulting to False, since the non-validating behavior of max_num is longstanding, and there is certainly code relying on it. (In fact, even the Django admin relies on it for the case where there are more existing inlines than the given max_num). It may be that at some point we want to deprecate validate_max=False and eventually remove the option, but this commit takes no steps in that direction. This also fixes the DoS-prevention absolute_max enforcement so that it causes a form validation error rather than an IndexError, and ensures that absolute_max is always 1000 more than max_num, to prevent surprising changes in behavior with max_num close to absolute_max. Lastly, this commit fixes the previous inconsistency between a regular formset and a model formset in the precedence of max_num and initial data. Previously in a regular formset, if the provided initial data was longer than max_num, it was truncated; in a model formset, all initial forms would be displayed regardless of max_num. Now regular formsets are the same as model formsets; all initial forms are displayed, even if more than max_num. (But if validate_max is True, submitting these forms will result in a "too many forms" validation error!) This combination of behaviors was chosen to keep the max_num validation simple and consistent, and avoid silent data loss due to truncation of initial data. Thanks to Preston for discussion of the design choices. | |||
| 2013-03-20 | Fixed #18839 - Field.__init__() now calls super(). | Carny Cheng | |
| 2013-03-20 | Fixed #20096 -- Added link to the Greek localflavor app | Claude Paroz | |
| 2013-03-19 | Fixed #16319 -- added SuccessMessageMixin to contrib.messages | Paul Collins | |
| Thanks martinogden for the initial patch and d1ffuz0r for tests. | |||
| 2013-03-18 | small documentation update to outline caveat with SESSION_COOKIE_DOMAIN | Ryan West | |
| 2013-03-18 | Added warn note to docs about MySQL issues with 0000-00-00 date strings | Juan Catalano | |
| MySQL accepts 0000-00-00 as a valid date but MySQLdb converts those values into None. So there will be problems for instance if trying to transport the data using dumpdata/loaddata. This patch refs #6642 that has been closed as wontfix since this is a particular problem of MySQL. | |||
| 2013-03-18 | Fixed #13260 -- Quoted arguments interpolated in URLs in reverse. | Aymeric Augustin | |
| 2013-03-18 | Update versions and links to source tarballs. | Justin Bronn | |
| 2013-03-18 | Fixed #19968 -- Dropped support for PostgreSQL < 8.4. | Aymeric Augustin | |
| 2013-03-18 | Fixed #17037 -- Added a --all option to diffsettings. | Aymeric Augustin | |
| 2013-03-17 | Minor docs fix for e11ccc76. | Aymeric Augustin | |
| 2013-03-17 | Two additions to the deployment checklist. | Aymeric Augustin | |
| Thanks Erik Romijn. | |||
| 2013-03-17 | Fixed #19697 -- Added a deployment checklist. | Aymeric Augustin | |
