Ticket #2315: bug2315_docs.diff

File bug2315_docs.diff, 1.3 KB (added by Marc Fargas <telenieko@…>, 17 years ago)

Docs for this ticket, see comments below.

  • django/conf/project_template/settings.py

     
    1818
    1919# Local time zone for this installation. All choices can be found here:
    2020# http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
     21# Windows users: Make sure you set your system's timezone unless you want to get into trouble.
    2122TIME_ZONE = 'America/Chicago'
    2223
    2324# Language code for this installation. All choices can be found here:
  • docs/settings.txt

     
    822822environment variable, and it'll be up to you to ensure your processes are
    823823running in the correct environment.
    824824
     825Note to Windows Users: If you are running Django on a Windows box make sure that
     826you set this variable to the timezone of your computer unless you want to get in
     827trouble, you can read more about that in this `bug report (#2315)`_
     828
     829.. _bug report (#2315): http://code.djangoproject.com/ticket/2315
     830
    825831URL_VALIDATOR_USER_AGENT
    826832------------------------
    827833
Back to Top