]> SALOME platform Git repositories - modules/shaper.git/blobdiff - doc/gui/build_index.py
Salome HOME
updated copyright message
[modules/shaper.git] / doc / gui / build_index.py
index c72cd7c95bd10e2b807bdcacf37f46501d46096c..0caf21e02b2196af5c2b216bc10bd42164520041 100755 (executable)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2020  CEA/DEN, EDF R&D
+# Copyright (C) 2014-2023  CEA, EDF
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -74,7 +74,9 @@ def main(src_dir, build_dir):
                 shutil.rmtree(dist_dir)
             shutil.copytree(lib_dir, dist_dir)
             ## Collect index file
-            indices.append(osp.join(plugin_name, plugin_name + '.rst'))
+            ## For Sphinks type of slash is important.
+            ## Even for Windows the slash direction has to be the same
+            indices.append(plugin_name + "/" + plugin_name + '.rst')
             ## Collect TUI scripts
             tui_files = sorted(f for f in os.listdir(lib_dir) if \
                                    osp.isfile(osp.join(lib_dir, f)) and re.match('TUI_.*\.rst', f))