summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-19Fixed #18608 -- Reduced monkey-patching in tests.Aymeric Augustin
Thanks Claude Paroz for the patch.
2012-07-18Fixed #18479 -- Stopped makemessages raising error on gettext warningsClaude Paroz
Thanks Niels Busch for the initial patch.
2012-07-18Fix typo in staticfiles app documentationAndy Dirnberger
In the documentation for the `static` template tag, a `::` was used prior to a `code-block`. Doing so caused the `code-block` line to render as code. Changing the `::` to `:` corrects the display.
2012-07-18BaseCache now has a no-op close method as per ticket #18582Mike Grouchy
Also removed the hasattr check when firing request_finished signal for caches with a 'close' method. Should be safe to call `cache.close` everywhere now
2012-07-18Moved myself to primary authors in AUTHORS.Florian Apolloner
2012-07-18Update my bio.Alex Gaynor
2012-07-18Fixed #18645 -- Clarified filesizeformat implementationAymeric Augustin
Thanks Jérôme Renard for the patch.
2012-07-18Updated my bio.Jannis Leidel
2012-07-18Added myself to internals/committers.txt.Florian Apolloner
2012-07-17Fixed #18547 -- Improved error message when gettext is missingClaude Paroz
2012-07-17Fixed #18561 -- Made HttpResponse.tell() support non-ascii charsClaude Paroz
2012-07-17Merge pull request #215 from mgrouchy/add-interpreter-optionsAlex Gaynor
Adds interpreter option to shell command as per ticket #18639
2012-07-17Adds interpreter option to shell command as per ticket #18639Mike Grouchy
Specify python interpreter interface ipython or bpython with the -i, --interface options argument. ex// python manage.py shell -i bpython ex// python manage.py shell --interface bpython Like all other options, defaults to default python interpreter when your selected choice isn't available. updated documentation where appropriate
2012-07-17Fixed #18644 -- Made urlize trim trailing period followed by parenthesisVebjorn Ljosa
2012-07-17Switched to use a more idiomatic construct.Alex Gaynor
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
The qs.bulk_create() method did not work with large batches together with SQLite3. This commit adds a way to split the bulk into smaller batches. The default batch size is unlimited except for SQLite3 where the batch size is limited to 999 SQL parameters per batch. Thanks to everybody who participated in the discussions at Trac.
2012-07-17Fixed #17497 -- Corrected FieldError message in add_fields()Anssi Kääriäinen
The erroneous message was user visible in values_list() calls. Thanks to ojii for report and review, and to antoviaque for the patch.
2012-07-16Fixed #3881 -- skip saving session when response status is 500Anssi Kääriäinen
Saving session data is somewhat likely to lead into error when the status code is 500. It is guaranteed to lead into error if the reason for the 500 code is query error on PostgreSQL.
2012-07-16Fixed #18056 - Cleared aggregations on DateQuery.add_date_selectNuno Maltez
Cleared aggregations on add_date_select method so only distinct dates are returned when dealing with a QuerySet that contained aggregations. That would cause the query set to return repeated dates because it would look for distinct (date kind, aggregation) pairs.
2012-07-15Changed myapps.models.py to myapps/models.pyDaniel Greenfeld
2012-07-15Added mention in MRO section about method/attribute inheritence. Added ↵Daniel Greenfeld
simple examples to Generic editing views, added index to Generic editing views and Editing mixins, added missing template_name_suffix attribute to Generic editing views.
2012-07-15Removed debugging line left in previous commitClaude Paroz
2012-07-15Dropped support for GDAL < 1.5Claude Paroz
GDAL 1.5 has been released in December 2007.
2012-07-15Avoid using a column named "date" in testsAnssi Kääriäinen
Oracle can have problems with such columns. Fixed #17932 again. Thanks to Vinay Sajip for the report.
2012-07-15Fixed #18626 -- rst syntax collision.Aymeric Augustin
2012-07-15Fixed #18625 -- Removed old-style use of url tagAymeric Augustin
from the documentation.
2012-07-14Remove DotExpandedDict, which was undocumented and unused.Alex Gaynor
2012-07-14Fix an incredibly emberassing typo.Alex Gaynor
2012-07-14Deprecate two methods (which I seriously doubt anyone ever used, but they ↵Alex Gaynor
were documented so...) because they cannot be implemented efficiently on top of collections.SortedDict in Python 2.7 and up.
2012-07-14Switched from usign a method that was about to be deprecated to normal code.Alex Gaynor
2012-07-14Fixed auth to not use an internal implementation detail of SortedDictAlex Gaynor
2012-07-14Cleaned up the QueryDict implementation.Alex Gaynor
- Use super(). - Don't poke at internals. - Don't override methods for no reason.
2012-07-14Update links to diveintomark.org.Aymeric Augustin
These pages are gone.
2012-07-14Fixed a misplaced Sphinx reference.Aymeric Augustin
2012-07-13Updated links for MacOSX python installersClaude Paroz
2012-07-13Fixed #18601 -- Specified that Python minimum version is 2.6.5Preston Holmes
This is due to a bug in previous Python 2.6 versions related to unicode keyword arguments.
2012-07-12Fixed #18617 -- Highlighted that the app_directories template loader depends ↵Aymeric Augustin
on the order of INSTALLED_APPS. Thanks evildmp for the patch.
2012-07-12Removed old gis install instructions for obsolete distrosClaude Paroz
2012-07-12Remove some code that has been dead since newforms-admin was merged, many ↵Alex Gaynor
moons ago.
2012-07-11Merge pull request #197 from StefanKjartansson/masterAdrian Holovaty
Fixed typo in docs
2012-07-11Merge pull request #199 from mitnk/masterAdrian Holovaty
Fixed a typo in the timezones document.
2012-07-11fixed a typo in timezones docs.mitnk
2012-07-10Changed `manage.py shell`'s help text to reflect that it can invoke bpython.Alex Gaynor
2012-07-10typo in "django/docs/topics/python3.txt"Stefan Kjartansson
2012-07-10Fixed #18602 -- Improved error message when database NAME is missingClaude Paroz
Thanks Kristian Glass for the report.
2012-07-09Added supplementary check for CUIT number of ar localflavorClaude Paroz
Thanks Kevin Schaul for the initial patch.
2012-07-09Fixed #18537 -- Fixed CUIT calculation in ar localflavorClaude Paroz
Thanks mmoya at 8ksoft.com.ar for the report and Kevin Shaul for the initial patch.
2012-07-08Fixed #18577 - Clarified middleware initialization.Tim Graham
Thanks Lukasz Balcerzak for the patch.
2012-07-08Fixed #18173 - Corrected ModelAdmin documentation for get_changelist.Tim Graham
Thanks Keryn Knight for the report and vanessagomes for the patch.
2012-07-08Fixed #18590 - Reverted Python 2.4 workaround for Model picklingClaude Paroz
Revert of 08d521efa0. Refs #10547, #12121. Thanks Michal Petrucha for the report.