Django

Code

Changeset 891

Show
Ignore:
Timestamp:
10/16/05 21:31:35 (3 years ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/design_philosophies.txt

    r863 r891  
    243243A view shouldn't care about which template system the developer uses -- or even 
    244244whether a template system is used at all. 
     245 
     246Designate between GET and POST 
     247------------------------------ 
     248 
     249GET and POST are distinct; developers should explicitly use one or the other. 
     250The framework should make it easy to distinguish between GET and POST data.