Salome HOME
modules/superv.git
19 years agoFix for bug PAL7854: Editing() method is called on Main and Graph_Impl not BEFORE... V2_2_0b2
asv [Mon, 31 Jan 2005 08:02:23 +0000 (08:02 +0000)]
Fix for bug PAL7854: Editing() method is called on Main and Graph_Impl not BEFORE run() and stepBystep() commands, but inside of them.  And if the dataflow is being executed - then it is NOT called.

19 years agoFix for bug PAL78476: when out-port is added to study, it must try to put its value...
asv [Mon, 31 Jan 2005 06:00:04 +0000 (06:00 +0000)]
Fix for bug PAL78476: when out-port is added to study, it must try to put its value to study right at the moment of "put" command.  After that, it will be added to study in Main::execute() method on "Done" event from a node.

19 years agoFix for bug PAL7845: main->Editing() is called NOT before opening "Browse" node dialo...
asv [Fri, 28 Jan 2005 12:46:13 +0000 (12:46 +0000)]
Fix for bug PAL7845: main->Editing() is called NOT before opening "Browse" node dialog or "Set Value" of input port dialog, but only after pressing "OK" in these dialogs.

19 years agoNew example graphs from Jean Rahuel. Most of them test correct exectution of Switch...
asv [Fri, 28 Jan 2005 12:14:58 +0000 (12:14 +0000)]
New example graphs from Jean Rahuel.  Most of them test correct exectution of Switch nodes.

19 years agoUpdated example graphs from Jean Rahuel. Mainly Switch nodes in the graphs were...
asv [Fri, 28 Jan 2005 12:13:55 +0000 (12:13 +0000)]
Updated example graphs from Jean Rahuel.  Mainly Switch nodes in the graphs were modified.

19 years agoUpdated example graphs from Jean Rahuel. Switch nodes in the graphs were modified.
asv [Fri, 28 Jan 2005 11:44:47 +0000 (11:44 +0000)]
Updated example graphs from Jean Rahuel.  Switch nodes in the graphs were modified.

19 years agofix for PAL7849: GraphExecutor::OutNode::State( aNodeName ) will return "LoadingState...
asv [Thu, 27 Jan 2005 11:40:58 +0000 (11:40 +0000)]
fix for PAL7849: GraphExecutor::OutNode::State( aNodeName ) will return "LoadingState" now only if the "true", internal state is "Running" state.

19 years agofix for 7817: in removeArrayChild() the returned list of children of myArray is check...
asv [Thu, 27 Jan 2005 08:34:19 +0000 (08:34 +0000)]
fix for 7817: in removeArrayChild() the returned list of children of myArray is checked for NULL.  when no children exist, then it will be NULL and it was not checked.

19 years agoSlight code improvements of addNode() method (only). Not important at all.
asv [Thu, 27 Jan 2005 08:18:27 +0000 (08:18 +0000)]
Slight code improvements of addNode() method (only).  Not important at all.

19 years agoNew messages added for SUPERVGUI.cxx
asv [Thu, 27 Jan 2005 08:17:43 +0000 (08:17 +0000)]
New messages added for SUPERVGUI.cxx

19 years agoFix for PAL7823 (checking for if study is locked before doing New Dataflow command).
asv [Thu, 27 Jan 2005 08:17:22 +0000 (08:17 +0000)]
Fix for PAL7823 (checking for if study is locked before doing New Dataflow command).
Also some re-engineering of the code: new function createDataflow() is introduced, it combines functionality of the 3 commands: newDataflow(), importDataflow(), modifyDataflow().  These 3 functions did basically the same thing, with slight differences, which are implemented in createDataflow() using 'mode' parameter.

19 years agoThe graph is modified in order to be executable. Invalid link from the first node...
asv [Thu, 27 Jan 2005 06:13:30 +0000 (06:13 +0000)]
The graph is modified in order to be executable.  Invalid link from the first node (some obj_ref out-port) to a Gate port of the second node is removed.

19 years agoFix for PAL7164: after analysis of the bug, it was found out that PublishInStudy...
asv [Wed, 26 Jan 2005 13:38:37 +0000 (13:38 +0000)]
Fix for PAL7164: after analysis of the bug, it was found out that PublishInStudy() in GEOM was called twice from Supervisor.  It was done from CanvasPort::sync() function.  Since sync() is an asinchronious function, it is called when a signal comes, and in other occasions, it was decided to move the put_in_study functionality to another place - to execute() function of Main, which handles events coming from Engine.
If an event is "Node has successfully finished execution", then its CanvasOutPorts are analized, and if some port has "myIsInStudy" flag - then value of this port is put into study.
It fixes the bug, since execute() is called exactly once on every event (controlled by Supervisor Engine).

