Salome HOME
Merge changes from 'master' branch.
[modules/kernel.git] / src / KERNEL_PY / Help.py
index 9100c5694470ee49514e4c794b4a8e60d2b0f6bb..23ee4083fc7304b4bb923766cb3d566242fcedf4 100755 (executable)
@@ -36,7 +36,7 @@ class SalomeDoc:
         doc_salome = '''
 MODULE : salome
 ---------------
-module salome gives access to Salome ressources:
+module salome gives access to Salome resources:
 variables:
 
   salome.orb             : CORBA
@@ -52,9 +52,8 @@ variables:
                            with a Server name and an Engine name
   salome.sg
       methods:
-         updateObjBrowser(bool):
-         getActiveStudyId():
-         getActiveStudyName():
+         updateObjBrowser():
+         getStudyName():
          
          SelectedCount():      returns number of selected objects
          getSelected(i):       returns entry of selected object number i
@@ -71,13 +70,12 @@ variables:
 
          IDToObject(Entry):    returns CORBA reference from entry
 
-  salome.myStudyName     : active Study Name
-  salome.myStudyId       : active Study Id
+  salome.myStudyName     : the Study Name
   salome.myStudy         : the active Study itself (CORBA ior)
                            methods : defined in SALOMEDS.idl
                                                          
 methods:
-  salome.DumpStudy(study) : Dump a study, given the ior
+  salome.DumpStudy() : Dump a study, given the ior
 ---
 '''
         print(doc_salome)
@@ -134,7 +132,7 @@ A new python example avoids references to LifeCycleCORBA
 
 Help = SalomeDoc('''
 Availables modules:
-  salome      : gives access to Salome ressources
+  salome      : gives access to Salome resources
   geompy      : encapsulation of GEOM Engine methods
   supervision : gives access to SuperVision Engine
 To obtain specific help on a module "truc", type: Help.truc()