2a8212c774
Change-Id: Ib498405931fb5ea92118cf4c4d165b311f92097d
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
DOCUMENTATION_DEPS = {
|
|
"install-quick.txt": ["config-login-register.txt"],
|
|
"install.txt": ["database-setup.txt"],
|
|
}
|
|
|
|
def documentation_attributes(revision):
|
|
return [
|
|
'toc',
|
|
'newline="\\n"',
|
|
'asterisk="*"',
|
|
'plus="+"',
|
|
'caret="^"',
|
|
'startsb="["',
|
|
'endsb="]"',
|
|
'tilde="~"',
|
|
'last-update-label!',
|
|
'source-highlighter=prettify',
|
|
'stylesheet=doc.css',
|
|
'revnumber="%s"' % revision,
|
|
]
|