public
Description: Python logging console for Firebug
Homepage: http://firepython.binaryage.com
Clone URL: git://github.com/darwin/firepython.git
firepython / __init__.py
d101a943 » oxyum 2008-11-26 rework python part to be re... 1 # -*- mode: python; coding: utf-8 -*-
2 #
2a88d717 » darwin 2009-03-15 renamed readme and fixed so... 3 # FireLogger server-side support library for Python
79555fb7 » darwin 2008-11-13 initial alpha version, let'... 4 #
2a88d717 » darwin 2009-03-15 renamed readme and fixed so... 5 # for usage see readme.md or http://github.com/darwin/firepython
79555fb7 » darwin 2008-11-13 initial alpha version, let'... 6 #
7
c8e50a70 » darwin 2009-03-15 changes for FireLogger tran... 8 import re
9
13554921 » darwin 2009-06-27 version bump to 0.5 (no cha... 10 __version__ = '0.5'
c8e50a70 » darwin 2009-03-15 changes for FireLogger tran... 11
12 FIRELOGGER_VERSION_HEADER = 'HTTP_X_FIRELOGGER'
13 FIRELOGGER_AUTH_HEADER = 'HTTP_X_FIRELOGGERAUTH'
2d5eab9f » Brett Slatkin 2009-03-26 Added Python profiling for ... 14 FIRELOGGER_PROFILER_ENABLED = 'HTTP_X_FIRELOGGERPROFILER'
c8e50a70 » darwin 2009-03-15 changes for FireLogger tran... 15 FIRELOGGER_RESPONSE_HEADER = re.compile(r'^FireLogger', re.IGNORECASE)
16
17 DEEP_LOCALS = True
18 RAZOR_MODE = False
8dd1fca0 » darwin 2009-03-15 much better performance, fi... Comment 19 JSONPICKLE_DEPTH = 16