From: jfa Date: Thu, 14 Feb 2008 14:29:03 +0000 (+0000) Subject: NPAL18773: Correct GEOM documentation. X-Git-Tag: V4_1_1rc1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2102becfd0488f715504a057eabe200196be1cab;p=modules%2Fgeom.git NPAL18773: Correct GEOM documentation. --- diff --git a/doc/salome/gui/GEOM/doxyfile_py.in b/doc/salome/gui/GEOM/doxyfile_py.in index 41a0b2fc4..88df45eb8 100755 --- a/doc/salome/gui/GEOM/doxyfile_py.in +++ b/doc/salome/gui/GEOM/doxyfile_py.in @@ -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 = diff --git a/doc/salome/gui/Makefile.am b/doc/salome/gui/Makefile.am index 2ab31da21..dec4ee81c 100644 --- a/doc/salome/gui/Makefile.am +++ b/doc/salome/gui/Makefile.am @@ -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