Tim Graham
dcb1b971c2
[1.7.x] Fixed #23015 -- Fixed major/minor release terminology in docs.
...
Backport of dd6ef3197a
from master
2014-07-14 06:18:42 -04:00
Tim Graham
0b2a36ecf7
[1.7.x] Fixed #18108 -- Added instructions for translating documentation.
...
Thanks Claude Paroz.
Backport of 1a3bec4a26
from master
2014-07-02 13:22:14 -04:00
Tim Graham
910b37e356
[1.7.x] Fixed #22818 -- Clarified you need to cd into the Django clone.
...
Thanks Josh Parris.
Backport of bcc3d2b978
from master
2014-06-12 10:53:29 -04:00
Tim Graham
af06203cea
[1.7.x] Updated some docs for the delayed deprecation of legacy table creation; refs #22340 .
...
Backport of a2e3c96948
from master
2014-05-07 09:04:21 -04:00
Tim Graham
10327be1f3
[1.7.x] Bump DatabaseCreation deprecation to 2.0 (refs #22340 )
...
Backport of 61da5f3f02
from master
2014-05-07 08:16:01 -04:00
Aymeric Augustin
3bb0f118ca
[1.7.x] Fixed #3214 -- Stopped parsing SQL with regex.
...
Avoided introducing a new regex-based SQL splitter in the migrations
framework, before we're bound by backwards compatibility.
Adapted this change to the legacy "initial SQL data" feature, even
though it's already deprecated, in order to facilitate the transition
to migrations.
sqlparse becomes mandatory for RunSQL on some databases (all but
PostgreSQL). There's no API to provide a single statement and tell
Django not to attempt splitting. Since we have a more robust splitting
implementation, that seems like a good tradeoff. It's easier to add a
new keyword argument later if necessary than to remove one.
Many people contributed to both tickets, thank you all, and especially
Claude for the review.
Refs #22401 .
Backport of 8b5b199
from master
2014-04-26 17:46:57 +02:00
Claude Paroz
1a3cde5f9f
[1.7.x] Renamed Transifex project from django-core to django
...
See also http://blog.transifex.com/post/83622601443/new-teams-management-transifex
Backport of 7c24027ba
from master.
2014-04-24 11:51:53 +02:00
Marti Raudsepp
ba1728dd9b
[1.7.x] Various documentation typo/spelling fixes
...
Errors detected by Topy (https://github.com/intgr/topy ), all changes
verified by hand.
Backport of 11d453bcad
from master
2014-04-22 20:10:58 -04:00
Tim Graham
22cbaea9c7
[1.7.x] Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.
...
Thanks Karen Tracey for the report.
Backport of a4acb80463
from master
2014-04-17 20:37:25 -04:00
Jordi Yeh
fcbcdf72d6
[1.7.x] Fixed #22457 -- Fixed contributing guide w/o github set-up
...
The published commnand was not working when the user did not have
the git client set-up with the public-key. Changed the contributing
guide to clone it from https instead.
Backport of 2810299117
from master.
2014-04-16 09:42:48 -04:00
Andrew Godwin
1cb6729f58
[1.7.x] Add some syncdb deprecation stuff into the deprecation doc
...
Backport of 378359de1c
from master
2014-03-25 20:02:07 -04:00
Aymeric Augustin
60d2213d43
[1.7.x] Small doc changes missed in 66076268
.
...
Partial backport of 253e8ac2
from master.
2014-03-21 22:09:57 +01:00
Anubhav Joshi
0399523cf1
Fixed #22253 -- Added django-i18n to the mailing lists docs.
...
Thanks bmispelon for the suggestion.
2014-03-19 07:22:01 -04:00
Anubhav Joshi
abade6413b
Fixed #21991 -- Added warning regarding tests failure if locales not installed.
...
Thanks reidrac for the report.
2014-03-16 14:34:18 -04:00
Shai Berger
05daaf2eea
Added myself to the committers list, finally.
2014-03-10 22:28:01 +02:00
Erik Romijn
daaf6cf9a4
Added myself to the committers list.
2014-03-10 17:25:47 +01:00
Shai Berger
41afae4ce9
Reorganized the database test settings
...
Change database test settings from "TEST_"-prefixed entries in the
database settings dictionary to setting in a dictionary that is itself
an entry "TEST" in the database settings.
Refs #21775
Thanks Josh Smeaton for review.
2014-03-09 03:57:18 +02:00
Claude Paroz
210d0489c5
Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings
...
Thanks Anssi Kääriäinen for the idea and Simon Charette for the
review.
2014-03-08 09:57:40 +01:00
Szczepan Cieślik
a0f2525202
Fixed #22141 -- Added a spelling checker for documentation.
2014-03-07 09:29:23 -05:00
Rodolfo Carvalho
2b6436e2d5
Fixed some typos and formatting issues in docs.
2014-03-03 08:37:17 -05:00
Erik Romijn
775975f15d
Fixed #22130 -- Deprecated fix_ampersands, removed utils.clean_html()
2014-03-01 14:07:57 +01:00
Tim Graham
1f5f015c32
Fixed spelling mistakes in docs.
2014-02-28 21:03:46 -05:00
Tim Graham
7f2505ad9e
Fixed doc typos.
2014-02-28 11:44:03 -05:00
Szczepan Cieślik
e816198034
Fixed docs typos.
2014-02-25 10:28:32 -05:00
Martin Matusiak
d399731bf2
Fixed #22007 -- Fixed cbv docs - make imports consistent
...
Thanks to trac user kinjal.dixit for the report.
2014-02-22 14:39:09 +01:00
Baptiste Mispelon
926e18d7d1
Deprecated django.utils.text.javascript_quote.
...
Refs #21725 .
2014-02-22 13:50:12 +01:00
Zbigniew Siciarz
74d4d58b62
Fixed #21939 -- Deprecated loading ssi/url tags from future.
2014-02-16 13:25:21 +01:00
Berker Peksag
5d263dee30
Fixed #21674 -- Deprecated the import_by_path() function in favor of import_string().
...
Thanks Aymeric Augustin for the suggestion and review.
2014-02-08 11:12:19 -05:00
Tim Graham
d4a5019bef
Reordered deprecation timeline and added back old info; refs #21920 .
2014-02-03 08:32:32 -05:00
Aymeric Augustin
9ffab9cee1
Moved RequestSite and get_current_site.
...
Following the app-loading refactor, these objects must live outside of
django.contrib.sites.models because they must be available without
importing the django.contrib.sites.models module when
django.contrib.sites isn't installed.
Refs #21680 . Thanks Carl and Loic for reporting this issue.
2014-01-26 08:50:47 +01:00
James Turley
4d8209431d
Fixed #21824 -- Added reference to LTS in docs/internals/security.txt
2014-01-24 08:13:17 -05:00
Marc Tamlyn
d7aa0bd802
We should branch after the first beta.
...
We did this for 1.6 and it was very effective. 95%+ of fixes which merge
during the alpha are backported, as the policy is "all but really major
features". It's easier to just not merge any really major features.
After beta, we have feature freeze so we need to backport bugs to stable
but not features, so then the branch makes sense.
2014-01-23 20:07:14 +00:00
Russell Keith-Magee
d818e0c9b2
Fixed #16905 -- Added extensible checks (nee validation) framework
...
This is the result of Christopher Medrela's 2013 Summer of Code project.
Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian
Apolloner, and Alex Gaynor for review notes along the way.
Also: Fixes #8579 , fixes #3055 , fixes #19844 .
2014-01-20 10:45:21 +08:00
Adrian Holovaty
660b7e7000
Removed BDFL stuff from docs/internals/contributing/bugs-and-features.txt
2014-01-13 10:32:09 -06:00
Adrian Holovaty
4f25d97404
Removed BDFLs section from docs/internals/committers.txt
2014-01-13 10:31:30 -06:00
Adrian Holovaty
132c26649c
Negligible change to my bio in docs/internals/committers.txt
2014-01-13 10:30:46 -06:00
Claude Paroz
0179852d7f
Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeField
...
Thanks Tim Graham for the review.
2014-01-11 15:50:34 +01:00
Aymeric Augustin
3326a412cc
Deprecated importing a model before loading its application.
...
Refs #21719 , #21680 .
2014-01-10 23:43:10 +01:00
Aymeric Augustin
756a6accdb
Updated my bio.
2014-01-02 23:14:54 +01:00
Tim Graham
9953e98e6a
Fixed #21701 -- Improved testing doc titles and added testing/tools.txt.
...
Thanks cjerdonek for the suggestion.
2013-12-31 08:14:09 -05:00
Aymeric Augustin
00110904ac
Refactored the migration signals to use app configs.
...
De-aliased pre/post_syncdb to pre/post_migrate to increase
backwards-compatibility.
2013-12-29 17:53:42 +01:00
Aymeric Augustin
bb8ec71f61
Updated the AppCommand API to support apps without a models module.
2013-12-28 09:42:59 +01:00
Yaroslav Halchenko
80027d2c38
Unified listing of shell commands/code
...
- use code-block:: bash
- prefix the command with $
2013-12-25 15:19:14 -05:00
Aymeric Augustin
9b8192ce51
Updated a few doc paragraphs following the app-loading refactor.
2013-12-24 17:20:11 +01:00
Aymeric Augustin
1716b7ce5a
Renamed AppCache to Apps.
...
Also renamed app_cache to apps and "app cache" to "app registry".
Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
2013-12-24 12:25:17 +01:00
Baptiste Mispelon
f1b3ab9c21
Fixed #11629 -- Deprecated callable arguments to queryset methods.
...
Callable arguments were an untested and undocumented feature.
2013-12-18 18:40:00 +01:00
Aymeric Augustin
259cd3cd41
Deprecated get_app_package, get_app_path and get_app_paths.
2013-12-17 10:17:45 +01:00
Aymeric Augustin
860c2c8bc5
Moved django.db.models.loading to django.apps.cache.
...
This commit doesn't contain any code changes; it's purely a refactoring.
2013-12-17 10:17:43 +01:00
Bouke Haarsma
bed52afee7
Removed usage of to-be-deprecated ADMIN_FOR setting in contributing docs
2013-12-14 16:49:25 +01:00
Simon Charette
c047dda057
Removed an erroneous leading slash introduced by a626bdf648a.
2013-12-08 13:18:53 -05:00