Changes between Version 1 and Version 2 of StringEncoding


Ignore:
Timestamp:
Apr 6, 2007, 4:36:33 AM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Fleshing out (will the image work?)

Legend:

Unmodified
Added
Removed
Modified
  • StringEncoding

    v1 v2  
    1010
    1111== The Big Picture ==
     12
     13attachment:django-18n.png
     14
     15Each arrow in this diagram shows an interface between the core Django framework (henceforth, ''Django'') and applications which interact with Django. The arrow heads show the direction of the string exchanges.
     16
     17For simplicity, I have written ''"Form Input"'' to represent any kind of data submitted to Django and, similarly, ''"Template output"'' to represent all of the possible data that Django can return to a client.
     18
     19In the following sections, we will go over each of these interfaces in turn. The goal here is to establish what features Django can control and how it should handle things outside its control. A good understanding of these interactions is necessary in order to establish consistent internal string handling behaviour.
    1220
    1321== HTTP Input Handling ==
Back to Top