We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcf0f1 commit 7fd9a1dCopy full SHA for 7fd9a1d
roundup/scripts/roundup_server.py
@@ -17,7 +17,7 @@
17
18
"""Command-line script that runs a server over roundup.cgi.client.
19
20
-$Id: roundup_server.py,v 1.41 2004-04-05 00:51:45 richard Exp $
+$Id: roundup_server.py,v 1.42 2004-04-05 00:54:23 richard Exp $
21
"""
22
__docformat__ = 'restructuredtext'
23
@@ -63,6 +63,8 @@
63
## end configuration
64
#
65
66
+# "default" favicon.ico
67
+# generate by using "icotool" and tools/base64
68
import zlib, base64
69
favico = zlib.decompress(base64.decodestring('''
70
eJztjr1PmlEUh59XgVoshdYPWorFIhaRFq0t9pNq37b60lYSTRzcTFw6GAfj5gDYaF0dTB0MxMSE
tools/base64
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env python
2
+import zlib, base64, sys
3
+print base64.encodestring(zlib.compress(sys.stdin.read()))
0 commit comments