File tree Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Original file line number Diff line number Diff line change 1- API Documentation for repoze.atemplate
2- ======================================
1+ XML-RPC API Documentation
2+ =========================
33
4- Interfaces
5- ----------
4+ .. automodule :: supervisor.rpcinterface
65
7- Document interfaces here. You may want to use the ``.. autointerface:: ``
8- directive provided by :mod: `repoze.sphinx.autointerface `, in which case
9- you will need to add it to the extensions in `conf.py `.
6+ Status and Control
7+ ------------------
108
11- Exceptions
12- ----------
9+ .. autoclass :: SupervisorNamespaceRPCInterface
1310
14- Document any custom exceptions here.
11+ .. automethod :: getAPIVersion
12+
13+ .. automethod :: getSupervisorVersion
Original file line number Diff line number Diff line change 1919# make it absolute, like shown here.
2020#sys.path.append(os.path.abspath('some/directory'))
2121
22+ parent = os .path .dirname (os .path .dirname (__file__ ))
23+ sys .path .append (os .path .join (os .path .abspath (parent ), 'src' ))
24+ wd = os .getcwd ()
25+ os .chdir (parent )
26+ os .system ('%s setup.py test -q' % sys .executable )
27+ os .chdir (wd )
28+
29+ for item in os .listdir (parent ):
30+ if item .endswith ('.egg' ):
31+ sys .path .append (os .path .join (parent , item ))
32+
2233# General configuration
2334# ---------------------
2435
You can’t perform that action at this time.
0 commit comments