Salome HOME
NPAL18773: Correct GEOM documentation. V4_1_1rc1
authorjfa <jfa@opencascade.com>
Thu, 14 Feb 2008 14:29:03 +0000 (14:29 +0000)
committerjfa <jfa@opencascade.com>
Thu, 14 Feb 2008 14:29:03 +0000 (14:29 +0000)
doc/salome/gui/GEOM/doxyfile_py.in
doc/salome/gui/Makefile.am

index 41a0b2fc4d477552e51b4b2276b22e2e32d61e5b..88df45eb83304907dfe4bfc1368361e83dc51fbc 100755 (executable)
@@ -107,19 +107,26 @@ GENERATE_RTF      = NO
 #---------------------------------------------------------------------------
 # Configuration options related to the dot tool   
 #---------------------------------------------------------------------------
-CLASS_DIAGRAMS         = YES
+#CLASS_DIAGRAMS         = YES
+CLASS_DIAGRAMS         = NO
 HIDE_UNDOC_RELATIONS   = NO
-HAVE_DOT               = YES
-CLASS_GRAPH            = YES
+#HAVE_DOT               = YES
+HAVE_DOT               = NO
+#CLASS_GRAPH            = YES
+CLASS_GRAPH            = NO
 COLLABORATION_GRAPH    = NO
 GROUP_GRAPHS           = NO
 UML_LOOK               = NO
-TEMPLATE_RELATIONS     = YES
-INCLUDE_GRAPH          = YES
+#TEMPLATE_RELATIONS     = YES
+#INCLUDE_GRAPH          = YES
+TEMPLATE_RELATIONS     = NO
+INCLUDE_GRAPH          = NO
 INCLUDED_BY_GRAPH      = NO
 CALL_GRAPH             = NO
-GRAPHICAL_HIERARCHY    = YES
-DIRECTORY_GRAPH        = YES
+#GRAPHICAL_HIERARCHY    = YES
+#DIRECTORY_GRAPH        = YES
+GRAPHICAL_HIERARCHY    = NO
+DIRECTORY_GRAPH        = NO
 DOT_IMAGE_FORMAT       = jpg
 DOT_PATH               = 
 DOTFILE_DIRS           = 
index 2ab31da21b2a7756a55400fc4d38515abbc2051e..dec4ee81c99949fc9a2a95461387d086eab9d8c2 100644 (file)
@@ -27,10 +27,25 @@ EXTRA_DIST+=GEOM
 
 doxygen=@DOXYGEN@
 
+# Below command replaces "geompyDC" by "geompy" except cases
+# "sgeompyDC", "1geompyDC" and "egeompyDC" (these sequences
+# can be found in file names and must not be replaces):
+#
+# sed 's/\([^s1e]\)geompyDC\|^geompyDC/\1geompy/g' $${filen} > ./tmp;
+#
 usr_docs:
        cd ./GEOM; \
        echo "Processing geompyDC.py file: "; \
        $(doxygen) ./doxyfile_py; \
+       cd ./geompy_doc; \
+       filesl=`find .`; \
+       for filen in $${filesl}; do \
+         sed 's/\([^s1e]\)geompyDC\|^geompyDC/\1geompy/g' $${filen} > ./tmp1; \
+         sed 's/geompy\.geompy/geompy/g' ./tmp1 > ./tmp; \
+         rm -f tmp1; \
+         mv -f tmp $${filen}; \
+       done; \
+       cd ..; \
        echo "Running doxygen in directory: "`pwd`; \
        $(doxygen) ./doxyfile;
 
@@ -53,4 +68,4 @@ docguidir=$(docdir)/gui/GEOM
 nodist_docgui_DATA= GEOM/doxyfile
 nodist_docgui_DATA+= GEOM/doxyfile_py
 EXTRA_DIST+= GEOM/doxyfile.in
-EXTRA_DIST+= GEOM/doxyfile_py.in
\ No newline at end of file
+EXTRA_DIST+= GEOM/doxyfile_py.in