Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ endif
MAKEINFOHTML = $(MAKEINFO) --html --no-split

info_TEXINFOS = ssip.texi speech-dispatcher.texi spd-say.texi speech-dispatcher-cs.texi
EXTRA_DIST = figures
EXTRA_DIST = figures pydoc.css

speech_dispatcher_TEXINFOS = gpl.texi fdl.texi speech-dispatcher.texi
speech_dispatcher_cs_TEXINFOS = gpl.texi fdl.texi speech-dispatcher-cs.texi
ssip_TEXINFOS = gpl.texi fdl.texi

speechd.client.html: $(top_srcdir)/src/api/python/speechd/client.py
PYTHONPATH=$(top_builddir)/src/api/python pydoc3 -w speechd.client
sed -i -e 's_</title>_</title><style>$(shell cat pydoc.css)</style>_' $@

CLEANFILES = spd-say.info \
speech-dispatcher-cs.info \
Expand Down
112 changes: 112 additions & 0 deletions doc/pydoc.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
/*
CSS file for pydoc.

Contents of this file are subject to change without notice.

*/

body {
background-color: #f0f0f8;
}

table.heading tr {
background-color: #7799ee;
}

.decor {
color: #ffffff;
}

.title-decor {
background-color: #ffc8d8;
color: #000000;
}

.pkg-content-decor {
background-color: #aa55cc;
}

.index-decor {
background-color: #ee77aa;
}

.functions-decor {
background-color: #eeaa77;
}

.data-decor {
background-color: #55aa55;
}

.author-decor {
background-color: #7799ee;
}

.credits-decor {
background-color: #7799ee;
}

.error-decor {
background-color: #bb0000;
}

.grey {
color: #909090;
}

.white {
color: #ffffff;
}

.repr {
color: #c040c0;
}

table.heading tr td.title {
vertical-align: bottom;
}

table.heading tr td.extra {
vertical-align: bottom;
text-align: right;
}

.heading-text {
font-family: helvetica, arial;
}

.bigsection {
font-size: larger;
}

.title {
font-size: x-large;
}

.code {
font-family: monospace;
}

table {
width: 100%;
border-spacing : 0;
border-collapse : collapse;
border: 0;
}

td {
padding: 2;
}

td.section-title {
vertical-align: bottom;
}

td.multicolumn {
width: 25%;
vertical-align: bottom;
}

td.singlecolumn {
width: 100%;
}
2 changes: 1 addition & 1 deletion doc/speechd.client.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Python: module speechd.client</title>
<title>Python: module speechd.client</title><style>/* CSS file for pydoc. Contents of this file are subject to change without notice. */ body { background-color: #f0f0f8; } table.heading tr { background-color: #7799ee; } .decor { color: #ffffff; } .title-decor { background-color: #ffc8d8; color: #000000; } .pkg-content-decor { background-color: #aa55cc; } .index-decor { background-color: #ee77aa; } .functions-decor { background-color: #eeaa77; } .data-decor { background-color: #55aa55; } .author-decor { background-color: #7799ee; } .credits-decor { background-color: #7799ee; } .error-decor { background-color: #bb0000; } .grey { color: #909090; } .white { color: #ffffff; } .repr { color: #c040c0; } table.heading tr td.title { vertical-align: bottom; } table.heading tr td.extra { vertical-align: bottom; text-align: right; } .heading-text { font-family: helvetica, arial; } .bigsection { font-size: larger; } .title { font-size: x-large; } .code { font-family: monospace; } table { width: 100%; border-spacing : 0; border-collapse : collapse; border: 0; } td { padding: 2; } td.section-title { vertical-align: bottom; } td.multicolumn { width: 25%; vertical-align: bottom; } td.singlecolumn { width: 100%; }</style>
</head><body>

<table class="heading">
Expand Down
Loading