Changeset 5456
- Timestamp:
- 06/09/07 23:02:29 (2 years ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/views/debug.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r5455 r5456 74 74 Ian Clelland <clelland@gmail.com> 75 75 crankycoder@gmail.com 76 Pete Crosier <pete.crosier@gmail.com> 76 77 Matt Croydon <http://www.postneo.com/> 77 78 flavio.curella@gmail.com django/trunk/django/views/debug.py
r5051 r5456 3 3 from django.utils.html import escape 4 4 from django.http import HttpResponseServerError, HttpResponseNotFound 5 import os, re 5 import os, re, sys 6 6 7 7 HIDDEN_SETTINGS = re.compile('SECRET|PASSWORD|PROFANITIES_LIST') … … 132 132 'request_protocol': request.is_secure() and "https" or "http", 133 133 'settings': get_safe_settings(), 134 'sys_executable' : sys.executable, 135 'sys_version_info' : '%d.%d.%d' % sys.version_info[0:3], 134 136 'template_info': template_info, 135 137 'template_does_not_exist': template_does_not_exist, … … 335 337 <td>{{ lastframe.filename|escape }} in {{ lastframe.function|escape }}, line {{ lastframe.lineno }}</td> 336 338 </tr> 339 <tr> 340 <th>Python Executable:</th> 341 <td>{{ sys_executable|escape }}</td> 342 </tr> 343 <tr> 344 <th>Python Version:</th> 345 <td>{{ sys_version_info }}</td> 346 </tr> 337 347 </table> 338 348 </div>
