From b9736c5c633fe0bd2e1aeda2b9e0a99257175e33 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 17 Oct 2005 02:31:35 +0000 Subject: [PATCH] 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 --- docs/design_philosophies.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/design_philosophies.txt b/docs/design_philosophies.txt index 2084c992a5..2988672f02 100644 --- a/docs/design_philosophies.txt +++ b/docs/design_philosophies.txt @@ -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.