Added 'Designate between GET and POST' section to design_philosophies.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@891 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-17 02:31:35 +00:00
parent e8fda9091a
commit b9736c5c63
1 changed files with 6 additions and 0 deletions

View File

@ -242,3 +242,9 @@ Loose coupling
A view shouldn't care about which template system the developer uses -- or even
whether a template system is used at all.
Designate between GET and POST
------------------------------
GET and POST are distinct; developers should explicitly use one or the other.
The framework should make it easy to distinguish between GET and POST data.