Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[straydog@saskatoon testcase]$ ls -Rl
.:
total 8
-rw-r--r-- 1 straydog users  247 Dec 28 23:09 cherrypy_config
drwxr-xr-x 2 straydog users 4096 Dec 28 23:10 problem

./problem:
total 4
-rw-r--r-- 1 straydog users 128 Dec 28 23:10 __init__.py
[straydog@saskatoon testcase]$ cat cherrypy_config 
[global]
tree.problem = cherrypy.Application(problem.Problem())
server.socket_host = '0.0.0.0'
server.socket_port = 8090
tools.encode.encoding = 'utf-8'
tools.encode.on = True 
log.error_file = "/tmp/cp_errors.log"

[/]
tools.sessions.on = False

[straydog@saskatoon testcase]$ cat problem/__init__.py 
#!/usr/bin/python2
# -*- coding: utf-8 -*-

import cherrypy

class Problem(object):
    def __init__(self):
        print self

[straydog@saskatoon testcase]$ cherryd -c cherrypy_config 
<problem.Problem object at 0xa37da2c>
[28/Dec/2011:23:11:17] ENGINE Mounted: cherrypy._cptree.Application(<problem.Problem object at 0xa37da2c>, '') on /
<problem.Problem object at 0xa37df4c>
[28/Dec/2011:23:11:17] ENGINE Listening for SIGHUP.
[28/Dec/2011:23:11:17] ENGINE Listening for SIGTERM.
[28/Dec/2011:23:11:17] ENGINE Listening for SIGUSR1.
[28/Dec/2011:23:11:17] ENGINE Bus STARTING
[28/Dec/2011:23:11:17] ENGINE Started monitor thread '_TimeoutMonitor'.
[28/Dec/2011:23:11:17] ENGINE Started monitor thread 'Autoreloader'.
[28/Dec/2011:23:11:18] ENGINE Serving on 0.0.0.0:8090
[28/Dec/2011:23:11:18] ENGINE Bus STARTED
^C[28/Dec/2011:23:11:21] ENGINE Keyboard Interrupt: shutting down bus
[28/Dec/2011:23:11:21] ENGINE Bus STOPPING
[28/Dec/2011:23:11:21] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 8090)) shut down
[28/Dec/2011:23:11:21] ENGINE Stopped thread 'Autoreloader'.
[28/Dec/2011:23:11:21] ENGINE Stopped thread '_TimeoutMonitor'.
[28/Dec/2011:23:11:21] ENGINE Bus STOPPED
[28/Dec/2011:23:11:21] ENGINE Bus EXITING
[28/Dec/2011:23:11:21] ENGINE Bus EXITED
[28/Dec/2011:23:11:21] ENGINE Waiting for child threads to terminate...
[straydog@saskatoon testcase]$