| OLD | NEW |
| 1 # Django settings for django_gae2django project. | 1 # Django settings for django_gae2django project. |
| 2 | 2 |
| 3 # NOTE: Keep the settings.py in examples directories in sync with this one! | 3 # NOTE: Keep the settings.py in examples directories in sync with this one! |
| 4 | 4 |
| 5 import os | 5 import os |
| 6 | 6 |
| 7 DEBUG = True | 7 DEBUG = True |
| 8 TEMPLATE_DEBUG = DEBUG | 8 TEMPLATE_DEBUG = DEBUG |
| 9 | 9 |
| 10 ADMINS = ( | 10 ADMINS = ( |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 AUTH_PROFILE_MODULE = 'codereview.Account' | 99 AUTH_PROFILE_MODULE = 'codereview.Account' |
| 100 LOGIN_REDIRECT_URL = '/' | 100 LOGIN_REDIRECT_URL = '/' |
| 101 # | 101 # |
| 102 # This won't work with gae2django. | 102 # This won't work with gae2django. |
| 103 RIETVELD_INCOMING_MAIL_ADDRESS = None | 103 RIETVELD_INCOMING_MAIL_ADDRESS = None |
| 104 | 104 |
| 105 RIETVELD_REVISION = '' | 105 RIETVELD_REVISION = '' |
| 106 | 106 |
| 107 UPLOAD_PY_SOURCE = os.path.join(os.path.dirname(__file__), 'upload.py') | 107 UPLOAD_PY_SOURCE = os.path.join(os.path.dirname(__file__), 'upload.py') |
| 108 |
| 109 # Default values for patch rendering |
| 110 DEFAULT_CONTEXT = 10 |
| 111 DEFAULT_COLUMN_WIDTH = 80 |
| 112 MIN_COLUMN_WIDTH = 3 |
| 113 MAX_COLUMN_WIDTH = 2000 |
| OLD | NEW |