summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-29Fixed #15379 - Added "how to cite Django" to FAQ.Tim Graham
Thanks Russ and Susan Tan.
2013-03-29Merge pull request #977 from nims11/ticket_20150Tim Graham
Fixed #20150 -- Fixed an error in manager doc example
2013-03-29Fixed setup.py overlaid-install warning.Carl Meyer
Before this change, if you had a global Django installation in /usr/local/, you might get a spurious warning when installing Django within a virtualenv. Thanks epicserve for the report and debugging help.
2013-03-30Fixed #20150 -- Fixed an error in manager doc exampleNimesh Ghelani
2013-03-29Fixed #20160 -- Erronous reference to `module_name` in admin doc.Baptiste Mispelon
Ref #19689.
2013-03-29Fixed #20159 -- Mispelled attribute in multi-db documentation example.Simon Charette
Thanks to sane4ka.sh at gmail for the report!
2013-03-29Fixed #14540 -- Added Porto-Rico specific formatsClaude Paroz
Thanks rosarior for the report and the file proposal.
2013-03-29Merge pull request #975 from bmispelon/ticket-20158Claude Paroz
Fix #20158: invalid code in queryset_pickle test models.
2013-03-29Fix #20158: invalid code in queryset_pickle test models.Baptiste Mispelon
2013-03-29Improved FormView docs in class-based views index.Tim Graham
Thanks Stefan Berder.
2013-03-29Merge pull request #956 from maikhoepfel/masterTim Graham
Removed ambiguity regarding LANGUAGES setting
2013-03-28Fixed #20146 -- Updated removed_tags exampleferhat elmas
2013-03-28Minor updates to 'How is Django Formed.'Carl Meyer
2013-03-28Updated the release document after actually doing a release (!).Jacob Kaplan-Moss
2013-03-28Added 1.5.1 release notes.Jacob Kaplan-Moss
2013-03-28Fixed #19954 -- Fixed MySQL _last_executed decodingClaude Paroz
Queries can contain binary data undecodable with utf-8. In this case, using the 'replace' errors mode when decoding seems like an acceptable representation of the query. Thanks Marcel Ryser for the report.
2013-03-28Merge pull request #972 from fusionbox/spellingAlex Gaynor
Fixed spelling errors
2013-03-28Fixed spelling errorsGavin Wahl
2013-03-28Merge pull request #971 from fusionbox/consistant_typoJacob Kaplan-Moss
Fixed spelling of "consistent" in admin/options.py
2013-03-28Fixed spelling of "consistent" in admin/options.pyRocky Meza
2013-03-28Updated translation templatesClaude Paroz
2013-03-28Added Burmese languageClaude Paroz
Thanks to Yhal Htet Aung for the translation work.
2013-03-28Added Ossetic languageClaude Paroz
Thanks to Xwybylty Soslan for the translation work.
2013-03-28Replaced escaped by real characters in LANG_INFO structureClaude Paroz
2013-03-28Updated translations from TransifexClaude Paroz
Polish, Telugu, Georgian, Azerbaijani, Norwegian Bokmål, Basque, Dutch, Thai, Spanish (Argentina), Afrikaans.
2013-03-27Correctly restore warning capture after logging tests.Jacob Kaplan-Moss
This is a fix to the wrong behavior that 15c3906eeb introduced.
2013-03-27Fixed #20016: worked around Jython not having a buffer.Andreas
2013-03-27Merge pull request #968 from jacobian/fix-warning-log-regressionJacob Kaplan-Moss
Fixed logging-related test failure introduced by e79b857.
2013-03-27Fixed logging-related test failure introduced by e79b857.Jacob Kaplan-Moss
2013-03-27Merge pull request #967 from jacobian/ticket/20078-admin-user-password-filteringJacob Kaplan-Moss
Fixed #20078: don't allow filtering on password in the user admin.
2013-03-27Fixed #20078: don't allow filtering on password in the user admin.Jacob Kaplan-Moss
2013-03-27Merge remote-tracking branch 'ptone/18985-fix'Jacob Kaplan-Moss
2013-03-27Updated bios of committersRichard Cornish
2013-03-26Added regression test for custom SQL containing percentsClaude Paroz
Refs #3485.
2013-03-26Fix a missing " character in the password documentationDonald Stufft
2013-03-26Merge pull request #958 from dstufft/prehash-bcryptDonald Stufft
Fixed #20138 -- Added BCryptSHA256PasswordHasher
2013-03-26Add Donald Stufft to the AUTHORS fileDonald Stufft
2013-03-26Fixed #20138 -- Added BCryptSHA256PasswordHasherDonald Stufft
BCryptSHA256PasswordHasher pre-hashes the users password using SHA256 to prevent the 72 byte truncation inherient in the BCrypt algorithm.
2013-03-26Fixed #20091 -- Oracle null promotion for empty stringsAnssi Kääriäinen
2013-03-25Fixed #20121 -- Removed LogEntry.get_admin_url's hard-coded path.Adam Wentz
Updated LogEntry.get_admin_url to use 'reverse' instead of a hard-coded path.
2013-03-25Fixed docs reST warning.Ramiro Morales
2013-03-25Removed forced typecasting of help_text/label Field argumentsClaude Paroz
In any case, setting those variables to non-ascii utf-8 bytestrings is now considered a programming error.
2013-03-25Docs: 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-25Moved removeChildren to core.jsAndrew Jesaitis
The function removeChildren is a general utility that other functions might want to use. Fixes #4120. Thanks arvin for the initial patch.
2013-03-25Moved cancelEventPropagation into core.jsAndrew Jesaitis
The cancelEventPropagation function is a general utility function that can be reused by other widgets. Refs #4120.
2013-03-25Removed quickElement from calendar.jsAndrew Jesaitis
The function quickElement in calendar.js is a duplicate of the quickElement function in core.js. Refs #4120.
2013-03-24Fixed #18985 -- ensure module level deprecations are displayedPreston Holmes
Also don't compete with -W CLI option. Thanks to Aymeric Augustin for the catch, and Claude Paroz for the patch.
2013-03-24Merge pull request #946 from matiasb/minor-flatpage-translation-fixSimon Charette
Fixed #20117 -- Added missing translation override to fix flatpages test.
2013-03-24Fixed Oracle specific failures in multicolumn joinsAnssi Kääriäinen
Refs #19385
2013-03-24Merge pull request #885 from loic/ticket19541Jannis Leidel
Fixed #19541 -- Fixed BaseHandler to enable reversing URLs in response middlewares...