# KERNEL optionals:
IF(SALOME_BUILD_DOC)
- FIND_PACKAGE(SalomePython)
+ FIND_PACKAGE(SalomePythonInterp REQUIRED)
+ FIND_PACKAGE(SalomePythonLibs REQUIRED)
FIND_PACKAGE(SalomeSphinx)
SALOME_LOG_OPTIONAL_PACKAGE(Sphinx SALOME_BUILD_DOC)
ENDIF()
# The theme to use for HTML and HTML Help pages. Major themes that come with
# Sphinx are currently 'default' and 'sphinxdoc'.
-html_theme = 'default'
+html_theme = '@SPHINX_THEME@'
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
</message>
<message>
<source>APP_VERSION</source>
- <translation>V7.8.0alpha</translation>
+ <translation>V7.8.0</translation>
</message>
<message>
<source>ABOUT_LICENSE</source>
</message>
<message>
<source>ABOUT_VERSION</source>
- <translation>Version 7.8.0alpha</translation>
+ <translation>Version 7.8.0</translation>
</message>
<message>
<source>ABOUT_TITLE</source>
</message>
<message>
<source>APP_VERSION</source>
- <translation>V7.8.0alpha</translation>
+ <translation>V7.8.0</translation>
</message>
<message>
<source>ABOUT_LICENSE</source>
</message>
<message>
<source>ABOUT_VERSION</source>
- <translation>Version 7.8.0alpha</translation>
+ <translation>Version 7.8.0</translation>
</message>
<message>
<source>ABOUT_TITLE</source>
</message>
<message>
<source>APP_VERSION</source>
- <translation>V7.8.0alpha</translation>
+ <translation>V7.8.0</translation>
</message>
<message>
<source>ABOUT_LICENSE</source>
</message>
<message>
<source>ABOUT_VERSION</source>
- <translation>Version 7.8.0alpha</translation>
+ <translation>Version 7.8.0</translation>
</message>
<message>
<source>ABOUT_TITLE</source>
pass
if currentScript and callPython:
- currentKey = " "+currentScript
+ currentKey = "python "+currentScript
scriptArgs.append(ScriptAndArgs(script=currentKey))
callPython = False
elif currentScript:
scriptArgs.append(ScriptAndArgs(script=currentKey))
callPython = False
elif not os.access(currentScript, os.X_OK):
- currentKey = " "+currentScript
+ currentKey = "python "+currentScript
scriptArgs.append(ScriptAndArgs(script=currentKey))
else:
ispython = False
except:
pass
if not ispython and currentScript[-3:] == ".py":
- currentKey = " "+currentScript
+ currentKey = "python "+currentScript
else:
currentKey = currentScript
pass