Salome HOME
Merge branch 'V8_5_asterstudy'
[modules/smesh.git] / doc / salome / gui / SMESH / collect_mesh_methods.py
index 780ced9c7209f8c9bae7a55edf19cb4ac6168a89..a76c6164cbb094ccdd2250006cfbcd85d8c75ef1 100755 (executable)
@@ -134,7 +134,7 @@ def main(plugin_name, dummymeshhelp = True, output_file = "smeshBuilder.py", for
                     output.append( " #" )
                     output.append( " #  If the optional @a geom_shape parameter is not set, this algorithm is global (applied to whole mesh)." )
                     output.append( " #  Otherwise, this algorithm defines a submesh based on @a geom_shape subshape." )
-                    output.append( " #  @param algo_type type of algorithm to be created; allowed values are specified by classes implemented by plug-in (see below)" )
+                    output.append( " #  @param algo_type type of algorithm to be created; allowed values are specified by classes implemented by plug-in" )
                     output.append( " #  @param geom_shape if defined, the subshape to be meshed (GEOM_Object)" )
                     output.append( " #  @return An instance of Mesh_Algorithm sub-class according to the specified @a algo_type, see " )
                     output.append( " #  %s" % ", ".join( [ "%s.%s" % ( plugin_module_name, algo.__name__ ) for algo in methods[ method ] ] ) )
@@ -145,13 +145,13 @@ def main(plugin_name, dummymeshhelp = True, output_file = "smeshBuilder.py", for
                     output.append( '        """' )
                     output.append( '        %s' % docHelper )
                     output.append( '        ' )
-                    output.append( '        This method is dynamically added to **Mesh** class by the meshing plug-in(s). ' )
+                    output.append( '        This method is dynamically added to :class:`Mesh <smeshBuilder.Mesh>` class by the meshing plug-in(s). ' )
                     output.append( '        ' )
                     output.append( '        If the optional *geom_shape* parameter is not set, this algorithm is global (applied to whole mesh).' )
                     output.append( '        Otherwise, this algorithm defines a submesh based on *geom_shape* subshape.' )
                     output.append( '        ' )
                     output.append( '        Parameters:' )
-                    output.append( '            algo_type: type of algorithm to be created; allowed values are specified by classes implemented by plug-in (see below)' )
+                    output.append( '            algo_type: type of algorithm to be created; allowed values are specified by classes implemented by plug-in' )
                     output.append( '            geom_shape (GEOM_Object): if defined, the subshape to be meshed' )
                     output.append( '        ' )
                     output.append( '        Returns:')