19 years agoChanges in getPopupMenu() memthod:
asv [Wed, 26 Jan 2005 13:33:35 +0000 (13:33 +0000)]
Changes in getPopupMenu() memthod:
myDeleteItem was removed from the class, it was deactivated in CanvasCellNode - successor of CanvasNode, now it is not even added to CanvasNode's menu if the view_type is TABLE.

19 years agoCommented out setNodeName() methods of CanvasCellNode and CanvasCellEndNodes, and...
asv [Wed, 26 Jan 2005 13:31:48 +0000 (13:31 +0000)]
Commented out setNodeName() methods of CanvasCellNode and CanvasCellEndNodes, and getPopupMenu() method of CanvasCellNode.
setNodeName() :  decided to remove all node "edition" operations from CellNodes (delete node, rename node), becase it produces bugs in unsynchronization between CanvasNode-s and CanvasCellNode-s.
getPopupMenu() : before myDeleteItem was deactivated in CanvasCellNode, now it is not even added to CanvasNode's menu if the view_type is TABLE.

19 years agomethod getViewType() added that returns CANVAS, CONTROL or CANVASTABLE constant corre...
asv [Wed, 26 Jan 2005 13:28:00 +0000 (13:28 +0000)]
method getViewType() added that returns CANVAS, CONTROL or CANVASTABLE constant corresponding to the current view.

19 years agoApply patch from Paul Rascle (correction of make procedure)
vsr [Tue, 25 Jan 2005 14:12:49 +0000 (14:12 +0000)]
Apply patch from Paul Rascle (correction of make procedure)

19 years agoMake SUPERV module compilable (according to the KERNEL adm file changes) - flags...
vsr [Tue, 25 Jan 2005 06:37:24 +0000 (06:37 +0000)]
Make SUPERV module compilable (according to the KERNEL adm file changes) - flags for 'make bin' step have been modified

19 years agoFindContainer() method does not exist any more. FindOrLoad_Component() starts the...
asv [Mon, 24 Jan 2005 13:12:34 +0000 (13:12 +0000)]
FindContainer() method does not exist any more.  FindOrLoad_Component() starts the container for us.  If it fails to start the container, then it returns nil component.  We don't need to check for if the container was successfully started.

19 years agoPAL7712: additional modification: status bar displays "Supervisor component" informat...
vsr [Fri, 21 Jan 2005 07:57:55 +0000 (07:57 +0000)]
PAL7712: additional modification: status bar displays "Supervisor component" information, like in tooltip for it.

19 years agoModify the version number of SALOME: 2.2.0.
vsr [Fri, 21 Jan 2005 07:46:39 +0000 (07:46 +0000)]
Modify the version number of SALOME: 2.2.0.

19 years agoA bug is fixed: CORBA::Object was compared to NULL instead of CORBA::is_nil().
asv [Fri, 21 Jan 2005 06:08:46 +0000 (06:08 +0000)]
A bug is fixed: CORBA::Object was compared to NULL instead of CORBA::is_nil().

19 years agoMerging with JR_ASV_2_1_0_deb_with_KERNEL_Head branch, which contains many bug fixes...
asv [Fri, 21 Jan 2005 05:44:50 +0000 (05:44 +0000)]
Merging with JR_ASV_2_1_0_deb_with_KERNEL_Head branch, which contains many bug fixes and improvements implemented by JR,ASV,MKR since December 2004.

19 years agoModify the version number of SALOME: 2.2.0.
vsr [Thu, 20 Jan 2005 15:02:45 +0000 (15:02 +0000)]
Modify the version number of SALOME: 2.2.0.
Correct component comment info (PAL7712).

19 years agoMerge with OCC_development_01 V2_2_0a1
admin [Thu, 20 Jan 2005 06:27:14 +0000 (06:27 +0000)]
Merge with OCC_development_01

19 years agoFix PAL7687: Wrong order of libraries in Makefile
vsr [Wed, 12 Jan 2005 07:18:31 +0000 (07:18 +0000)]
Fix PAL7687: Wrong order of libraries in Makefile

19 years agoMerge with version on tag OCC-V2_1_0d V2_1_0 V2_1_0b1
admin [Wed, 1 Dec 2004 10:53:01 +0000 (10:53 +0000)]
Merge with version on tag OCC-V2_1_0d

19 years agoDCQ:prepare 2.0.0 V2_0_0
yfr [Tue, 20 Jul 2004 09:27:37 +0000 (09:27 +0000)]
DCQ:prepare 2.0.0

19 years agoDCQ:prepare 2.0.0
yfr [Tue, 20 Jul 2004 09:07:05 +0000 (09:07 +0000)]
DCQ:prepare 2.0.0

19 years agoDCQ:prepare 2.0.0
yfr [Tue, 20 Jul 2004 08:44:35 +0000 (08:44 +0000)]
DCQ:prepare 2.0.0

