summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-04Added multi-column indexes to the 1.5 release notes.Alex Gaynor
2012-11-04Merge pull request #494 from mrj0/model_splitAlex Gaynor
model_split: Fixed #19236 - fixed error for abstract models with a split method
2012-11-04use six.string_types for python3Mike Johnson
2012-11-04Remove some bizzare and unnecesary code.Alex Gaynor
2012-11-04model_split: Fixed #19236 - fixed error for abstract models with a split methodMike Johnson
2012-11-04Added a note and link to CLA from contributing docsPreston Holmes
2012-11-04Merge pull request #493 from edavis/fix-get-foo-display-docsAlex Gaynor
Fixed formatting of get_FOO_display example
2012-11-04Fixed formatting of get_FOO_display exampleEric Davis
2012-11-04Fixed #5805 -- it is now possible to specify multi-column indexes. Thanks to ↵Alex Gaynor
jgelens for the original patch.
2012-11-04Fixed #19090 - Added PostgreSQL connection note.Tim Graham
Thanks Melevir for the patch.
2012-11-03Fixed #6234 -- Removed obsolete note about json and ensure_asciiClaude Paroz
Thanks aaron at cellmap.ca for the report.
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
for Python 2 object model compatibility methods.
2012-11-03Fixed #15152 -- Avoided crash of CommonMiddleware on broken querystringAymeric Augustin
2012-11-03Fixed #18210 -- Escaped special characters in reverse prefixes.Gabriel Hurley
Ensured that special characters passed in to reverse via the prefix argument are properly escaped so that calls to django.utils.regex_helpers.normalize and/or string formatting operations don't result in exceptions. Thanks to toofishes for the error report.
2012-11-03Prevented host resolution when running dev serverClaude Paroz
Refs #19075, #2494. Thanks Karen Tracey for spotting the issue.
2012-11-03Fixed #19230 -- Extended the handler403 documentation.Markus Zapke-Gründemann
Added a paragraph on how to use the PermissionDenied exception to create a 403 response and use handler403.
2012-11-03Fixed #19101 -- Decoding of non-ASCII POST data on Python 3.Aymeric Augustin
Thanks Claude Paroz.
2012-11-03Fixed #17549 -- Added a clickable link for URLFields in admin change list.Ulrich Petri
2012-11-03Fixed #16841 - Documented a couple ModelAdmin methodsTim Graham
* ModelAdmin.get_changelist_form and get_changelist_formset * InlineModelAdmin.get_formset Thanks Jordan Reiter for the report.
2012-11-02Deprecated depth kwarg on select_related.Preston Holmes
This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855
2012-11-02Merge pull request #485 from asparagui/add_periodPreston Holmes
Added missing period in docs
2012-11-02Fixed #19120 - Added an example of using ModelAdmin methods for read-only ↵Tim Graham
fields. Thanks Daniele Procida for the patch.
2012-11-02Fixed #19167 - Added a warning regarding module-level database queriesTim Graham
Thanks Daniele Procida for the patch.
2012-11-02Cleaned up contrib.admin install instructions.Tim Graham
Thanks Cal Leeming for the patch.
2012-11-02Fixed #15361 - Documented performance considerations for QuerySet.get()Tim Graham
Thanks mmcnickle for the patch.
2012-11-02Fixed a regression in gis introduced by Query.select_fields removalAnssi Kääriäinen
2012-11-02Documented minimal python 3.2 version.Florian Apolloner
2012-11-02Fixed #19225 -- Typo in shortcuts docs.Aymeric Augustin
Thanks SunPowered for the report.
2012-11-01Added WizardView.file_storage exception message and docsTim Graham
Thanks Danilo Bargen for the patch.
2012-11-01Fixed #16678 -- Wrote tests for contrib.redirects appClaude Paroz
Thanks Julien Phalip for the report.
2012-11-01Fixed #19179 - Added mention of NamedUrlSessionWizard and ↵Tim Graham
NamedUrlCookieWizard; thanks Tom for the report.
2012-10-31Fixed #19216 - Switched to user level installation in apps tutorial.Tim Graham
Thanks Nick Coghlan for the suggestion.
2012-10-31minor fix (+'.' to end of line)Brett Koonce
2012-10-31Add `form` to formwizard context (includes tests)Kent Hauser
2012-10-31Fixed #19070 -- urlize filter no longer raises exceptions on 2.7Andrew Godwin
Thanks to claudep for the patch.
2012-10-31Fixed #17083 -- Allowed sessions to use non-default cache.Aymeric Augustin
2012-10-31Removed dupe_avoidance from sql/query and sql/compiler.pyAnssi Kääriäinen
The dupe avoidance logic was removed as it doesn't seem to do anything, it is complicated, and it has nearly zero documentation. The removal of dupe_avoidance allowed for refactoring of both the implementation and signature of Query.join(). This refactoring cascades again to some other parts. The most significant of them is the changes in qs.combine(), and compiler.select_related_descent().
2012-10-30Merge pull request #481 from epicserve/testing_docs_updatePreston Holmes
Added timeout local to selenium sample test The timeout variable wasn't defined, which was a little confusing.
2012-10-30The timeout variable wasn't defined, which was a little confusing.Brent O'Connor
2012-10-30Fixed #16671 - Added a tutorial on reuseable appsTim Graham
Thank-you Katie Miller and Ben Sturmfels for the initial draft, as well as Russ and Carl for the reviews.
2012-10-30Fixed #19174 -- Fixed capitalization errors in LANG_INFOClaude Paroz
Thanks waldeinburg for the report.
2012-10-30Prevented file_upload tests to leave files behindClaude Paroz
Refs #19206.
2012-10-30Fixed #17744 -- Reset default file storage with setting_changed signalClaude Paroz
2012-10-30Added release notes for 1.6.Aymeric Augustin
Since 1.5 is feature-frozen, we need them to document new features.
2012-10-30Fixed #15714 -- Added note about capitalization of LANG_INFO name_localClaude Paroz
2012-10-30Fixed #5076 -- Properly decode POSTs with non-utf-8 payload encodingClaude Paroz
Thanks daniel at blogg.se for the report and Aymeric Augustin for his assistance on the patch.
2012-10-29Fixed #17869 - force logout when REMOTE_USER header disappearsPreston Holmes
If the current sessions user was logged in via a remote user backend log out the user if REMOTE_USER header not available - otherwise leave it to other auth middleware to install the AnonymousUser. Thanks to Sylvain Bouchard for the initial patch and ticket maintenance.
2012-10-29Fixed #19057 (again) -- added additional testsPreston Holmes
2012-10-30Added some test guards for some recently added auth tests.Russell Keith-Magee
Refs #19061, #19057.
2012-10-29Fixed #19209 -- Documented |date:"I".Aymeric Augustin
Thanks mitar for the report.