Salome HOME
Provide automatic building of help documentation located in plug-ins
[modules/shaper.git] / doc / gui / build_index.py
1 ## Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 ##
3 ## This library is free software; you can redistribute it and/or
4 ## modify it under the terms of the GNU Lesser General Public
5 ## License as published by the Free Software Foundation; either
6 ## version 2.1 of the License, or (at your option) any later version.
7 ##
8 ## This library is distributed in the hope that it will be useful,
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 ## Lesser General Public License for more details.
12 ##
13 ## You should have received a copy of the GNU Lesser General Public
14 ## License along with this library; if not, write to the Free Software
15 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 ##
17 ## See http:##www.salome-platform.org/ or
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 ##
20
21 ###
22 ## The script collects information about help documents in plugins
23 ## and prepares building of help documentation by sphinx
24 ###
25
26 import os
27 import sys
28 import shutil
29 from xml.dom.minidom import parse
30
31 aBuildDir = sys.argv[1]
32 aSourcesDir = sys.argv[2]
33 aSrcPath = aSourcesDir + os.sep + "../../src"
34
35 aConfigPath = aSrcPath + os.sep + "Config/plugins.xml.in"
36
37 ## Find accessible plugins from plugins.xml configuration file
38 aPluginList = []
39 aDomObj = parse(aConfigPath)
40 aPluginsList = aDomObj.getElementsByTagName("plugin")
41 for plugin in aPluginsList:
42     aLibName = plugin.getAttribute("library")
43     if aLibName:
44         aPluginDocDir = aSrcPath + os.sep + aLibName + os.sep + "doc"
45         aDocDist = aBuildDir + os.sep + aLibName
46         if os.path.exists(aPluginDocDir):
47             ## Copy all files to a building directory
48             if os.path.exists(aDocDist):
49                 shutil.rmtree(aDocDist)
50             shutil.copytree(aPluginDocDir, aDocDist)
51             aPluginList.append(aLibName)
52
53 ## Modify index.rst file accordingly
54 aIndexFile = open(aSourcesDir + os.sep + "index.rst.in", 'r')
55 aIndexLines = aIndexFile.readlines()
56 aIndexFile.close()
57
58 ## Add list of plugins after toctree directive
59 aIndexLines.append('\n')
60 for aLibName in aPluginList:
61     aIndexLines.append("   " + aLibName + "/" + aLibName + ".rst\n")
62
63 aNewIndex = open(aBuildDir + os.sep + "index.rst", 'w')
64 aNewIndex.writelines(aIndexLines)
65 aNewIndex.close()