19 years agoDCQ : Merge with Ecole_Ete_a6.
yfr [Fri, 18 Jun 2004 13:21:33 +0000 (13:21 +0000)]
DCQ : Merge with Ecole_Ete_a6.

19 years agoDCQ : Merge with Ecole_Ete_a6.
yfr [Fri, 18 Jun 2004 13:10:09 +0000 (13:10 +0000)]
DCQ : Merge with Ecole_Ete_a6.

19 years agoDCQ : Merge with Ecole_Ete_a6.
yfr [Fri, 18 Jun 2004 12:58:10 +0000 (12:58 +0000)]
DCQ : Merge with Ecole_Ete_a6.

19 years agoDCQ : Merge with Ecole_Ete_a6.
yfr [Fri, 18 Jun 2004 12:37:18 +0000 (12:37 +0000)]
DCQ : Merge with Ecole_Ete_a6.

19 years agoDCQ : Merge with Ecole_Ete_a6.
yfr [Fri, 18 Jun 2004 12:23:31 +0000 (12:23 +0000)]
DCQ : Merge with Ecole_Ete_a6.

20 years agoNRI : 1.4.0 version.
nri [Fri, 30 Jan 2004 10:31:31 +0000 (10:31 +0000)]
NRI : 1.4.0 version.

20 years agoNRI : wrong merge.
nri [Thu, 29 Jan 2004 16:31:51 +0000 (16:31 +0000)]
NRI : wrong merge.

20 years agoMPV: Merge V1_2d
smh [Wed, 28 Jan 2004 14:20:58 +0000 (14:20 +0000)]
MPV: Merge V1_2d

20 years agoNRI : -lSalomeLoggerServer replaced by -lSALOMELocalTrace according to bug KERNEL4778.
nri [Tue, 20 Jan 2004 15:22:00 +0000 (15:22 +0000)]
NRI : -lSalomeLoggerServer replaced by -lSALOMELocalTrace according to bug KERNEL4778.

20 years agoNRI : bug KERNEL5014 fixed.
nri [Wed, 14 Jan 2004 09:36:20 +0000 (09:36 +0000)]
NRI : bug KERNEL5014 fixed.

20 years agoNRI : Add mapping DIL/python pages.
nri [Thu, 20 Nov 2003 11:57:55 +0000 (11:57 +0000)]
NRI : Add mapping DIL/python pages.

20 years agoNRI : Remove old files.
nri [Thu, 20 Nov 2003 11:57:09 +0000 (11:57 +0000)]
NRI : Remove old files.

20 years agoNRI : Use EXPORT_SHAREDPYSCRIPT for SUPERV_shared_modules.py.
nri [Fri, 7 Nov 2003 08:29:15 +0000 (08:29 +0000)]
NRI : Use EXPORT_SHAREDPYSCRIPT for SUPERV_shared_modules.py.

20 years agoNRI : Don't search *.in in adm_local directory.
nri [Thu, 6 Nov 2003 16:36:27 +0000 (16:36 +0000)]
NRI : Don't search *.in in adm_local directory.

20 years agoNRI : add LICENCE file
nri [Thu, 6 Nov 2003 11:32:38 +0000 (11:32 +0000)]
NRI : add LICENCE file

20 years agoNRI : set 1.3.0 version
nri [Thu, 6 Nov 2003 09:58:48 +0000 (09:58 +0000)]
NRI : set 1.3.0 version

20 years agoNRI : Merge from 1.2c.
nri [Thu, 6 Nov 2003 09:42:32 +0000 (09:42 +0000)]
NRI : Merge from 1.2c.

20 years agoNRI : RedHat 9 compatibility (M. Tajchman).
nri [Thu, 2 Oct 2003 16:18:11 +0000 (16:18 +0000)]
NRI : RedHat 9 compatibility (M. Tajchman).

20 years agoNRI : INSTALL file defined into SALOME2_PRODUCTION_CYCLE document.
nri [Fri, 26 Sep 2003 14:28:10 +0000 (14:28 +0000)]
NRI : INSTALL file defined into SALOME2_PRODUCTION_CYCLE document.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 18:13:35 +0000 (18:13 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 12:31:06 +0000 (12:31 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 11:39:04 +0000 (11:39 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 11:30:07 +0000 (11:30 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 10:47:36 +0000 (10:47 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 10:02:52 +0000 (10:02 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 09:23:16 +0000 (09:23 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : Merge from V1_2.
nri [Wed, 16 Jul 2003 09:06:14 +0000 (09:06 +0000)]
NRI : Merge from V1_2.

20 years agoNRI : wrong import.
nri [Wed, 16 Jul 2003 08:10:47 +0000 (08:10 +0000)]
NRI : wrong import.

20 years agoThis commit was generated by cvs2git to track changes on a CVS vendor
nri [Wed, 16 Jul 2003 08:02:43 +0000 (08:02 +0000)]
This commit was generated by cvs2git to track changes on a CVS vendor
branch.

20 years agosources v1.2
nri [Wed, 16 Jul 2003 08:02:43 +0000 (08:02 +0000)]
sources v1.2

20 years agoPR: g++ 3.2 port
prascle [Thu, 12 Jun 2003 10:43:38 +0000 (10:43 +0000)]
PR: g++ 3.2 port

20 years agoPR: avoids unnecessary compilation after regeneration of SALOMEconfig.h, with gcc3.2
prascle [Thu, 12 Jun 2003 10:41:52 +0000 (10:41 +0000)]
PR: avoids unnecessary compilation after regeneration of SALOMEconfig.h, with gcc3.2

20 years agoNRI : Update idls dependancies.
nri [Wed, 28 May 2003 16:49:36 +0000 (16:49 +0000)]
NRI : Update idls dependancies.

20 years agoNRI : Remove old components.
nri [Wed, 28 May 2003 08:00:59 +0000 (08:00 +0000)]
NRI : Remove old components.

20 years agoNRI : Add MODULE version info.
nri [Wed, 28 May 2003 07:27:41 +0000 (07:27 +0000)]
NRI : Add MODULE version info.

20 years agoNRI : Update aclocal.
nri [Mon, 26 May 2003 14:43:31 +0000 (14:43 +0000)]
NRI : Update aclocal.

21 years agoNRI : Add documentation. Start-v1_1a
nri [Thu, 22 May 2003 08:03:53 +0000 (08:03 +0000)]
NRI : Add documentation.

21 years agoNRI : Add check HTML generators.
nri [Thu, 22 May 2003 07:59:48 +0000 (07:59 +0000)]
NRI : Add check HTML generators.

21 years agoNRI : Rename Geometry component and interface by GEOM.
nri [Wed, 21 May 2003 12:58:49 +0000 (12:58 +0000)]
NRI : Rename Geometry component and interface by GEOM.

21 years agoNRI : Add Dataflow examples.
nri [Tue, 20 May 2003 12:59:35 +0000 (12:59 +0000)]
NRI : Add Dataflow examples.

21 years agoNRI : Add Catalog.
nri [Mon, 19 May 2003 12:05:26 +0000 (12:05 +0000)]
NRI : Add Catalog.

21 years agoNRI : Use component username from Catalog.
nri [Mon, 19 May 2003 08:19:06 +0000 (08:19 +0000)]
NRI : Use component username from Catalog.

21 years agoNRI : Use component username from Catalog.
nri [Mon, 19 May 2003 08:01:46 +0000 (08:01 +0000)]
NRI : Use component username from Catalog.

21 years agoNRI : Correction 1.1a version.
nri [Fri, 16 May 2003 16:37:46 +0000 (16:37 +0000)]
NRI : Correction 1.1a version.

21 years agoNRI : Correction factory name.
nri [Fri, 16 May 2003 13:42:37 +0000 (13:42 +0000)]
NRI : Correction factory name.

21 years agoNRI : Correction resources name.
nri [Fri, 16 May 2003 13:32:13 +0000 (13:32 +0000)]
NRI : Correction resources name.

21 years agoThis commit was generated by cvs2git to create branch 'IMPORT'.
admin [Fri, 16 May 2003 13:03:52 +0000 (13:03 +0000)]
This commit was generated by cvs2git to create branch 'IMPORT'.

Sprout from master 2003-05-16 13:02:22 UTC nri <nri@opencascade.com> 'NRI : First integration.'
Cherrypick from master 2003-05-16 13:03:51 UTC nri <nri@opencascade.com> 'NRI : Correction factory name.':
    src/Makefile.in
Delete:
    Makefile.in
    build_configure
    configure.in.base
    src/SUPERVGUI/SUPERVGUI_icons.po
    src/SUPERVGUI/SUPERVGUI_msg_en.po
    src/SUPERVGUI/SUPERVGUI_msg_fr.po

21 years agoNRI : Correction factory name.
nri [Fri, 16 May 2003 13:03:51 +0000 (13:03 +0000)]
NRI : Correction factory name.

21 years agoNRI : First integration.
nri [Fri, 16 May 2003 13:02:22 +0000 (13:02 +0000)]
NRI : First integration.

21 years agoNRI : First integration.
nri [Fri, 16 May 2003 12:53:06 +0000 (12:53 +0000)]
NRI : First integration.

21 years agoNRI : First integration.
nri [Fri, 16 May 2003 12:39:10 +0000 (12:39 +0000)]
NRI : First integration.