+2013-01-14 18:11 barate
+
+ * src/Launcher/: Launcher.cxx, Launcher.hxx, Launcher_Job.cxx,
+ Launcher_Job.hxx:
+
+ Adapt to the merge of BatchManager_eClient into BatchManager
+
+2013-01-08 17:03 prascle
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Merge from 1.18.2.11.10.10
+
+2012-12-18 17:12 barate
+
+ * salome_adm/: cmake_files/FindPYTHON.cmake,
+ unix/config_files/check_swig.m4:
+
+ Fix Numpy version conflict when using custom Numpy with System Python and that another Numpy is installed in the system
+
+2012-12-18 16:51 barate
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Throw exception instead of exit when ContainerManager cannot be resolved in naming service (happens when the naming service is not SALOME Naming service). This fixes bugs when calling salome_init() outside SALOME application.
+
+2012-12-18 13:23 barate
+
+ * src/: KernelHelpers/SALOME_KernelServices.hxx,
+ Utils/Utils_CorbaException.hxx:
+
+ Remove duplicate function in SALOME_KernelServices.hxx
+
+2012-12-18 11:04 barate
+
+ * salome_adm/unix/config_files/check_tbb.m4:
+
+ Properly detect TBB when installed in the system (/usr)
+
+2012-12-14 13:25 eap
+
+ * src/SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ - Notifier* _notifier;
+ + SALOMEDSImpl_AbstractCallback* _notifier;
+ + SALOMEDSImpl_AbstractCallback* _genObjRegister;
+
+2012-12-14 13:24 eap
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ + class GenObjRegister: public SALOMEDSImpl_AbstractCallback
+ + {
+
+ SALOMEDS_Study_i::SALOMEDS_Study_i()
+ {
+ + _genObjRegister = new SALOMEDS::GenObjRegister(_orb);
+
+ SALOMEDS_Study_i::~SALOMEDS_Study_i()
+ {
+ + _impl->setNotifier(0);
+ + delete _notifier;
+ + delete _genObjRegister;
+
+2012-12-14 13:20 eap
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ - else _name_service->Register(Study, CORBA::string_dup(aStudyImpl->Name().c_str()));
+ + else _name_service->Register(Study, aStudyImpl->Name().c_str());
+
+2012-12-14 13:20 eap
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ - aFO = _impl->GetOwner()->GetSObject(theFatherObject->GetID());
+ + CORBA::String_var fatherEntry = theFatherObject->GetID();
+ + aFO = _impl->GetOwner()->GetSObject( fatherEntry.in() );
+
+2012-12-14 13:19 eap
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ + so->UnRegister();
+
+2012-12-14 13:18 eap
+
+ * src/SALOMEDS/: CMakeLists.txt, Makefile.am,
+ SALOMEDS_Attributes_wrap.hxx, SALOMEDS_wrap.hxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ Declare SALOMEDS::SObject_wrap etc types
+
+ + SALOMEDS_Attributes_wrap.hxx \
+ + SALOMEDS_wrap.hxx
+
+2012-12-14 13:16 eap
+
+ * src/HDFPersist/HDFascii.cc:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ + delete [] aBuffer;
+
+2012-12-14 13:16 eap
+
+ * src/GenericObj/SALOME_GenericObj_i.cc:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ Add debug code printing object type and myRefCounter
+
+2012-12-14 13:13 eap
+
+ * src/GenericObj/: CMakeLists.txt, Makefile.am,
+ SALOME_GenericObj_wrap.hxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ Define SALOME::GenericObj_wrap< GENOBJ >
+
+ + SALOME_GenericObj_wrap.hxx
+
+2012-12-14 11:37 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ - SALOMEDSImpl_AttributeIOR::Set (current, ior_string);
+ + SALOMEDSImpl_AttributeIOR* iorAttr = SALOMEDSImpl_AttributeIOR::Set (current, ior_string);
+
+ + // make myRefCounter of a loaded GenericObj == 1
+ + SALOMEDSImpl_Study::UnRegisterGenObj( ior_string, iorAttr->Label());
+
+2012-12-14 11:35 eap
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ Remove dependency on CORBA
+
+ + SALOMEDSImpl_AbstractCallback* _genObjRegister;
+
+ + static void RegisterGenObj (const std::string& theIOR, DF_Label label);
+ + static void UnRegisterGenObj(const std::string& theIOR, DF_Label label);
+ + void setGenObjRegister(SALOMEDSImpl_AbstractCallback* theRegister);
+
+2012-12-14 11:34 eap
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx, CMakeLists.txt,
+ Makefile.am:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ Remove dependency on CORBA
+
+2012-12-14 11:32 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx:
+
+ decorations :)
+
+2012-12-14 11:31 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ + virtual void RegisterGenObj (const std::string& theIOR) {}
+ + virtual void UnRegisterGenObj(const std::string& theIOR) {}
+
+2012-12-14 11:30 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx:
+
+ 21948: EDF SMESH : Memory is not freed when deleting a mesh
+
+ - delete c;
+ - delete buffer;
+ + delete [] c;
+ + delete [] buffer;
+
+2012-12-13 08:36 vsr
+
+ * CMakeLists.txt, bin/CMakeLists.txt, bin/Makefile.am,
+ bin/ORBConfigFile.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/orbmodule.py, bin/runSalome.ksh,
+ bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
+ bin/salome_utils.py, bin/searchFreePort.py, bin/setenv.py,
+ bin/shutdownSalome.py, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/docutils/CMakeLists.txt,
+ doc/salome/kernel_salome.dox, doc/salome/gui/CMakeLists.txt,
+ doc/salome/tui/CMakeLists.txt, doc/salome/tui/doxyfile.in,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ salome_adm/CMakeLists.txt,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/SalomeMacros.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/prepare_generating_doc.py,
+ salome_adm/unix/CMakeLists.txt,
+ salome_adm/unix/config_files/CMakeLists.txt,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/KERNEL_PY/salome_study.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Merge from V6_main 13/12/2012
+
+2012-12-11 12:38 vsr
+
+ * CMakeLists.txt, configure.ac, bin/killSalomeWithPort.py,
+ bin/salome_utils.py, bin/setenv.py, bin/shutdownSalome.py,
+ doc/docutils/CMakeLists.txt, doc/salome/gui/CMakeLists.txt,
+ doc/salome/tui/CMakeLists.txt,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Merge from V6_6_BR (V6_6_0rc2) 11/12/2012
+
+2012-12-06 10:23 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
+
+ Patch from RNV: manually created mesh is not checked in
+
+2012-12-04 16:14 gdd
+
+ * bin/setenv.py:
+
+ Avoid adding multiple times the same directory in SALOMEPATH env variable (it was the case in the appli environment)
+
+2012-11-29 11:18 mpv
+
+ * src/SALOMEDS/SALOMEDS_SimanStudy_i.cxx:
+
+ Fix for bug found by mka: siman scenario is not passed
+
+2012-11-29 08:02 vsr
+
+ * bin/: killSalomeWithPort.py, salome_utils.py:
+
+ 1) 0022002: [CEA 723] Error in killSalomeWithPort.py
+ 2) Fix pb in killSalomeWithPort.py - not all servers are killed sometimes
+
+2012-11-23 14:28 mpv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
+
+ Do not crash if there is no document in Activity: create a new document with ID "-1" on check-in
+
+2012-11-23 14:27 mpv
+
+ * src/Container/: SALOME_DataContainerPy.py,
+ SALOME_DataContainer_i.cxx, SALOME_DataContainer_i.hxx:
+
+ Implementation of "setExtension" method and working with stream (by Daniel remarks)
+
+2012-11-23 14:27 mpv
+
+ * idl/SALOME_Component.idl:
+
+ Implementation of "setExtension" method (by Daniel remarks)
+
+2012-11-19 12:12 vsr
+
+ * salome_adm/cmake_files/am2cmake.py, CMakeLists.txt, configure.ac:
+
+ Increment version to 6.6.0
+
+2012-11-13 12:38 vsr
+
+ * bin/: shutdownSalome.py, killSalomeWithPort.py:
+
+ 0021688: [CEA 572] Issue when using runSalome -k -t
+
+2012-11-13 10:28 vsr
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Fix mistake in OCCT check procedure that makes problems of usage OCCT built by WOK
+
+2012-11-13 09:35 vsr
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ Container/SALOME_ContainerManager.cxx:
+
+ 0021688: [CEA 572] Issue when using runSalome -k -t
+
+2012-11-12 15:51 vsr
+
+ * bin/searchFreePort.py:
+
+ Merge from V6_main 12/11/2012
+
+2012-11-12 09:25 aguerre
+
+ * bin/searchFreePort.py:
+
+ Get info returned by writeORBConfigFile
+
+2012-11-09 06:56 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix error in generated CMakeLists.txt file for SMESH tui documentation
+
+2012-11-01 12:46 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build html_docs (Sphinx) with CMake
+
+2012-11-01 11:57 vsr
+
+ * doc/docutils/CMakeLists.txt:
+
+ Build html_docs (Sphinx) with CMake
+
+2012-11-01 10:16 vsr
+
+ * doc/docutils/CMakeLists.txt:
+
+ Build html_docs (Sphinx) with CMake
+
+2012-11-01 10:05 vsr
+
+ * doc/docutils/CMakeLists.txt:
+
+ Build html_docs (Sphinx) with CMake
+
+2012-11-01 09:11 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build html_docs (Sphinx) with CMake
+
+2012-10-30 15:56 ana
+
+ * doc/docutils/CMakeLists.txt, salome_adm/cmake_files/am2cmake.py:
+
+ Remove -W flag
+
+2012-10-30 10:51 aguerre
+
+ * bin/searchFreePort.py:
+
+ fix bug in searchFreePort.py (call with no arg)
+
+2012-10-30 09:54 ana
+
+ * doc/salome/gui/CMakeLists.txt,
+ salome_adm/cmake_files/am2cmake.py:
+
+ Cmake: add dependency for usr_docs target
+
+2012-10-30 08:55 ana
+
+ * doc/salome/tui/CMakeLists.txt:
+
+ fix error
+
+2012-10-26 17:10 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Add simple command line check for killSalomeWithPort.py script
+
+2012-10-26 14:57 vsr
+
+ * bin/CMakeLists.txt, bin/Makefile.am, bin/ORBConfigFile.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/orbmodule.py, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py,
+ bin/searchFreePort.py, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, src/Launcher/BatchTest.cxx,
+ src/Launcher/Launcher.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Merge from V6_main 26/10/2012
+
+2012-10-26 12:46 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ CMake: add generating the 'dev_docs' target for BLSURFPLUGIN
+
+2012-10-25 15:53 aguerre
+
+ * bin/searchFreePort.py:
+
+ bug fix: get return values from call to generateFileName
+
+2012-10-25 14:43 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Cmake: generating documentation for JOBMANAGER and PYHELLO1
+
+2012-10-24 10:37 secher
+
+ * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ add ompi mpi implementation for cea mars cluster
+
+2012-10-24 07:30 vsr
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Fix misprint
+
+2012-10-23 17:37 ana
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Add specific platform definitions for Windows 64 bit platform
+
+2012-10-23 10:23 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Porting to DISTENE MeshGems suite
+
+2012-10-22 16:35 vsr
+
+ * bin/searchFreePort.py:
+
+ file searchFreePort.py was added on branch V6_6_BR on 2012-10-26 12:57:04 +0000
+
+2012-10-22 16:35 vsr
+
+ * bin/searchFreePort.py:
+
+ file searchFreePort.py was added on branch V7_main on 2012-12-13 07:36:45 +0000
+
+2012-10-22 16:34 aguerre
+
+ * bin/: salomeConsole.py, salome_session.py, searchFreePort.py,
+ appliskel/runRemote.sh, appliskel/runSession, appliskel/runTests,
+ appliskel/searchFreePort.sh:
+
+ CA: Bug correction PAL2416
+ CORBA configuration for GIOP Max msg size (set to 2GB).
+ Done in only one place.
+
+ M bin/CMakeLists.txt
+ M bin/Makefile.am
+ A bin/ORBConfigFile.py
+ M bin/killSalome.py
+ M bin/killSalomeWithPort.py
+ M bin/launchConfigureParser.py
+ M bin/launchSalome.py
+ M bin/orbmodule.py
+ M bin/runSalome.ksh
+ M bin/runSalome.py
+ M bin/salomeConsole.py
+ M bin/salome_session.py
+ A bin/searchFreePort.py
+ M bin/appliskel/runRemote.sh
+ M bin/appliskel/runSession
+ M bin/appliskel/runTests
+ M bin/appliskel/searchFreePort.sh
+
+2012-10-22 16:32 vsr
+
+ * bin/ORBConfigFile.py:
+
+ file ORBConfigFile.py was added on branch V6_6_BR on 2012-10-26 12:57:01 +0000
+
+2012-10-22 16:32 vsr
+
+ * bin/ORBConfigFile.py:
+
+ file ORBConfigFile.py was added on branch V7_main on 2012-12-13 07:36:41 +0000
+
+2012-10-22 16:31 aguerre
+
+ * bin/: CMakeLists.txt, Makefile.am, ORBConfigFile.py,
+ killSalome.py, killSalomeWithPort.py, launchConfigureParser.py,
+ launchSalome.py, orbmodule.py, runSalome.ksh, runSalome.py:
+
+ CA: Bug correction PAL2416
+ CORBA configuration for GIOP Max msg size (set to 2GB).
+ Done in only one place.
+
+ M bin/CMakeLists.txt
+ M bin/Makefile.am
+ A bin/ORBConfigFile.py
+ M bin/killSalome.py
+ M bin/killSalomeWithPort.py
+ M bin/launchConfigureParser.py
+ M bin/launchSalome.py
+ M bin/orbmodule.py
+ M bin/runSalome.ksh
+ M bin/runSalome.py
+ M bin/salomeConsole.py
+ M bin/salome_session.py
+ A bin/searchFreePort.py
+ M bin/appliskel/runRemote.sh
+ M bin/appliskel/runSession
+ M bin/appliskel/runTests
+ M bin/appliskel/searchFreePort.sh
+
+2012-10-22 11:57 vsr
+
+ * salome_adm/cmake_files/prepare_generating_doc.py:
+
+ Fix problem in documentation generation for TUI (Python API) of GEOM and SMESH classes
+
+2012-10-22 09:29 ana
+
+ * doc/salome/gui/CMakeLists.txt:
+
+ Generating documentation by CMake:small fix
+
+2012-10-22 08:50 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Win32 compatibility
+
+2012-10-22 08:36 ana
+
+ * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
+
+ CMake compatibility: fix error: expected 'float *' but argument is of type 'double *'
+
+2012-10-18 15:46 fayolle
+
+ * src/DSC/: DSC_Python/calcium.i,
+ DSC_User/Datastream/Calcium/CalciumC.c,
+ DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ DSC_User/Datastream/Calcium/calcium.h,
+ DSC_User/Datastream/Calcium/calciumf.c,
+ DSC_User/Datastream/Calcium/calciumf.h:
+
+ - Ajout d'une API C/F/Python permettant d'écrire des floats/doubles dans des ports double/float (conversions automatiques).
+
+2012-10-18 14:29 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
+ Additional fix: whe old study is opened, automatically add "unknown" version tag for all components
+
+2012-10-18 12:49 mpv
+
+ * src/Makefile.am:
+
+ Fix for compilation with SimanIO
+
+2012-10-18 09:37 mpv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx:
+
+ Fix for compilation without SimanIO
+
+2012-10-18 08:38 mpv
+
+ * src/: SALOMEDSClient/SALOMEDSClient_SimanStudy.hxx,
+ SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SimanStudy.cxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_SimanStudy.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 08:35 mpv
+
+ * src/SALOMEDS/: SALOMEDS_SimanStudy.cxx, SALOMEDS_Study.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_SimanStudy_i.cxx,
+ SALOMEDS_StudyManager.cxx, Makefile.am, SALOMEDS_SimanStudy.hxx,
+ SALOMEDS_SimanStudy_i.hxx, SALOMEDS_StudyManager.hxx,
+ SALOMEDS_StudyManager_i.hxx, Test/Makefile.am:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 08:29 mpv
+
+ * src/Container/: SALOME_DataContainerPy.py, Component_i.cxx,
+ SALOME_ComponentPy.py, SALOME_DataContainer_i.cxx, Makefile.am,
+ SALOME_Component_i.hxx, SALOME_DataContainer_i.hxx:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 08:10 mpv
+
+ * salome_adm/: cmake_files/FindSIMANIO.cmake,
+ cmake_files/Makefile.am, cmake_files/am2cmake.py,
+ unix/config_files/Makefile.am,
+ unix/config_files/check_simanio.m4:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 08:05 mpv
+
+ * idl/: SALOMEDS.idl, SALOME_Component.idl:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 07:48 mpv
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-18 07:33 mpv
+
+ * configure.ac:
+
+ Initial integration of SimanIO support and SIMAN study interfaces
+
+2012-10-17 14:12 barate
+
+ * src/SALOMEDS/Makefile.am:
+
+ Fix symbol resolution problems when Salome is compiled with autotools on Ubuntu 12.04
+
+2012-10-17 09:26 ana
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx:
+
+ win32 compatibility
+
+2012-10-17 09:05 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ CMake compatibility
+
+2012-10-16 16:29 vsr
+
+ * doc/salome/kernel_salome.dox:
+
+ 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
+
+2012-10-16 10:17 vsr
+
+ * src/SALOMEDS/: SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx, SALOMEDS_Driver_i.hxx,
+ SALOMEDS_StudyManager.cxx, SALOME_DriverPy.py:
+
+ 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
+
+2012-10-16 10:13 vsr
+
+ * src/: SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ KERNEL_PY/salome_study.py:
+
+ 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
+
+2012-10-16 10:10 vsr
+
+ * idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file
+
+2012-10-12 17:41 vsr
+
+ * doc/docutils/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:36:53 +0000
+
+2012-10-12 17:41 ana
+
+ * doc/docutils/CMakeLists.txt:
+
+ Porting SALOME KERNEL to CMake
+
+2012-10-10 11:05 vsr
+
+ * doc/salome/gui/images/icon_about.png:
+
+ Update SALOME 7x logos (temporary images)
+
+2012-10-10 10:56 vsr
+
+ * salome_adm/unix/config_files/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:37:19 +0000
+
+2012-10-10 10:56 vsr
+
+ * salome_adm/unix/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-12-13 07:37:16 +0000
+
+2012-10-10 10:56 ana
+
+ * salome_adm/: CMakeLists.txt, cmake_files/SalomeMacros.cmake,
+ unix/CMakeLists.txt, unix/config_files/CMakeLists.txt:
+
+ Porting SALOME GUI to CMake
+
+2012-10-09 18:28 vsr
+
+ * bin/runSalome.py:
+
+ Modify runSalome script - the python scripts should be executed in GUI only if it is started (--gui / -g option) and desktop is activated (--show-desktop=1 / -d1 option); otherwise the scripts, if specified, should be executed in the external Python.
+
+2012-10-09 10:41 inv
+
+ * salome_adm/unix/make_common_starter.am:
+
+ Add missing end-of-line
+
+2012-10-09 10:40 vsr
+
+ * salome_adm/unix/make_common_starter.am:
+
+ Add missing end-of-line
+
+2012-10-09 10:34 vsr
+
+ * Makefile.am, doc/Makefile.am, doc/docutils/Makefile.am,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/Makefile.am,
+ resources/Makefile.am, salome_adm/cmake_files/Makefile.am,
+ salome_adm/unix/make_common_starter.am, src/Makefile.am,
+ src/Communication/CMakeLists.txt, src/Communication/Makefile.am,
+ src/Communication/Receiver.cxx,
+ src/Communication_SWIG/Makefile.am, src/DSC/Makefile.am,
+ src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_User/Datastream/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/HDFPersist/Makefile.am, src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Test/Makefile.am:
+
+ 1) Add CMake files to the dist rules (make dist)
+ 2) Fix problems of make dist (missing files)
+
+2012-10-09 10:29 inv
+
+ * Makefile.am, doc/Makefile.am, doc/docutils/Makefile.am,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/Makefile.am,
+ resources/Makefile.am, salome_adm/cmake_files/Makefile.am,
+ salome_adm/unix/make_common_starter.am, src/Makefile.am,
+ src/Communication/CMakeLists.txt, src/Communication/Makefile.am,
+ src/Communication/Receiver.cxx,
+ src/Communication_SWIG/Makefile.am, src/DSC/Makefile.am,
+ src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_User/Datastream/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/HDFPersist/Makefile.am, src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Test/Makefile.am:
+
+ 1) Add CMake files to the dist rules (make dist)
+ 2) Fix problems of make dist (missing files)
+
+2012-10-08 13:18 rnv
+
+ * src/Launcher/: Launcher_Job_SALOME.cxx, Launcher_Job_Command.cxx:
+
+ Partial fix for the 0021727: [CEA 584] sending a Yacs graph from Windows to a cluster issue.
+
+2012-10-08 12:24 vsr
+
+ * src/: Registry/CMakeLists.txt, ResourcesManager/CMakeLists.txt,
+ SALOMEDS/CMakeLists.txt, SALOMEDS/Test/CMakeLists.txt,
+ SALOMEDS/Test/SALOMEDSTest.hxx, SALOMEDS/Test/TestSALOMEDS.cxx,
+ SALOMEDSClient/CMakeLists.txt, SALOMEDSImpl/CMakeLists.txt,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/Test/CMakeLists.txt,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMELocalTrace/CMakeLists.txt,
+ SALOMELocalTrace/Test/CMakeLists.txt,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMETraceCollector/CMakeLists.txt,
+ SALOMETraceCollector/Test/CMakeLists.txt,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ TOOLSDS/CMakeLists.txt, TestContainer/CMakeLists.txt,
+ TestMPIContainer/CMakeLists.txt, UnitTests/CMakeLists.txt,
+ Utils/CMakeLists.txt, Utils/Test/CMakeLists.txt,
+ Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx:
+
+ Merge from V6_main (04/10/2012)
+
+2012-10-08 12:21 vsr
+
+ * src/: KERNEL_PY/kernel/parametric/CMakeLists.txt,
+ KernelHelpers/CMakeLists.txt, KernelHelpers/Test/CMakeLists.txt,
+ KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ Launcher/CMakeLists.txt, LifeCycleCORBA/CMakeLists.txt,
+ LifeCycleCORBA/Test/CMakeLists.txt,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA_SWIG/CMakeLists.txt,
+ LifeCycleCORBA_SWIG/Test/CMakeLists.txt, Logger/CMakeLists.txt,
+ Logger/Test/CMakeLists.txt, MPIContainer/CMakeLists.txt,
+ MPIContainer/MPIContainer_i.cxx, ModuleCatalog/CMakeLists.txt,
+ ModuleGenerator/CMakeLists.txt, NOTIFICATION_SWIG/CMakeLists.txt,
+ NamingService/CMakeLists.txt, NamingService/Test/CMakeLists.txt,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ Notification/CMakeLists.txt, ParallelContainer/CMakeLists.txt:
+
+ Merge from V6_main (04/10/2012)
+
+2012-10-08 12:18 vsr
+
+ * salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am, src/CMakeLists.txt,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/CMakeLists.txt, src/Basics/Test/CMakeLists.txt,
+ src/Communication/CMakeLists.txt,
+ src/Communication_SWIG/CMakeLists.txt,
+ src/Container/CMakeLists.txt, src/DF/CMakeLists.txt,
+ src/DSC/CMakeLists.txt, src/DSC/DSC_Basic/CMakeLists.txt,
+ src/DSC/DSC_Python/CMakeLists.txt,
+ src/DSC/DSC_User/CMakeLists.txt,
+ src/DSC/DSC_User/Basic/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
+ src/DSC/ParallelDSC/CMakeLists.txt,
+ src/GenericObj/CMakeLists.txt, src/HDFPersist/CMakeLists.txt,
+ src/HDFPersist/HDFascii.cc, src/KERNEL_PY/CMakeLists.txt,
+ src/KERNEL_PY/kernel/CMakeLists.txt:
+
+ Merge from V6_main (04/10/2012)
+
+2012-10-08 12:15 vsr
+
+ * CMakeLists.txt, configure.ac, bin/CMakeLists.txt,
+ bin/launchConfigureParser.py, bin/appliskel/CMakeLists.txt,
+ doc/CMakeLists.txt, doc/salome/CMakeLists.txt,
+ doc/salome/kernel_salome.dox, doc/salome/main.dox,
+ doc/salome/running_salome.dox, doc/salome/gui/CMakeLists.txt,
+ doc/salome/tui/CMakeLists.txt, idl/CMakeLists.txt,
+ resources/CMakeLists.txt, salome_adm/CMakeLists.txt,
+ salome_adm/Makefile.am, salome_adm/SALOMEconfig.ref.in,
+ salome_adm/cmake_files/CMakeLists.txt,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindSPHINX.cmake,
+ salome_adm/cmake_files/SalomeMacros.cmake,
+ salome_adm/cmake_files/UseOMNIORB.cmake,
+ salome_adm/cmake_files/am2cmake.py, salome_adm/unix/Makefile.am:
+
+ Merge from V6_main (04/10/2012)
+
+2012-10-08 10:45 rnv
+
+ * src/Launcher/: Launcher_Job_SALOME.cxx, Launcher_Job.cxx,
+ Launcher_Job_Command.cxx:
+
+ Patrial fix of the issue 21727: [CEA 584] sending a Yacs graph from Windows to a cluster
+
+2012-10-07 19:31 prascle
+
+ * doc/salome/tui/doxyfile.in:
+
+ PR: KERNEL Developer's guide with full index
+
+2012-10-03 13:30 ana
+
+ * salome_adm/cmake_files/SalomeMacros.cmake:
+
+ CMake: Add new macros
+
+2012-10-02 18:59 ana
+
+ * salome_adm/cmake_files/FindCPPUNIT.cmake:
+
+ CMake: Set env var for CPPUNIT
+
+2012-10-02 12:50 ageay
+
+ * src/: HDFPersist/HDFascii.cc,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
+
+ Fixing compilation error on gcc4.7
+
+2012-10-01 15:15 ageay
+
+ * salome_adm/cmake_files/FindCPPUNIT.cmake:
+
+ Synchronization env var for CPPUNIT with autotools : CPPUNIT_ROOT -> CPPUNITHOME
+
+2012-09-27 10:32 ana
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ CMake compatibility: fix problen with MPI
+
+2012-09-27 09:33 ana
+
+ * salome_adm/cmake_files/FindLIBBATCH.cmake,
+ src/Launcher/CMakeLists.txt:
+
+ CMake compatibility: fix problen with LIBBATCH
+
+2012-09-27 09:17 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Modify am2cmake procedure:
+ - since generation of CMakeLists.txt is actually required on each level, rollback (partially) previous commit
+
+2012-09-27 08:15 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Improve am2cmake procedure:
+ - allow forcing am2cmake conversion procedure for separate modules only (with dedicated env variables, e.g. AM2CMAKE_FORCE_KERNEL_GENERATION)
+ - if top-level CMakeLists.txt file is not am2cmake-generated, stop converting of lower-level files also (instead of checking CMakeLists.txt file separately at each level)
+
+2012-09-27 07:16 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix problem of SMESH compilation with CMake
+
+2012-09-26 15:03 ana
+
+ * src/LifeCycleCORBA_SWIG/CMakeLists.txt:
+
+ Porting SALOME KERNEL to CMake: add missing flags
+
+2012-09-26 14:30 ana
+
+ * src/: Communication/CMakeLists.txt,
+ Communication_SWIG/CMakeLists.txt, Container/CMakeLists.txt,
+ DSC/DSC_Basic/CMakeLists.txt, DSC/DSC_Python/CMakeLists.txt,
+ DSC/DSC_User/CMakeLists.txt, DSC/DSC_User/Basic/CMakeLists.txt,
+ DSC/DSC_User/Datastream/CMakeLists.txt,
+ DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
+ DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
+ GenericObj/CMakeLists.txt, KernelHelpers/CMakeLists.txt,
+ KernelHelpers/Test/CMakeLists.txt, Launcher/CMakeLists.txt,
+ LifeCycleCORBA/CMakeLists.txt,
+ LifeCycleCORBA/Test/CMakeLists.txt,
+ LifeCycleCORBA_SWIG/CMakeLists.txt, Logger/CMakeLists.txt,
+ MPIContainer/CMakeLists.txt, ModuleCatalog/CMakeLists.txt,
+ NOTIFICATION_SWIG/CMakeLists.txt, NamingService/CMakeLists.txt,
+ NamingService/Test/CMakeLists.txt, Notification/CMakeLists.txt,
+ ParallelContainer/CMakeLists.txt, Registry/CMakeLists.txt,
+ ResourcesManager/CMakeLists.txt, SALOMEDS/CMakeLists.txt,
+ SALOMEDS/Test/CMakeLists.txt, SALOMEDSClient/CMakeLists.txt,
+ SALOMEDSImpl/CMakeLists.txt, SALOMETraceCollector/CMakeLists.txt,
+ TOOLSDS/CMakeLists.txt, TestContainer/CMakeLists.txt,
+ TestMPIContainer/CMakeLists.txt, UnitTests/CMakeLists.txt,
+ Utils/CMakeLists.txt:
+
+ Porting SALOME KERNEL to CMake
+
+2012-09-26 14:00 vsr
+
+ * bin/appliskel/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:16:46 +0000
+
+2012-09-26 14:00 vsr
+
+ * bin/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:16:25 +0000
+
+2012-09-26 14:00 vsr
+
+ * doc/salome/tui/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:49 +0000
+
+2012-09-26 14:00 vsr
+
+ * doc/salome/gui/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:42 +0000
+
+2012-09-26 14:00 vsr
+
+ * doc/salome/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:28 +0000
+
+2012-09-26 14:00 vsr
+
+ * doc/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:18 +0000
+
+2012-09-26 14:00 vsr
+
+ * idl/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:17:58 +0000
+
+2012-09-26 14:00 vsr
+
+ * resources/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:07 +0000
+
+2012-09-26 14:00 ana
+
+ * salome_adm/cmake_files/am2cmake.py, salome_adm/unix/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am, resources/CMakeLists.txt,
+ idl/CMakeLists.txt, doc/CMakeLists.txt,
+ doc/salome/CMakeLists.txt, doc/salome/gui/CMakeLists.txt,
+ doc/salome/tui/CMakeLists.txt, bin/CMakeLists.txt,
+ bin/appliskel/CMakeLists.txt:
+
+ Porting SALOME KERNEL to CMake
+
+2012-09-26 14:00 vsr
+
+ * salome_adm/cmake_files/SalomeMacros.cmake:
+
+ file SalomeMacros.cmake was added on branch V7_main on 2012-10-08 10:18:44 +0000
+
+2012-09-26 14:00 vsr
+
+ * salome_adm/cmake_files/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:31 +0000
+
+2012-09-26 14:00 vsr
+
+ * salome_adm/SALOMEconfig.ref.in:
+
+ file SALOMEconfig.ref.in was added on branch V7_main on 2012-10-08 10:18:21 +0000
+
+2012-09-26 14:00 vsr
+
+ * salome_adm/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:15 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/Utils/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:26:02 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/Utils/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:26:00 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/UnitTests/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:53 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/TestMPIContainer/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:49 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/TestContainer/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:47 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/TOOLSDS/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:44 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMETraceCollector/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:40 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMETraceCollector/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:38 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMELocalTrace/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:34 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMELocalTrace/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:31 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMEDSImpl/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:24 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMEDSImpl/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:20 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMEDSClient/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:18 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMEDS/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:05 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/SALOMEDS/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:03 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/ResourcesManager/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:25:00 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/Registry/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:58 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/ParallelContainer/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:50 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/Notification/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:46 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/NamingService/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:33 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/NamingService/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:13 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/NOTIFICATION_SWIG/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:24:00 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/ModuleGenerator/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:54 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/ModuleCatalog/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:43 +0000
+
+2012-09-26 13:59 vsr
+
+ * src/MPIContainer/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:23 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/Logger/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:23:00 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/Logger/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:55 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/LifeCycleCORBA_SWIG/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:47 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/LifeCycleCORBA_SWIG/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:43 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/LifeCycleCORBA/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:37 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/LifeCycleCORBA/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:24 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/Launcher/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:15 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/KernelHelpers/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:22:03 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/KernelHelpers/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:56 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/KERNEL_PY/kernel/parametric/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:52 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/KERNEL_PY/kernel/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:40 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/KERNEL_PY/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:29 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/HDFPersist/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:21:14 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/GenericObj/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:54 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/ParallelDSC/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:42 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:30 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:16 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_User/Datastream/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:10 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_User/Basic/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:20:02 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_User/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:58 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_Python/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:50 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/DSC_Basic/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:44 +0000
+
+2012-09-26 13:58 vsr
+
+ * src/DSC/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:40 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/DF/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:37 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/Container/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:32 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/Communication_SWIG/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:27 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/Communication/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:18 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/Basics/Test/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:03 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/Basics/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:19:02 +0000
+
+2012-09-26 13:57 vsr
+
+ * src/CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:18:52 +0000
+
+2012-09-26 13:57 vsr
+
+ * CMakeLists.txt:
+
+ file CMakeLists.txt was added on branch V7_main on 2012-10-08 10:15:49 +0000
+
+2012-09-26 13:57 ana
+
+ * configure.ac, CMakeLists.txt, src/CMakeLists.txt,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/CMakeLists.txt, src/Basics/Test/CMakeLists.txt,
+ src/Communication/CMakeLists.txt,
+ src/Communication_SWIG/CMakeLists.txt,
+ src/Container/CMakeLists.txt, src/DF/CMakeLists.txt,
+ src/DSC/CMakeLists.txt, src/DSC/DSC_Basic/CMakeLists.txt,
+ src/DSC/DSC_Python/CMakeLists.txt,
+ src/DSC/DSC_User/CMakeLists.txt,
+ src/DSC/DSC_User/Basic/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Calcium/CMakeLists.txt,
+ src/DSC/DSC_User/Datastream/Palm/CMakeLists.txt,
+ src/DSC/ParallelDSC/CMakeLists.txt,
+ src/GenericObj/CMakeLists.txt, src/HDFPersist/CMakeLists.txt,
+ src/KERNEL_PY/CMakeLists.txt,
+ src/KERNEL_PY/kernel/CMakeLists.txt,
+ src/KERNEL_PY/kernel/parametric/CMakeLists.txt,
+ src/KernelHelpers/CMakeLists.txt,
+ src/KernelHelpers/Test/CMakeLists.txt,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ src/Launcher/CMakeLists.txt, src/LifeCycleCORBA/CMakeLists.txt,
+ src/LifeCycleCORBA/Test/CMakeLists.txt,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA_SWIG/CMakeLists.txt,
+ src/LifeCycleCORBA_SWIG/Test/CMakeLists.txt,
+ src/Logger/CMakeLists.txt, src/Logger/Test/CMakeLists.txt,
+ src/MPIContainer/CMakeLists.txt,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/CMakeLists.txt,
+ src/ModuleGenerator/CMakeLists.txt,
+ src/NOTIFICATION_SWIG/CMakeLists.txt,
+ src/NamingService/CMakeLists.txt,
+ src/NamingService/Test/CMakeLists.txt,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/Notification/CMakeLists.txt,
+ src/ParallelContainer/CMakeLists.txt,
+ src/Registry/CMakeLists.txt, src/ResourcesManager/CMakeLists.txt,
+ src/SALOMEDS/CMakeLists.txt, src/SALOMEDS/Test/CMakeLists.txt,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDSClient/CMakeLists.txt,
+ src/SALOMEDSImpl/CMakeLists.txt,
+ src/SALOMEDSImpl/Test/CMakeLists.txt,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMELocalTrace/CMakeLists.txt,
+ src/SALOMELocalTrace/Test/CMakeLists.txt,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMETraceCollector/CMakeLists.txt,
+ src/SALOMETraceCollector/Test/CMakeLists.txt,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/TOOLSDS/CMakeLists.txt, src/TestContainer/CMakeLists.txt,
+ src/TestMPIContainer/CMakeLists.txt,
+ src/UnitTests/CMakeLists.txt, src/Utils/CMakeLists.txt,
+ src/Utils/Test/CMakeLists.txt, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, salome_adm/CMakeLists.txt,
+ salome_adm/Makefile.am, salome_adm/SALOMEconfig.ref.in,
+ salome_adm/cmake_files/CMakeLists.txt,
+ salome_adm/cmake_files/SalomeMacros.cmake:
+
+ Porting SALOME KERNEL to CMake
+
+2012-09-24 14:22 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Win32 compatibility for HexoticPLUGIN module
+
+2012-09-24 10:33 vsr
+
+ * bin/launchConfigureParser.py:
+
+ 0021781: [CEA 616] Suppress . in the user's config files
+
+2012-09-21 08:15 ageay
+
+ * salome_adm/cmake_files/FindSPHINX.cmake:
+
+ Check usability of sphynx before declaring it OK.
+
+2012-09-19 13:22 ana
+
+ * salome_adm/cmake_files/: FindPTHREADS.cmake, UseOMNIORB.cmake,
+ FindPLATFORM.cmake:
+
+ Compilation SALOME by CMake(windows/linux)
+
+2012-09-11 17:06 vsr
+
+ * doc/salome/: main.dox, running_salome.dox:
+
+ 0021670: EDF 2265 GUI: Update GUI documentation
+ Move documentation on SALOME running from GUI to KERNEL module.
+
+2012-09-11 17:06 vsr
+
+ * doc/salome/running_salome.dox:
+
+ file running_salome.dox was added on branch V7_main on 2012-10-08 10:17:36 +0000
+
+2012-09-11 14:52 rnv
+
+ * doc/salome/kernel_salome.dox:
+
+ Implementation of the "0021670: EDF 2265 GUI: Update GUI documentation" issue.
+
+2012-08-15 12:42 inv
+
+ * configure.ac:
+
+ Increment version number (prepare SALOME version 7.0.0)
+
+2012-08-08 15:54 vsr
+
+ * src/: Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/ResourcesManager_Defs.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/Makefile.am, SALOMEDS/README_attributes,
+ SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeName.cxx,
+ SALOMEDS/SALOMEDS_AttributeName.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeString.cxx,
+ SALOMEDS/SALOMEDS_AttributeString.hxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS/SALOMEDS_Attributes.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_Client.cxx,
+ SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS/SALOMEDS_Defines.hxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_IParameters.cxx,
+ SALOMEDS/SALOMEDS_IParameters.hxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponent.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDS/SALOME_DriverPy.py, SALOMEDS/Test/Makefile.am,
+ SALOMEDS/Test/SALOMEDSTest.cxx, SALOMEDS/Test/SALOMEDSTest.hxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ SALOMEDS/Test/TestSALOMEDS.cxx, SALOMEDS/Test/TestSALOMEDS.py,
+ SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ SALOMETraceCollector/Test/Makefile.am,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponent.hxx,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
+ UnitTests/UnitTests.cxx, UnitTests/UnitTests.py,
+ Utils/Makefile.am, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
+ Utils/SALOME_Utils.hxx, Utils/SALOME_utilities.py,
+ Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
+ Utils/duplicate.cxx, Utils/Test/Makefile.am,
+ Utils/Test/TestUtils.cxx, Utils/Test/TestUtils.py,
+ Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx,
+ win32pm/setup.py, win32pm/win32pm.c:
+
+ Merge from V6_main_20120808 08Aug12
+
+2012-08-08 15:51 vsr
+
+ * src/: KERNEL_PY/salome_iapp.py, KERNEL_PY/salome_kernel.py,
+ KERNEL_PY/salome_notebook.py, KERNEL_PY/salome_pynode.py,
+ KERNEL_PY/salome_shared_modules.py, KERNEL_PY/salome_study.py,
+ KERNEL_PY/salome_test.py, KERNEL_PY/salome_version.py,
+ KERNEL_PY/kernel/Makefile.am, KERNEL_PY/kernel/__init__.py,
+ KERNEL_PY/kernel/datamodeler.py, KERNEL_PY/kernel/deprecation.py,
+ KERNEL_PY/kernel/diclookup.py, KERNEL_PY/kernel/enumerate.py,
+ KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ KERNEL_PY/kernel/logconfig.py.in, KERNEL_PY/kernel/logger.py,
+ KERNEL_PY/kernel/pyunittester.py, KERNEL_PY/kernel/services.py,
+ KERNEL_PY/kernel/studyedit.py, KERNEL_PY/kernel/syshelper.py,
+ KERNEL_PY/kernel/termcolor.py, KERNEL_PY/kernel/testdata.py,
+ KERNEL_PY/kernel/threadhelper.py,
+ KERNEL_PY/kernel/uiexception.py, KERNEL_PY/kernel/unittester.py,
+ KERNEL_PY/kernel/parametric/Makefile.am,
+ KERNEL_PY/kernel/parametric/__init__.py,
+ KERNEL_PY/kernel/parametric/compo_utils.py,
+ KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ KernelHelpers/KernelHelpers.hxx,
+ KernelHelpers/KernelHelpersUseCases.cxx,
+ KernelHelpers/Makefile.am,
+ KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
+ KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
+ KernelHelpers/SALOME_KernelServices.cxx,
+ KernelHelpers/SALOME_KernelServices.hxx,
+ KernelHelpers/SALOME_StudyEditor.cxx,
+ KernelHelpers/SALOME_StudyEditor.hxx,
+ KernelHelpers/Test/KernelHelpersUnitTests.cxx,
+ KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ KernelHelpers/Test/Makefile.am,
+ KernelHelpers/Test/TestKernelHelpers.cxx,
+ KernelHelpers/Test/TestKernelHelpers.py, Launcher/BatchTest.cxx,
+ Launcher/BatchTest.hxx, Launcher/Launcher.cxx,
+ Launcher/Launcher.hxx, Launcher/Launcher_Job.cxx,
+ Launcher/Launcher_Job.hxx, Launcher/Launcher_Job_Command.cxx,
+ Launcher/Launcher_Job_Command.hxx,
+ Launcher/Launcher_Job_PythonSALOME.cxx,
+ Launcher/Launcher_Job_PythonSALOME.hxx,
+ Launcher/Launcher_Job_SALOME.cxx,
+ Launcher/Launcher_Job_SALOME.hxx,
+ Launcher/Launcher_Job_YACSFile.cxx,
+ Launcher/Launcher_Job_YACSFile.hxx, Launcher/Launcher_Utils.hxx,
+ Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
+ Launcher/SALOME_Launcher_Handler.cxx,
+ Launcher/SALOME_Launcher_Handler.hxx,
+ Launcher/SALOME_Launcher_Parser.cxx,
+ Launcher/SALOME_Launcher_Parser.hxx,
+ Launcher/SALOME_Launcher_defs.hxx, Launcher/TestLauncher.cxx,
+ LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestContainerManager.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA/Test/Makefile.am,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.am,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
+ Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
+ MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
+ MPIContainer/launch_testMPI2.csh, MPIContainer/testMPI2.cxx,
+ ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/TestModuleCatalog.py, ModuleGenerator/IDLparser.py,
+ ModuleGenerator/Makefile.am, ModuleGenerator/README,
+ ModuleGenerator/testIDLparser.in,
+ ModuleGenerator/tests/AddComponent.idl,
+ ModuleGenerator/tests/SubComponent.idl,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/SALOME_NamingService_defs.hxx,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py,
+ Notification/CosNotifyShorthands.h, Notification/Makefile.am,
+ Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Notification/SALOME_NOTIFICATION.hxx,
+ ParallelContainer/Makefile.am,
+ ParallelContainer/Parallel_Salome_file_i.cxx,
+ ParallelContainer/Parallel_Salome_file_i.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ Registry/Makefile.am, Registry/RegistryConnexion.cxx:
+
+ Merge from V6_main_20120808 08Aug12
+
+2012-08-08 15:48 vsr
+
+ * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.cxx,
+ Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Communication.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
+ Communication_SWIG/Makefile.am,
+ Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx, Container/SALOME_Container.py,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.cxx,
+ Container/SALOME_FileTransfer_i.hxx, Container/SALOME_PyNode.py,
+ Container/Salome_file_i.cxx, Container/Salome_file_i.hxx,
+ Container/TestSalome_file.cxx, DF/DF_Application.cxx,
+ DF/DF_Application.hxx, DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
+ DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
+ DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
+ DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
+ DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
+ DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
+ DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
+ DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
+ DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
+ DSC/DSC_Basic/PortProperties_i.hxx,
+ DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
+ DSC/DSC_Python/dsccalcium.py, DSC/DSC_User/DSC_Exception.hxx,
+ DSC/DSC_User/Makefile.am, DSC/DSC_User/Superv_Component_i.cxx,
+ DSC/DSC_User/Superv_Component_i.hxx, DSC/DSC_User/base_port.cxx,
+ DSC/DSC_User/base_port.hxx, DSC/DSC_User/port_factory.hxx,
+ DSC/DSC_User/provides_port.cxx, DSC/DSC_User/provides_port.hxx,
+ DSC/DSC_User/test_DSC_Exception.cxx, DSC/DSC_User/uses_port.cxx,
+ DSC/DSC_User/uses_port.hxx, DSC/DSC_User/Basic/Makefile.am,
+ DSC/DSC_User/Basic/basic_port_factory.cxx,
+ DSC/DSC_User/Basic/basic_port_factory.hxx,
+ DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ DSC/DSC_User/Datastream/ConstTraits.hxx,
+ DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ DSC/DSC_User/Datastream/DisplayPair.hxx,
+ DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ DSC/DSC_User/Datastream/GenericPort.hxx,
+ DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ DSC/DSC_User/Datastream/Makefile.am,
+ DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ DSC/DSC_User/Datastream/fake.cc,
+ DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumC.c,
+ DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/calcium.h,
+ DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ DSC/DSC_User/Datastream/Calcium/version.h,
+ DSC/DSC_User/Datastream/Palm/Makefile.am,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
+ DSC/ParallelDSC/ParallelDSC_i.hxx,
+ DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ GenericObj/Makefile.am, GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
+ HDFPersist/HDFarray.cc, HDFPersist/HDFarray.hxx,
+ HDFPersist/HDFarrayClose.c, HDFPersist/HDFarrayCreate.c,
+ HDFPersist/HDFarrayGetDim.c, HDFPersist/HDFarrayGetType.c,
+ HDFPersist/HDFarrayGetTypeId.c, HDFPersist/HDFarrayGetnDim.c,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
+ HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
+ HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
+ HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
+ HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
+ HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
+ HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
+ HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
+ HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
+ HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
+ KERNEL_PY/__init__.py, KERNEL_PY/batchmode_salome.py,
+ KERNEL_PY/import_hook.py, KERNEL_PY/iparameters.py,
+ KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/omnipatch.py,
+ KERNEL_PY/salome.py, KERNEL_PY/salome_ComponentGUI.py,
+ KERNEL_PY/salome_genericobj.py:
+
+ Merge from V6_main_20120808 08Aug12
+
+2012-08-08 15:44 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/VERSION.in, bin/addToKillList.py, bin/appli_clean.sh,
+ bin/appli_gen.py, bin/appli_install.sh, bin/config_appli.xml,
+ bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runIDLparser, bin/runNS.py, bin/runNS.sh, bin/runSalome,
+ bin/runSalome.bat, bin/runSalome.csh, bin/runSalome.ksh,
+ bin/runSalome.py, bin/salome.launch, bin/salomeConsole.py,
+ bin/salome_session.py, bin/salome_utils.py, bin/server.py,
+ bin/setenv.py, bin/showNS.py, bin/shutdownSalome.py,
+ bin/virtual_salome.py, bin/waitContainers.py, bin/waitNS.py,
+ bin/waitNS.sh, bin/appliskel/.bashrc,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/Makefile.am,
+ bin/appliskel/README, bin/appliskel/SalomeApp.xml,
+ bin/appliskel/envd, bin/appliskel/getAppliPath.py,
+ bin/appliskel/killCurrentPort,
+ bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/README.cluster-CCRT, doc/SALOME_Application.txt,
+ doc/UnitTests.txt, doc/index.txt, doc/kernel_resources.txt,
+ doc/rst.css, doc/txt2html.sh, doc/userguide.txt,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/conf.py.in,
+ doc/docutils/docapi.rst, doc/docutils/index.rst,
+ doc/docutils/kernel.rst, doc/docutils/overview.rst,
+ doc/docutils/parametric.rst, doc/docutils/salomepypkg.rst,
+ doc/docutils/archives/INSTALL.txt,
+ doc/docutils/archives/KERNEL_Services.txt,
+ doc/docutils/archives/SALOME_Application.txt,
+ doc/docutils/archives/UnitTests.txt,
+ doc/docutils/archives/index.txt,
+ doc/docutils/archives/kernel_resources.txt,
+ doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
+ doc/docutils/archives/userguide.txt, doc/salome/Batch.texi,
+ doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_salome.dox, doc/salome/kernel_services.dox,
+ doc/salome/kernel_services_cpphelpers.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/examples/example1,
+ doc/salome/examples/example10, doc/salome/examples/example11,
+ doc/salome/examples/example12, doc/salome/examples/example13,
+ doc/salome/examples/example14, doc/salome/examples/example15,
+ doc/salome/examples/example16, doc/salome/examples/example17,
+ doc/salome/examples/example18, doc/salome/examples/example19,
+ doc/salome/examples/example20, doc/salome/examples/example21,
+ doc/salome/examples/example22, doc/salome/examples/example23,
+ doc/salome/examples/example3, doc/salome/examples/example4,
+ doc/salome/examples/example5, doc/salome/examples/example6,
+ doc/salome/examples/example7, doc/salome/examples/example8,
+ doc/salome/examples/example9, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, doc/salome/gui/images/head.png,
+ doc/salome/gui/images/icon_about.png,
+ doc/salome/gui/static/doxygen.css,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/images/head.png, doc/salome/tui/input/index.dox,
+ doc/salome/tui/static/doxygen.css,
+ doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html.in, idl/Calcium_Ports.idl,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSPHINX.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/UseOMNIORB.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/cmake_files/prepare_generating_doc.py,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_tbb.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
+ src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
+ src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
+ src/Basics/Test/Makefile.am:
+
+ Merge from V6_main_20120808 08Aug12
+
+2012-07-31 10:08 rnv
+
+ * src/Launcher/: Launcher_Job.cxx, Launcher_Job_SALOME.cxx:
+
+ Fix for the "21727: [CEA 584] sending a Yacs graph from Windows to a cluster " issue.
+
+2012-06-27 11:44 gdd
+
+ * bin/: killSalomeWithPort.py, salome_session.py:
+
+ Add os.path.realpath
+
+2012-06-20 07:42 mpv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Added ProE
+
+2012-06-07 17:19 ageay
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
+ FindHDF5.cmake, FindLIBXML2.cmake, FindMPI.cmake,
+ FindOMNIORB.cmake, FindPYTHON.cmake:
+
+ standardization of cmakization 2.
+
+2012-06-07 16:27 ageay
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
+ FindHDF5.cmake, FindKERNEL.cmake, FindLIBXML2.cmake,
+ FindMPI.cmake, FindOMNIORB.cmake, FindPYTHON.cmake:
+
+ cmakeization standardization.
+
+2012-06-07 13:53 gdd
+
+ * src/DSC/DSC_User/Datastream/GenericPort.hxx:
+
+ Another fix for compilation with gcc 4.7
+
+2012-06-07 13:26 gdd
+
+ * salome_adm/unix/config_files/check_vtk.m4,
+ src/Basics/Basics_DirUtils.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/testMPI2.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Fix for compilation with gcc 4.7
+
+2012-06-07 12:07 vsr
+
+ * bin/runSalome.py:
+
+ 0021482: [CEA 539] inconsistency between getAppliPath.py and runAppli
+
+2012-06-07 11:22 ribes
+
+ * idl/DSC_Engines.idl, src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx:
+
+ Adding a new method to initialize YACS services if
+ the multi property on the service is used.
+
+2012-06-05 12:44 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/Makefile.am,
+ bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py,
+ bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSalomeScript, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/Makefile.am,
+ doc/README.cluster-CCRT,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/main.dox,
+ doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
+ doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/static/footer.html, idl/Calcium_Ports.idl.in,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
+ idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/Makefile.am, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSPHINX.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/UseOMNIORB.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/cmake_files/prepare_generating_doc.py,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_tbb.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
+ src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
+ src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
+ src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
+ src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
+ src/HDFPersist/HDFarrayGetDim.c,
+ src/HDFPersist/HDFarrayGetType.c,
+ src/HDFPersist/HDFarrayGetTypeId.c,
+ src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
+ src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
+ src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/datamodeler.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/diclookup.py,
+ src/KERNEL_PY/kernel/enumerate.py,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/pyunittester.py,
+ src/KERNEL_PY/kernel/services.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/syshelper.py,
+ src/KERNEL_PY/kernel/termcolor.py,
+ src/KERNEL_PY/kernel/testdata.py,
+ src/KERNEL_PY/kernel/threadhelper.py,
+ src/KERNEL_PY/kernel/uiexception.py,
+ src/KERNEL_PY/kernel/unittester.py,
+ src/KERNEL_PY/kernel/parametric/Makefile.am,
+ src/KERNEL_PY/kernel/parametric/__init__.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ src/KernelHelpers/KernelHelpers.hxx,
+ src/KernelHelpers/KernelHelpersUseCases.cxx,
+ src/KernelHelpers/Makefile.am,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
+ src/KernelHelpers/SALOME_KernelServices.cxx,
+ src/KernelHelpers/SALOME_KernelServices.hxx,
+ src/KernelHelpers/SALOME_StudyEditor.cxx,
+ src/KernelHelpers/SALOME_StudyEditor.hxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ src/KernelHelpers/Test/Makefile.am,
+ src/KernelHelpers/Test/TestKernelHelpers.cxx,
+ src/KernelHelpers/Test/TestKernelHelpers.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Merge from V6_5_BR 05/06/2012
+
+2012-05-31 08:22 mpv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ TRIPOLI project specific configuration
+
+2012-05-31 07:45 mpv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ TRIPOLI project specific configuration
+
+2012-05-25 13:00 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Generate documentation in the GHS3DPRLPLUGIN module.
+
+2012-05-24 10:47 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix regression of Save()/SaveAs() operation (multi-file mode) caused by previous integrations.
+
+2012-04-27 17:10 ageay
+
+ * salome_adm/cmake_files/FindHDF5.cmake:
+
+ Little type error.
+
+2012-04-27 11:23 rnc
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ updated salome version
+
+2012-04-27 08:59 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Remove old packages from Geometry module.
+
+2012-04-24 15:36 rnc
+
+ * salome_adm/cmake_files/: FindHDF5.cmake, am2cmake.py:
+
+ Dealing with HDF5 compiled with mpi:
+ - Addition of a temporary necessary line to remove after cmakeization.
+ - Reordering of checking procedure in am2cmake in order to check MPI before HDF5.
+
+2012-04-24 09:42 ageay
+
+ * salome_adm/cmake_files/FindHDF5.cmake:
+
+ Sorry for bugs in string. Dealing with HDF5 compiled with mpi. addition of MPI_INCLUDES_DIR into HDF5_INCLUDES_DIR. Same for FLAGs and LIBS.
+
+2012-04-24 09:33 ageay
+
+ * salome_adm/cmake_files/FindHDF5.cmake:
+
+ Dealing with HDF5 compiled with mpi. addition of MPI_INCLUDES_DIR into HDF5_INCLUDES_DIR. Same for FLAGs and LIBS.
+
+2012-04-23 13:59 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Fix problem with --portkill / -p option
+
+2012-04-20 09:25 rnv
+
+ * doc/salome/gui/doxyfile.in:
+
+ Change dot image format from jpg to png.
+
+2012-04-20 09:11 rnv
+
+ * doc/salome/tui/doxyfile.in:
+
+ Change dot image format from jpg to png.
+
+2012-04-18 16:24 vsr
+
+ * doc/salome/main.dox:
+
+ Fixed error in the documentation (wrong indentation)
+
+2012-04-18 15:57 gdd
+
+ * doc/salome/main.dox:
+
+ Fix small mispell
+
+2012-04-18 10:01 vsr
+
+ * doc/salome/tui/Makefile.am:
+
+ Fix problem of make distcheck on automake 1.11 (Mandriva 2010):
+ - we have to uninstall only the staff generated for tui doc files and nothing more
+
+2012-04-17 13:56 rnv
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Add new version of the boost library.
+
+2012-04-17 09:28 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ 0021548: [CEA 555]: Pb with --shutdown-servers=1 option
+ Fix regression caused by previous integration
+
+2012-04-13 17:32 barate
+
+ * src/Launcher/Launcher.cxx:
+
+ Properly handle errors in queryJob
+
+2012-04-12 16:04 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/Makefile.am,
+ bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py,
+ bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSalomeScript, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/Makefile.am,
+ doc/README.cluster-CCRT,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/Makefile.am, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSPHINX.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/InstallAndCompilePythonFile.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/UseOMNIORB.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/cmake_files/prepare_generating_doc.py,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_tbb.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_OCCTVersion.hxx, src/Basics/Basics_Utils.cxx,
+ src/Basics/Basics_Utils.hxx, src/Basics/Makefile.am,
+ src/Basics/SALOME_Basics.hxx, src/Basics/Test/BasicMainTest.hxx,
+ src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
+ src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
+ src/HDFPersist/HDFarrayGetDim.c,
+ src/HDFPersist/HDFarrayGetType.c,
+ src/HDFPersist/HDFarrayGetTypeId.c,
+ src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
+ src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
+ src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/datamodeler.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/diclookup.py,
+ src/KERNEL_PY/kernel/enumerate.py,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/pyunittester.py,
+ src/KERNEL_PY/kernel/services.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/syshelper.py,
+ src/KERNEL_PY/kernel/termcolor.py,
+ src/KERNEL_PY/kernel/testdata.py,
+ src/KERNEL_PY/kernel/threadhelper.py,
+ src/KERNEL_PY/kernel/uiexception.py,
+ src/KERNEL_PY/kernel/unittester.py,
+ src/KERNEL_PY/kernel/parametric/Makefile.am,
+ src/KERNEL_PY/kernel/parametric/__init__.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ src/KernelHelpers/KernelHelpers.hxx,
+ src/KernelHelpers/KernelHelpersUseCases.cxx,
+ src/KernelHelpers/Makefile.am,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
+ src/KernelHelpers/SALOME_KernelServices.cxx,
+ src/KernelHelpers/SALOME_KernelServices.hxx,
+ src/KernelHelpers/SALOME_StudyEditor.cxx,
+ src/KernelHelpers/SALOME_StudyEditor.hxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ src/KernelHelpers/Test/Makefile.am,
+ src/KernelHelpers/Test/TestKernelHelpers.cxx,
+ src/KernelHelpers/Test/TestKernelHelpers.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Update copyright information
+
+2012-04-12 13:00 vsr
+
+ * configure.ac:
+
+ Increment version
+
+2012-04-12 09:06 rnv
+
+ * doc/salome/: gui/static/doxygen.css, gui/static/header.html.in,
+ tui/static/doxygen.css, tui/static/header.html.in:
+
+ Porting documentation on the Doxygen-1.8.0
+
+2012-04-03 14:45 ageay
+
+ * salome_adm/cmake_files/UseOMNIORB.cmake:
+
+ MED CMakization
+
+2012-04-03 12:39 ageay
+
+ * salome_adm/cmake_files/UseOMNIORB.cmake:
+
+ MED CMakization
+
+2012-04-02 15:40 ageay
+
+ * salome_adm/cmake_files/InstallAndCompilePythonFile.cmake:
+
+ MED CMakization
+
+2012-04-02 14:40 ageay
+
+ * salome_adm/cmake_files/: InstallAndCompilePythonFile.cmake,
+ Makefile.am:
+
+ Usefull Macro for *.pyc and *.pyo on install.
+
+2012-03-30 11:59 ageay
+
+ * salome_adm/cmake_files/FindLIBXML2.cmake:
+
+ MED CMakization.
+
+2012-03-30 10:36 ageay
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ MED CMakization.
+
+2012-03-29 17:39 vsr
+
+ * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
+
+ Improve dev docs
+
+2012-03-28 18:05 barate
+
+ * src/: Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Merge from BR_VISHNU
+
+2012-03-28 16:34 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build PLUGIN'S documentation.
+
+2012-03-27 16:40 daix
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Special parameters for VISHNU removed
+
+2012-03-23 16:48 ageay
+
+ * salome_adm/cmake_files/Makefile.am:
+
+ MED CMakization
+
+2012-03-22 12:53 rnv
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Win32 compilation.
+
+2012-03-22 11:31 ribes
+
+ * src/Container/Container_i.cxx:
+
+ Add new env var TIMEOUT_TO_WAIT_EXE_COMPONENT
+
+ Defines how many seconds a container waits an exe component to be loaded
+
+2012-03-22 10:45 ageay
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Cmakization of MED.
+
+2012-03-22 09:50 ageay
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ Cmakization of MED.
+
+2012-03-21 18:01 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Adding new env variable for SALOME: TIMEOUT_TO_LAUNCH_CONTAINER
+
+ If set to an int, defines how many seconds the SALOME container manager
+ will wait for a container
+
+2012-03-21 17:43 ribes
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Basic FaultTolerance for ContainerManager
+
+ If a machine is not available (shutdown for instance), try to launch
+ the container on another resource according to the getFittingResources list.
+
+2012-03-21 15:27 ageay
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ Cmakization of MED.
+
+2012-03-21 14:07 ageay
+
+ * salome_adm/cmake_files/UseOMNIORB.cmake:
+
+ Cmakization of MED.
+
+2012-03-21 13:53 ageay
+
+ * salome_adm/cmake_files/: FindKERNEL.cmake, FindOMNIORB.cmake:
+
+ Cmakization of MED.
+
+2012-03-21 09:53 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix check of the AM2CMAKE_FORCE_GENERATION environment variable
+
+2012-03-21 09:33 eap
+
+ * salome_adm/unix/config_files/: Makefile.am, check_tbb.m4:
+
+ 0021336: EDF 1717 SMESH: New algorithm "body fitting" cartesian unstructured
+
+ +check_tbb.m4
+
+2012-03-21 09:25 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Forced generation of the CMakeLists.txt from Makefile.am
+
+2012-03-20 17:03 ageay
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Cmakization of MED.
+
+2012-03-20 13:00 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Bug IPAL22865 "Re-structurization of Partition-related packges in SALOME GEOM module"
+ Win32 compilation
+
+2012-03-19 17:54 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Working on PAL# 2078
+
+ Adding two new attributes to a SALOME resource:
+
+ is_cluster_head -> set to "true" if the resource refers to a cluster head (false by default)
+ working_directory -> defines a default working directory in a cluster
+
+2012-03-19 16:01 ageay
+
+ * salome_adm/cmake_files/: FindCPPUNIT.cmake, FindHDF5.cmake:
+
+ cmakization of MED.
+
+2012-03-19 11:40 ribes
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Resolve PAL# 2058
+
+ Create a default catalog resources file if USER_CATALOG_RESOURCES_FILE
+ env variable is set on an unexisting file.
+
+ If we cannot create the file, we use the default catalog resource file
+
+2012-03-19 08:26 vsr
+
+ * src/KERNEL_PY/salome_version.py, bin/VERSION.in,
+ KERNEL_version.h.in, configure.ac:
+
+ Add functions to know that SALOME module version is development one
+
+2012-03-16 17:04 ageay
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ am2cmake.py does not overwrite not automatically generated CMakeLists.txt.
+
+2012-03-15 12:39 ageay
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Correction of bug on bin_program.
+
+2012-03-15 09:51 eap
+
+ * src/Container/Container_i.cxx:
+
+ 0021208: EDF 1138 SMESH: Performance issue when loading SMESH with an hdf file containing a big mesh
+
+ - std::string command = "rm -f ";
+ + std::string command = "rm -rf ";
+
+2012-03-15 07:58 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Improve killSalomeWithPort script: before killing the servers with kill command, give them chance to shutdown in a proper way:
+ - attempt 2: invoke shutdowning in a separate thread to prevent script blocking if shutdown procedure hangs up
+
+2012-03-15 07:51 vsr
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Shutdown Session server (move it to the end of shutdownServers() to avoid problems with shutdowning embedded servers)
+
+2012-03-14 15:39 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Improve killSalomeWithPort script: before killing the servers with kill command, give them chance to shutdown in a proper way
+
+2012-03-14 11:56 jfa
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Internal issue 0022865: Restructurization of Partition packages.
+
+2012-03-13 15:14 vsr
+
+ * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
+
+ Register temporary files in the container; automatically remove temporary files on shutdown.
+
+2012-03-13 13:22 vsr
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Implement Shutdown() method for the SALOME Session server
+
+2012-03-13 12:27 ageay
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ CMake now manages graph partionners scotch, metis and parmetis.
+
+2012-03-13 10:21 vsr
+
+ * idl/SALOME_Session.idl:
+
+ Implement Shutdown() method for the SALOME Session server
+
+2012-03-08 18:14 prascle
+
+ * bin/orbmodule.py:
+
+ PR: Bug PAL EDF 2090
+ sometimes, on cluster systems heavily loaded, the timeout on connection to Naming Service in initNS() is too short and SALOME launch aborts. 1s --> 10s
+
+2012-02-21 13:56 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Print the missing boost library if necessary
+
+2012-02-15 12:21 vsr
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ KERNEL_PY/iparameters.py:
+
+ Fix bug of Dump visual state functionality - IParameter should be cleared in the script in order to prevent having its incorrect state when running Python script(s) in the same study.
+
+2012-02-13 13:49 boulant
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ IMP: studyedit, helper functions to convert study in studyId et conversely
+
+2012-02-10 16:49 ageay
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ In openmpi need to link with libmpi_cxx and libmpi.so
+
+2012-02-10 16:48 ageay
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ On Fedora libboost_thread.so does not exit.
+
+2012-02-09 16:06 eap
+
+ * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
+
+ 0021375: EDF 1671 SMESH: Dump study of current state
+
+ + virtual void SetOption(const char*, const char*);
+ + virtual char* GetOption(const char*);
+
+2012-02-09 16:06 eap
+
+ * idl/SALOME_Component.idl:
+
+ 0021375: EDF 1671 SMESH: Dump study of current state
+
+ + void SetOption(in string optionName, in string value);
+ + string GetOption(in string optionName);
+
+2012-02-08 07:51 ana
+
+ * salome_adm/cmake_files/: Makefile.am, prepare_generating_doc.py:
+
+ doc compilation
+
+2012-02-06 13:32 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build documentation by CMAKE: small correction
+
+2012-02-06 12:37 ana
+
+ * salome_adm/cmake_files/copytree1.py:
+
+ Build documentation by CMAKE
+
+2012-02-06 12:32 ana
+
+ * salome_adm/cmake_files/: Makefile.am, am2cmake.py:
+
+ Build documentation by CMAKE
+
+2012-02-06 11:20 barate
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
+ salome_adm/cmake_files/FindSPHINX.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/prepare_generating_doc.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/__init__.py,
+ src/KERNEL_PY/kernel/services.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job_SALOME.cxx, src/Launcher/Makefile.am,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Merge from V6_main
+
+2012-02-06 08:29 barate
+
+ * salome_adm/cmake_files/prepare_generating_doc.py:
+
+ file prepare_generating_doc.py was added on branch BR_VISHNU on 2012-02-06 10:20:58 +0000
+
+2012-02-06 08:29 ana
+
+ * salome_adm/cmake_files/: Makefile.am, prepare_generating_doc.py:
+
+ Implementation of the "0020839: EDF 1370 DOC : Update of the TUI features documentation / help(aMethod)" issue.
+
+2012-02-01 13:19 barate
+
+ * salome_adm/cmake_files/FindSPHINX.cmake:
+
+ file FindSPHINX.cmake was added on branch BR_VISHNU on 2012-02-06 10:20:58 +0000
+
+2012-02-01 13:19 rnv
+
+ * salome_adm/cmake_files/: FindSPHINX.cmake, Makefile.am,
+ am2cmake.py:
+
+ 1) Build documentation using sphinx.
+ 2) win32 compilation of the Geometry module.
+
+2012-02-01 13:15 rnv
+
+ * src/KERNEL_PY/__init__.py:
+
+ Win32 compatibility.
+
+2012-01-27 09:15 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build SALOME on win32 platform.
+
+2012-01-26 11:55 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix bug in the study manager (SaveAs operation): if the study is not save due to some reason, it's URL is nevertheless changed to the new one, and "Saved" stautus is set to True.
+
+2012-01-26 10:28 vsr
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ Improve Python container:
+ - load_component_Library() function returns now reason of the failure if it can't load the component module
+ - avoid raising an exception when triyng loading unexistent or inappropriate module (for instance, if module is not a Python, but C++ one).
+
+2012-01-25 14:24 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Fix bugs in GetDirFromPath() and GetNameFromPath() functions: they give wrong result if file is in the root directory.
+
+2012-01-16 11:06 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Raise correct exception in Launcher when maximum_duration parameter does not contain ':'
+
+2012-01-13 10:48 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build SALOME using cmake.
+
+2012-01-11 12:37 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Porting GUI_SRC/tools/dlgfactory on win32 platform
+
+2012-01-10 15:24 rnv
+
+ * salome_adm/cmake_files/am2cmake.py,
+ src/ResourcesManager/Makefile.am:
+
+ Build SALOME on win32 platform.
+
+2012-01-06 11:27 barate
+
+ * src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
+
+ Add functions to save / load exchange variables to / from XML files
+
+2012-01-05 18:11 barate
+
+ * src/KERNEL_PY/kernel/services.py:
+
+ Fix sphinx doc generation in GEOM and SMESH
+
+2012-01-05 16:10 barate
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx, src/Launcher/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Improvements for Salome on clusters (fix bug PAL #1966):
+ - New option to launch Salome servers with a simple fork instead of daemons
+ - Add internal protocols pbsdsh and blaunch for PBS and LSF clusters
+
+2011-12-15 09:39 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Build YACS documentation using sphinx-1.0.7 via cmake.
+
+2011-12-08 12:43 mpv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ TRIPOLI and MATERIALS specific rules of compilation
+
+2011-12-05 11:05 vsr
+
+ * Makefile.am, configure.ac, bin/launchConfigureParser.py,
+ bin/salome_utils.py, bin/virtual_salome.py,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/killCurrentPort,
+ bin/appliskel/runParam, doc/Makefile.am,
+ doc/docutils/Makefile.am, doc/docutils/archives/UnitTests.txt,
+ doc/salome/Makefile.am, doc/salome/unittests.dox,
+ doc/salome/tui/Makefile.am, idl/Makefile.am,
+ resources/Makefile.am, salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/config_files/check_hdf5.m4, src/Makefile.am,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumC.c,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ src/KERNEL_PY/kernel/services.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/syshelper.py,
+ src/KernelHelpers/KernelHelpers.hxx,
+ src/KernelHelpers/KernelHelpersUseCases.cxx,
+ src/KernelHelpers/Makefile.am,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
+ src/KernelHelpers/SALOME_KernelServices.hxx,
+ src/KernelHelpers/SALOME_StudyEditor.hxx,
+ src/KernelHelpers/TestKernelHelpers.cxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.cxx,
+ src/KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ src/KernelHelpers/Test/Makefile.am,
+ src/KernelHelpers/Test/TestKernelHelpers.cxx,
+ src/KernelHelpers/Test/TestKernelHelpers.py,
+ src/Launcher/Makefile.am, src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Merge from V6_4_BR 05/12/2011
+
+2011-12-01 17:51 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Fix bug in Vishnu parameter
+
+2011-12-01 09:22 barate
+
+ * src/: Launcher/Launcher.cxx, Launcher/Launcher_Job.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Add Vishnu batch manager and Vishnu specific parameters
+
+2011-11-24 15:15 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix pb of undefined symbols in SMESH MEFISTO library when compiling with cmake - linking to libf2c libbrary is required.
+
+2011-11-24 14:51 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Increment version for cmake-based procedure
+
+2011-11-24 11:26 barate
+
+ * bin/appliskel/: CatalogResources.xml, Makefile.am, README,
+ SalomeApp.xml, killCurrentPort, runParam:
+
+ Remove unused files from appliskel and update README
+
+2011-11-23 17:55 ribes
+
+ * doc/docutils/Makefile.am:
+
+ Fix doc generation when compiling with PaCO++
+
+2011-11-23 11:56 vsr
+
+ * bin/: launchConfigureParser.py, salome_utils.py:
+
+ Fix a bug: user preferences file is incorrectly detected on Windows
+
+2011-11-23 08:47 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix problem with cmake-based build procedure - in "light" mode Python is not initialized by SUITApp
+
+2011-11-22 12:25 vsr
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Fix crash in DumpPython if cannot cast Driver to the Component
+
+2011-11-22 11:00 rnv
+
+ * src/Container/: Container_i.cxx, Container_init_python.hxx:
+
+ Fix compilation warnings.
+
+2011-11-18 09:36 rnv
+
+ * src/Basics/Basics_Utils.hxx:
+
+ rnv: prepare SALOME-6.4.0 version for the Win32 platform.
+
+2011-11-16 13:40 rnv
+
+ * salome_adm/cmake_files/am2cmake.py,
+ src/KernelHelpers/SALOME_KernelServices.hxx:
+
+ rnv: Prepare SALOME-6.4.0 version for windows platform.
+
+2011-11-15 18:04 eap
+
+ * src/KERNEL_PY/kernel/services.py:
+
+ Fix errors in generating documentation by SPHINX
+
+ - except RuntimeError, e:
+ + except Exception, e:
+
+2011-11-15 08:31 rnv
+
+ * src/KernelHelpers/KernelHelpers.hxx:
+
+ rnv: Prepare SALOME-6.4.0 version for windows platform: small correction.
+
+2011-11-15 08:07 rnv
+
+ * src/KernelHelpers/: KernelHelpers.hxx, KernelHelpersUseCases.cxx,
+ Makefile.am, SALOMEDS_DriverDefaultImpl.hxx,
+ SALOME_KernelServices.hxx, SALOME_StudyEditor.hxx:
+
+ rnv: Prepare SALOME-6.4.0 for Windows.
+
+2011-11-15 08:07 vsr
+
+ * src/KernelHelpers/KernelHelpers.hxx:
+
+ file KernelHelpers.hxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-15 08:03 rnv
+
+ * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ rnv: Prepare SALOME-6.4.0 for Windows.
+
+2011-11-10 11:27 vsr
+
+ * src/KERNEL_PY/kernel/syshelper.py:
+
+ file syshelper.py was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-10 11:27 boulant
+
+ * bin/virtual_salome.py, src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ src/KERNEL_PY/kernel/syshelper.py:
+
+ IMP: modufication of virtual_salome.py for the needs of plugins directories
+ ADD: syshelper for the need of plugins management
+
+2011-11-09 16:11 barate
+
+ * src/KERNEL_PY/kernel/deprecation.py:
+
+ Fix bug with Python 2.7 and update doc in module deprecation
+
+2011-11-08 11:11 boulant
+
+ * salome_adm/unix/config_files/check_hdf5.m4,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in:
+
+ Modify check_hdf5 for SMESH/padder purpose
+
+2011-11-06 10:04 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Update am2cmake.py to take into account latest changes in GUI module (MOC_FILES_HXX)
+
+2011-11-05 17:49 vsr
+
+ * src/KernelHelpers/: KernelHelpersUseCases.cxx,
+ Test/KernelHelpersUnitTests.cxx:
+
+ Fix compilation warnings
+
+2011-11-05 17:35 vsr
+
+ * src/Launcher/Makefile.am:
+
+ Add missing dependency (fails on some platforms)
+
+2011-11-05 17:33 vsr
+
+ * resources/Makefile.am, src/KERNEL_PY/kernel/Makefile.am:
+
+ complete make dist step
+
+2011-11-05 17:28 vsr
+
+ * Makefile.am, bin/appliskel/Makefile.am, doc/Makefile.am,
+ doc/salome/Makefile.am, idl/Makefile.am:
+
+ complete make dist step
+
+2011-11-05 16:02 vsr
+
+ * doc/: salome/unittests.dox, docutils/archives/UnitTests.txt:
+
+ Remove obsolete files and directories
+
+2011-11-03 18:15 barate
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ Fix bug in studyedit
+
+2011-11-03 11:20 barate
+
+ * salome_adm/cmake_files/: FindKERNEL.cmake, am2cmake.py:
+
+ Fix GUI compilation with CMake
+
+2011-11-02 15:56 boulant
+
+ * src/KERNEL_PY/kernel/: services.py, studyedit.py:
+
+ FIX: add missing commit from the V6_main
+
+2011-11-02 14:50 boulant
+
+ * configure.ac:
+
+ FIX: forget the KernelHeleprs/Test/Makefile
+
+2011-11-02 13:21 boulant
+
+ * src/: Makefile.am, KernelHelpers/KernelHelpersUseCases.cxx,
+ KernelHelpers/Makefile.am, KernelHelpers/TestKernelHelpers.cxx,
+ KernelHelpers/Test/KernelHelpersUnitTests.cxx,
+ KernelHelpers/Test/KernelHelpersUnitTests.hxx,
+ KernelHelpers/Test/Makefile.am,
+ KernelHelpers/Test/TestKernelHelpers.cxx,
+ KernelHelpers/Test/TestKernelHelpers.py:
+
+ IMP: salomization of unit tests in KernelHelpers
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/Test/KernelHelpersUnitTests.cxx:
+
+ file KernelHelpersUnitTests.cxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/Test/KernelHelpersUnitTests.hxx:
+
+ file KernelHelpersUnitTests.hxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/KernelHelpersUseCases.cxx:
+
+ file KernelHelpersUseCases.cxx was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/Test/Makefile.am:
+
+ file Makefile.am was added on branch V6_main on 2011-12-05 10:05:33 +0000
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/Test/TestKernelHelpers.cxx:
+
+ file TestKernelHelpers.cxx was added on branch V6_main on 2011-12-05 10:05:33 +0000
+
+2011-11-02 13:21 vsr
+
+ * src/KernelHelpers/Test/TestKernelHelpers.py:
+
+ file TestKernelHelpers.py was added on branch V6_main on 2011-12-05 10:05:33 +0000
+
+2011-11-02 11:37 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix logical error in generated cmake files
+
+2011-11-02 11:19 vsr
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Calcium.c, CalciumC.c,
+ Makefile.am:
+
+ Rename Calcium.c to CalciumC.c (because of bug in cmake it's impossible to have same-named files with different extensions in the project, e.g. Calcium.c and Calcium.cxx)
+
+2011-11-02 11:19 vsr
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumC.c:
+
+ file CalciumC.c was added on branch V6_main on 2011-12-05 10:05:32 +0000
+
+2011-11-02 11:01 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Add missing brace symbol to avoid cmake failure
+
+2011-10-31 12:15 vsr
+
+ * doc/salome/tui/Makefile.am:
+
+ Fix make distcheck problem
+
+2011-10-31 09:43 inv
+
+ * configure.ac:
+
+ Changing version to 6.4.0
+
+2011-10-28 18:55 boulant
+
+ * src/KERNEL_PY/kernel/services.py:
+
+ The function ObjectToSObject, ... are already defined in salome.py but with less arguments (the study is predefined as a global variable in salome.py).
+
+2011-10-28 18:50 boulant
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ Update the getActiveStudy* functions in studyedit (usage of salome.getActiveStudy())
+
+2011-10-28 14:08 jfa
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx:
+
+ Mantis issue 0020136: EDF 933 DEV : Drag&Drop in OB
+
+2011-10-27 17:37 boulant
+
+ * src/KERNEL_PY/kernel/services.py:
+
+ IMP: add some function in services.py to manipulate objects, sobjects and entry (object id in a study)
+
+2011-10-27 17:32 vsr
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindHDF5.cmake,
+ FindPLATFORM.cmake, am2cmake.py:
+
+ Merge from V6_3_BR branch (Windows porting) 27/10/2011
+
+2011-10-27 13:52 barate
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix GUI compilation with CMake
+
+2011-10-27 12:03 ribes
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Bug Fix: Job file and env file are now not added to input list files
+
+2011-10-27 11:35 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher.hxx, SALOME_Launcher.hxx:
+
+ Bug Fix: correct job number when loading jobs
+
+2011-10-26 18:20 boulant
+
+ * src/KERNEL_PY/kernel/services.py:
+
+ ADD a end user module (services.py) to help the manipulation of SALOME KERNEL services from a python context (someone who is a master of salome.py and all the associated stuff does not need this module)
+
+2011-10-26 18:15 boulant
+
+ * src/KERNEL_PY/kernel/: Makefile.am, kernelpy_autotest.sh.in,
+ services.py, threadhelper.py:
+
+ ADD a end user module (services.py) to help the manipulation of SALOME KERNEL services from a python context (someone who is a master of salome.py and all the associated stuff does not need this module)
+
+2011-10-26 17:25 barate
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix Python UI generation when building with CMake
+
+2011-10-25 12:09 vsr
+
+ * doc/docutils/Makefile.am:
+
+ Fix problem of build procedure: 'make install' fails if OMNIORB_CONFIG variable points to the running omniNames but other SALOME services are unreachable.
+
+2011-10-24 15:40 barate
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx:
+
+ Add possibility to launch Salome servers and local containers with a specific command like srun
+
+2011-10-22 18:22 prascle
+
+ * src/SALOMEDSImpl/Makefile.am:
+
+ PR: compilation on KUbuntu 11.10
+
+2011-10-21 18:04 boulant
+
+ * configure.ac, doc/docutils/kernel.rst,
+ doc/salome/kernel_services_cpphelpers.dox,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/datamodeler.py,
+ src/KERNEL_PY/kernel/diclookup.py,
+ src/KERNEL_PY/kernel/enumerate.py,
+ src/KERNEL_PY/kernel/kernelpy_autotest.sh.in,
+ src/KERNEL_PY/kernel/pyunittester.py,
+ src/KERNEL_PY/kernel/services.py,
+ src/KERNEL_PY/kernel/testdata.py,
+ src/KERNEL_PY/kernel/uiexception.py,
+ src/KERNEL_PY/kernel/unittester.py:
+
+ Add python modules in KERNE_PY.
+ Test with kernelpy_autotest.sh
+ Doc in kernel.rst
+
+2011-10-21 15:14 gdd
+
+ * src/KernelHelpers/Makefile.am:
+
+ Add missing linking flags
+
+2011-10-20 18:03 boulant
+
+ * configure.ac, doc/salome/Makefile.am, doc/salome/main.dox,
+ src/Makefile.am, src/Basics/Basics_Utils.hxx,
+ src/KernelHelpers/Makefile.am,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.cxx,
+ src/KernelHelpers/SALOMEDS_DriverDefaultImpl.hxx,
+ src/KernelHelpers/SALOME_KernelServices.cxx,
+ src/KernelHelpers/SALOME_KernelServices.hxx,
+ src/KernelHelpers/SALOME_StudyEditor.cxx,
+ src/KernelHelpers/SALOME_StudyEditor.hxx,
+ src/KernelHelpers/TestKernelHelpers.cxx:
+
+ Add the KernelHelpers package that contains helper functions to deal with KERNEL services and the study objects.
+ Tests and Documentation are initiated. To be completed.
+
+2011-10-18 17:36 barate
+
+ * src/Launcher/Launcher_Job_SALOME.cxx:
+
+ Fix bugs with Salome launcher jobs
+
+2011-10-17 17:57 barate
+
+ * src/Launcher/Launcher_Job_YACSFile.cxx:
+
+ Try to kill Salome application when a YACS Launcher job is killed
+
+2011-10-15 15:45 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Add -I${CMAKE_BINARY_DIR} to default CXX flags (all modules) - equivalent of -I$(top_builddir) for automake
+
+2011-10-13 11:09 eap
+
+ * src/Launcher/Launcher.cxx:
+
+ Add stopJob() for #ifndef WITH_LIBBATCH
+
+2011-10-11 18:01 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ Adding new Launcher method: stop_job
+ Bug tracker PAL Id: #1960
+
+2011-10-11 16:29 ageay
+
+ * src/GenericObj/SALOME_GenericObj_i.hh:
+
+ Suppression of warnings.
+
+2011-10-10 15:06 barate
+
+ * src/Launcher/Launcher_Job_SALOME.cxx:
+
+ Fix bug with dash and env script
+
+2011-10-07 11:53 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher.hxx, SALOME_Launcher.cxx:
+
+ Create a BatchManager instance for each job.
+ The BatchManager is created when the job is launched and not when it's created.
+ EDF bug tacker id: PAL #1895
+
+2011-10-06 15:44 barate
+
+ * bin/runSalome.py, src/Launcher/Launcher_Job_SALOME.cxx:
+
+ ns_port_log file is now created in USERS directory of Salome application (fix bug PAL #1946)
+
+2011-10-05 16:33 vsr
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ CASCADE 6.5 compatibility
+
+2011-10-05 16:12 barate
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compilation of JOBMANAGER with CMake
+
+2011-10-03 15:51 vsr
+
+ * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
+
+ Fix SIGSEGV in data server, in local driver implementation, if some component does not inherit from SALOMEDS::Driver interface.
+
+2011-10-03 14:19 barate
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix generation of file SalomeApp.xml in YACS with CMake
+
+2011-10-03 11:04 barate
+
+ * configure.ac, bin/Makefile.am, bin/appliskel/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py:
+
+ Fix Salome application generation when compiling with CMake
+ Fix Python UI generation when compiling with CMake
+
+2011-09-22 13:51 rnv
+
+ * bin/appliskel/SalomeApp.xml:
+
+ Implementation of the issue 21276: EDF 1857 SMESH: Order of algorithms in the combobox
+
+2011-09-20 16:32 ana
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindHDF5.cmake,
+ FindPLATFORM.cmake, am2cmake.py:
+
+ Integrate patches for win32 version
+
+2011-09-07 16:25 secher
+
+ * src/MPIContainer/Makefile.am:
+
+ just a little bug
+
+2011-09-07 11:40 secher
+
+ * src/MPIContainer/: testMPI2.cxx:
+
+ add check on mpi implementation
+
+2011-09-07 10:48 secher
+
+ * src/MPIContainer/launch_testMPI2.csh:
+
+ update of test
+
+2011-09-06 15:48 secher
+
+ * src/MPIContainer/launch_testMPI2.csh:
+
+ add test MPI2 communication
+
+2011-09-06 15:44 secher
+
+ * src/MPIContainer/: Makefile.am, launch_testMPI2.csh,
+ testMPI2.cxx:
+
+ add test MPI2 communication
+
+2011-09-06 09:29 prascle
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ PR: wrong syntax for srun parameters
+
+2011-09-02 17:53 barate
+
+ * src/: Launcher/Launcher_Job_Command.cxx,
+ Launcher/Launcher_Job_SALOME.cxx, ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.hxx:
+
+ Changes due to recent improvements in libBatch.
+ Add batch parameter "EXCLUSIVE" in Launcher: Salome jobs are launched in exclusive mode, command jobs in shared mode.
+
+2011-08-12 17:15 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Merge from V6_3_BR 12/08/2011
+
+2011-08-12 15:01 jfa
+
+ * src/Basics/: Basics_OCCTVersion.hxx, Makefile.am:
+
+ Porting to OCCT6.5.1
+
+2011-08-12 13:20 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Win32 compilation.
+
+2011-08-11 15:16 jfa
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Porting to OCCT6.5.1
+
+2011-07-27 17:07 gdd
+
+ * src/KERNEL_PY/kernel/termcolor.py:
+
+ Fix doc example
+
+2011-07-27 12:51 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Generation of the user documentation under Windows platform in GEOM and SMESH modules.
+
+2011-07-27 12:22 vsr
+
+ * configure.ac, doc/docutils/Makefile.am, doc/docutils/conf.py,
+ doc/docutils/conf.py.in:
+
+ Fix-up docutils conf file (version)
+
+2011-07-27 09:04 vsr
+
+ * salome_adm/unix/config_files/hack_libtool.m4:
+
+ Update copyright info (2010->2011)
+
+2011-07-27 07:44 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSalomeScript, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/Makefile.am,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Parametric.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
+ idl/SALOME_PyNode.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/Makefile.am, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Update copyright info (2010->2011)
+
+2011-07-27 06:54 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Increment version number -> 5.1.6
+
+2011-07-26 09:49 inv
+
+ * configure.ac:
+
+ Changing version to 5.1.6
+
+2011-07-20 16:31 prascle
+
+ * bin/appli_gen.py:
+
+ PR: use_advanced_selection_algorithm is set to false in SalomeApp.xml for virtual application. Avoid freezes when displaying big meshes.
+
+2011-07-20 12:09 vsr
+
+ * doc/salome/: gui/doxyfile.in, tui/doxyfile.in:
+
+ Fix problem with doxygen (using default font leads to the dot errors) - switch default dot font explicitly to Arial.
+
+2011-07-20 11:29 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Increment version to 6.3.1
+
+2011-07-20 08:27 vsr
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Increment version to 6.3.1
+
+2011-07-19 13:56 vsr
+
+ * bin/killSalomeWithPort.py, bin/runSalome.py,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/am2cmake.py:
+
+ Merge from V6_3_BR 19/07/2011
+
+2011-07-19 08:36 vsr
+
+ * bin/killSalomeWithPort.py, bin/runSalome.py,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/am2cmake.py:
+
+ Merge from V6_3_1_WIN (Win32 porting) 19/07/2011
+
+2011-07-18 10:29 sln
+
+ * .cvsignore:
+
+ Migration on VS9 (2008) + Integration of V1.6.4 sources
+
+2011-07-15 12:34 vsr
+
+ * configure.ac, bin/createAppli.sh, idl/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/am2cmake.py, src/Basics/Basics_Utils.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Merge from V6_3_BR 15/07/2011
+
+2011-07-15 11:13 vsr
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Merge from V6_3_1_BR (V6_3_1rc3 tag) 15/07/2011
+
+2011-07-14 14:12 rnv
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Porting SALOME6.3.1 on Win32 platform: generate usr documentation.
+
+2011-07-14 09:42 rnv
+
+ * bin/: killSalomeWithPort.py, runSalome.py:
+
+ Porting SALOME 6.3.1 on Win 32 platform.
+
+2011-07-13 09:17 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ a little bug
+
+2011-07-12 15:49 ribes
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Fix Bug with USER_CATALOG_RESOURCES_FILE is set with a non-existing file
+
+2011-07-08 16:40 secher
+
+ * salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIObject_i.cxx:
+
+ allow using mpich for mpi2 coupling in Salome
+
+2011-07-06 15:59 boulant
+
+ * src/Basics/: Basics_DirUtils.cxx, Basics_DirUtils.hxx:
+
+ ADD: GetDirName(path) and IsWritable(path)
+
+2011-07-05 14:51 rnv
+
+ * salome_adm/cmake_files/: am2cmake.py, FindBOOST.cmake:
+
+ Porting SALOME 6.3.1 on windows platform.
+
+2011-06-30 14:49 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ reserve on processor for salome on CCRT beside containers
+
+2011-06-30 12:43 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ reserve on processor for salome on CCRT beside containers
+
+2011-06-29 08:38 ribes
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/Launcher_Job_SALOME.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Adding new protocol: srun
+
+2011-06-24 13:37 vsr
+
+ * src/KERNEL_PY/salome_ComponentGUI.py:
+
+ Extend ComponentGUI module with several functions (for tests)
+
+2011-06-22 15:50 vsr
+
+ * bin/createAppli.sh:
+
+ Fix bug of createAppli.sh script: it should create USERS directory
+
+2011-06-21 13:43 inv
+
+ * configure.ac:
+
+ Changing version to 6.3.1
+
+2011-06-20 15:24 rnv
+
+ * src/Basics/Basics_Utils.hxx:
+
+ Porting SALOME6 on windows: add #ifdef WIN32 directive
+
+2011-06-20 15:22 rnv
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
+ FindLIBXML2.cmake, am2cmake.py:
+
+ Porting SALOME6 on windows: update cmake file for the new products.
+
+2011-06-15 10:26 barate
+
+ * src/KERNEL_PY/kernel/parametric/: compo_utils.py,
+ pyscript_utils.py:
+
+ Copy deterministic dicts to avoid erasing values in parametric functions
+
+2011-06-09 15:37 vsr
+
+ * idl/Makefile.am:
+
+ Fix problem of 'make uninstall' (and make distcheck) with automake 2.11 (Mandriva 2010)
+
+2011-06-06 08:14 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/Makefile.am,
+ doc/README.cluster-CCRT,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/docapi.rst,
+ doc/docutils/kernel.rst, doc/docutils/parametric.rst,
+ doc/docutils/archives/txt2html.sh, doc/salome/Makefile.am,
+ doc/salome/gui/Makefile.am, doc/salome/gui/static/footer.html,
+ doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/static/footer.html, idl/Calcium_Ports.idl.in,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
+ idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/CatalogResources.xml.in, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
+ src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
+ src/HDFPersist/HDFarrayGetDim.c,
+ src/HDFPersist/HDFarrayGetType.c,
+ src/HDFPersist/HDFarrayGetTypeId.c,
+ src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
+ src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
+ src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py,
+ src/KERNEL_PY/kernel/varlist.py,
+ src/KERNEL_PY/kernel/parametric/Makefile.am,
+ src/KERNEL_PY/kernel/parametric/__init__.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Merge from V6_3_BR 06/06/2011
+
+2011-06-01 15:51 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/kill_remote_containers.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSalomeScript,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh,
+ bin/appliskel/update_catalogs.py, doc/Makefile.am,
+ doc/README.cluster-CCRT,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/docutils/Makefile.am, doc/docutils/archives/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_GenericObj.xml, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Parametric.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/SALOME_Types.idl,
+ idl/TestNotif.idl, idl/TypeData.idl, idl/nstest.idl,
+ resources/Makefile.am, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBBATCH.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFarray.cc, src/HDFPersist/HDFarray.hxx,
+ src/HDFPersist/HDFarrayClose.c, src/HDFPersist/HDFarrayCreate.c,
+ src/HDFPersist/HDFarrayGetDim.c,
+ src/HDFPersist/HDFarrayGetType.c,
+ src/HDFPersist/HDFarrayGetTypeId.c,
+ src/HDFPersist/HDFarrayGetnDim.c, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrClose.c,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFattrGetType.c, src/HDFPersist/HDFattrOpen.c,
+ src/HDFPersist/HDFattrRead.c, src/HDFPersist/HDFattrWrite.c,
+ src/HDFPersist/HDFattribute.cc, src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py,
+ src/KERNEL_PY/kernel/parametric/Makefile.am,
+ src/KERNEL_PY/kernel/parametric/__init__.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/Launcher/TestLauncher.cxx, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Update copyright
+
+2011-05-19 13:44 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ IPAL22481 - TC6.3.0: SIGSEGV calling copy-paste of objects
+ Fix bug with observers - paste operation was not handled
+
+2011-05-18 10:32 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Bug for ccc batch manager
+
+2011-05-17 11:48 adam
+
+ * bin/runSalome.py:
+
+ If AAA is in module list and AAA_ROOT_DIR is not defined, trust the user
+ and take account AAA module.
+ If AAA_ROOT_DIR is defined but does not have a SalomeApp.xml in good places,
+ the AAA module is removed from GUI list.
+
+2011-05-12 17:42 ribes
+
+ * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Adding SLURM batch
+ Have to slurm to slurmmpi
+
+2011-05-11 10:43 barate
+
+ * doc/docutils/Makefile.am:
+
+ Fixed bug in docutils: KERNEL installation failed when Sphinx was not found by configure
+
+2011-05-10 15:33 adam
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Implement the --foreground=0/1 to force old behavior
+ with runSalome --foreground=0
+
+2011-05-10 09:53 adam
+
+ * resources/CatalogResources.xml.in:
+
+ [no log message]
+
+2011-05-06 14:16 secher
+
+ * src/Container/: SALOME_ContainerManager.cxx:
+
+ to correct problem of machine with long hostname like name.domaine
+
+2011-05-05 18:29 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher_Job.cxx, Launcher_Job.hxx:
+
+ Remove job from batch manager only when call deleteJob
+
+2011-05-05 16:03 gdd
+
+ * salome_adm/unix/config_files/: check_hdf5.m4, check_omniorb.m4:
+
+ Fix to get correct options for gcc-4.6
+
+2011-05-05 11:00 adam
+
+ * bin/runSalome.py:
+
+ Remove a print when not verbose
+
+2011-05-05 11:00 adam
+
+ * bin/server.py:
+
+ Remove error trace when notifd is not present.
+
+2011-05-03 17:53 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ 0021256: EDF STUDY: Python dump in a single file (continued)
+
+ + if ( !isMultiFile )
+ + sfp << "theStudy = salome.myStudy" <<std::endl << std::endl;
+
+2011-05-03 16:14 eap
+
+ * src/SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ 0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
+
+ int bid = 0;
+ pthread_create(&traceThread, NULL,
+ - SALOMETraceCollector::run, (void *)bid);
+ + SALOMETraceCollector::run, &bid);
+
+2011-05-03 15:20 eap
+
+ * src/: SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx:
+
+ 0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
+
+ - rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t) ;
+ + rc = pthread_create(&threads[t], NULL, PrintHello, &t) ;
+
+2011-05-03 15:18 eap
+
+ * src/SALOMELocalTrace/FileTraceCollector.cxx:
+
+ 0021255: [CEA 466] compilation with gcc 4.6.0 without warnings
+
+ int bid = 0;
+ pthread_create(&traceThread, NULL,
+ - FileTraceCollector::run, (void *)bid);
+ + FileTraceCollector::run, &bid);
+
+2011-05-02 17:32 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ implement smesh cancel compute for hexotic
+
+2011-04-29 16:09 ribes
+
+ * idl/Makefile.am, idl/SALOME_GenericObj.xml,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ PaCO++ update for V6.3
+
+2011-04-29 16:09 vsr
+
+ * idl/SALOME_GenericObj.xml:
+
+ file SALOME_GenericObj.xml was added on branch V6_main on 2011-06-06 06:14:46 +0000
+
+2011-04-29 14:17 rnv
+
+ * src/: SALOMEDS/SALOMEDS_IParameters.cxx,
+ SALOMEDS/SALOMEDS_IParameters.hxx,
+ SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Fix for the bug "IPAL22425 TC6.3.0: Wrong Dump of Study".
+
+2011-04-28 16:22 ribes
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Remove debug print
+
+2011-04-28 14:35 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Modify include of cmake files for netgen compilation
+
+2011-04-28 14:33 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ If CMAKE_BUILD_TYPE is not set, set it to Release
+
+2011-04-27 12:11 vsr
+
+ * doc/salome/: gui/static/footer.html, tui/static/footer.html:
+
+ Copyright info update
+
+2011-04-27 10:39 barate
+
+ * doc/docutils/parametric.rst,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/pyscript_utils.py:
+
+ Complete doc for package salome.kernel.parametric
+
+2011-04-26 14:46 barate
+
+ * src/KERNEL_PY/kernel/parametric/: Makefile.am, pyscript_utils.py:
+
+ Added utility Python module for parametric studies with PyScripts
+
+2011-04-26 14:46 vsr
+
+ * src/KERNEL_PY/kernel/parametric/pyscript_utils.py:
+
+ file pyscript_utils.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
+
+2011-04-22 16:01 vsr
+
+ * src/KERNEL_PY/kernel/parametric/Makefile.am:
+
+ file Makefile.am was added on branch V6_main on 2011-06-06 06:14:57 +0000
+
+2011-04-22 16:01 vsr
+
+ * src/KERNEL_PY/kernel/parametric/__init__.py:
+
+ file __init__.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
+
+2011-04-22 16:01 vsr
+
+ * src/KERNEL_PY/kernel/parametric/compo_utils.py:
+
+ file compo_utils.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
+
+2011-04-22 16:01 vsr
+
+ * doc/docutils/kernel.rst:
+
+ file kernel.rst was added on branch V6_main on 2011-06-06 06:14:45 +0000
+
+2011-04-22 16:01 vsr
+
+ * doc/docutils/parametric.rst:
+
+ file parametric.rst was added on branch V6_main on 2011-06-06 06:14:45 +0000
+
+2011-04-22 16:01 vsr
+
+ * src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
+
+ file study_exchange_vars.py was added on branch V6_main on 2011-06-06 06:14:57 +0000
+
+2011-04-22 16:01 barate
+
+ * configure.ac, doc/docutils/Makefile.am, doc/docutils/docapi.rst,
+ doc/docutils/kernel.rst, doc/docutils/parametric.rst,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/varlist.py,
+ src/KERNEL_PY/kernel/parametric/Makefile.am,
+ src/KERNEL_PY/kernel/parametric/__init__.py,
+ src/KERNEL_PY/kernel/parametric/compo_utils.py,
+ src/KERNEL_PY/kernel/parametric/study_exchange_vars.py:
+
+ Reorganized Python modules for parametric studies (and corresponding doc)
+
+2011-04-20 16:21 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Fixed compilation problem with libbatch 1.3.0rc1
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarray.cc:
+
+ file HDFarray.cc was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarray.hxx:
+
+ file HDFarray.hxx was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayClose.c:
+
+ file HDFarrayClose.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayCreate.c:
+
+ file HDFarrayCreate.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayGetDim.c:
+
+ file HDFarrayGetDim.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayGetType.c:
+
+ file HDFarrayGetType.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayGetTypeId.c:
+
+ file HDFarrayGetTypeId.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 vsr
+
+ * src/HDFPersist/HDFarrayGetnDim.c:
+
+ file HDFarrayGetnDim.c was added on branch V6_main on 2011-06-06 06:14:55 +0000
+
+2011-04-20 12:25 rnv
+
+ * src/HDFPersist/: hdfi.h, HDFOI.hxx, HDFarray.cc, HDFarray.hxx,
+ HDFarrayClose.c, HDFarrayCreate.c, HDFarrayGetDim.c,
+ HDFarrayGetType.c, HDFarrayGetTypeId.c, HDFarrayGetnDim.c,
+ HDFascii.cc, HDFdataset.cc, HDFdataset.hxx, HDFdatasetCreate.c,
+ HDFdatasetGetType.c, HDFtypes.h, Makefile.am:
+
+ RNV: Added support of the H5T_ARRAY.
+
+2011-04-19 13:48 vsr
+
+ * src/Basics/Basics_DirUtils.cxx:
+
+ Fix logical error
+
+2011-04-18 14:58 vsr
+
+ * salome_adm/unix/config_files/check_libbatch.m4,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
+
+ Merge from V6_main branch 18/04/2011
+
+2011-04-18 13:19 inv
+
+ * configure.ac:
+
+ Changing version to 6.3.0
+
+2011-04-18 12:41 vsr
+
+ * salome_adm/unix/config_files/check_libbatch.m4,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
+
+ Fix configuration / compilation problems in KERNEL with libBatch (caused by wrong #include syntax for local header files used in libBatch headers)
+
+2011-04-14 16:19 ribes
+
+ * salome_adm/unix/config_files/check_libbatch.m4,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx:
+
+ Adding a new specific parameter for LoadLeveler
+
+ name = LoadLevelerJobType
+ value = loadleveler job type (usualy is serial, mpi, bluegene, ...)
+
+2011-04-14 10:00 ribes
+
+ * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
+
+ Add an helper class for ResourceDefinition
+
+2011-04-13 19:24 ribes
+
+ * src/Launcher/: Launcher_Job.cxx, SALOME_Launcher.cxx:
+
+ Save and load Jobs with specific parameters
+
+2011-04-13 18:42 ribes
+
+ * src/Launcher/SALOME_Launcher.cxx:
+
+ Add specific parameters support to getJobParameters
+
+2011-04-13 18:41 vsr
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Improve salome base test
+
+2011-04-13 18:18 ribes
+
+ * src/Launcher/: Launcher_Job.cxx, Launcher_Job.hxx,
+ Launcher_Job_YACSFile.cxx, Launcher_Job_YACSFile.hxx,
+ SALOME_Launcher.cxx:
+
+ Refactoring code EnableDumpYACS
+
+ Add some tests if user does not enter a correct value.
+
+2011-04-11 14:05 vsr
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Modify basic salome test for series 6x
+
+2011-04-08 16:26 secher
+
+ * src/Launcher/: Launcher_Job.hxx:
+
+ update for install with only launcher
+
+2011-04-08 15:52 secher
+
+ * src/Launcher/Makefile.am:
+
+ update flags for TestLauncher
+
+2011-04-08 15:26 adam
+
+ * src/Launcher/Makefile.am:
+
+ [no log message]
+
+2011-04-08 15:00 secher
+
+ * src/Launcher/Makefile.am:
+
+ update flags for TestLauncher
+
+2011-04-08 14:28 secher
+
+ * src/Launcher/Makefile.am:
+
+ update flags for TestLauncher
+
+2011-04-08 14:05 fkl
+
+ * src/Launcher/Makefile.am:
+
+ Update FLAGS about TestLaucher
+
+2011-04-08 11:24 secher
+
+ * src/Launcher/: Makefile.am, TestLauncher.cxx:
+
+ add a test for c++ Launcher
+
+2011-04-07 17:48 barate
+
+ * idl/SALOME_Parametric.idl, resources/KERNELCatalog.xml.in:
+
+ Changed the parametric types to support types needed by ADAO
+
+2011-04-07 15:10 adam
+
+ * bin/runSalome.py:
+
+ desactivate foreground() for
+ o runSalome --pinter option
+ o python -i runSalome.py use case
+
+2011-04-07 14:58 rnv
+
+ * doc/salome/: gui/static/doxygen.css, gui/static/footer.html,
+ gui/static/header.html.in, tui/static/doxygen.css,
+ tui/static/footer.html, tui/static/header.html.in:
+
+ RNV: Porting documentation on the doxygen 1.7.3
+
+2011-04-07 07:46 vsr
+
+ * src/KERNEL_PY/__init__.py:
+
+ Hide debug messages if verbose mode is not set
+
+2011-04-07 07:44 vsr
+
+ * bin/: launchConfigureParser.py, salome_utils.py:
+
+ Move verbose() / setVerbose() functions to the salome_utils
+
+2011-04-06 14:28 vsr
+
+ * bin/runSalome.py:
+
+ Add a workaround about the "foreground" improvement to allow running tests with python -i approach
+
+2011-04-01 16:49 adam
+
+ * bin/runSalome.py:
+
+ Launch salome foreground when gui is activated.
+ Ctrl-c, everything is cleaned
+ IAPP crashes, everything is cleaned
+ kill -9 runSalome*, everything is cleaned
+ runSalome & ; kill %1, everything is cleaned
+
+2011-04-01 16:30 adam
+
+ * bin/killSalomeWithPort.py:
+
+ add a "--spy" option
+
+2011-03-31 12:50 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx:
+
+ Implementation of the "16219: EDF PAL 469: "RemoveFromStudy" Function" issue.
+
+2011-03-31 11:57 barate
+
+ * src/KERNEL_PY/kernel/varlist.py, doc/docutils/docapi.rst:
+
+ Added doc for salome.kernel.varlist module
+
+2011-03-29 09:34 ouv
+
+ * idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ Issue 0013373: EDF PAL 273 : Option Single/Multi file dump
+
+2011-03-25 10:59 rnv
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx:
+
+ Implementation of the "16566: EDF PAL 514: Implement system of units (milimeters, meters, inch...)" issue.
+
+2011-03-25 10:56 rnv
+
+ * idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx:
+
+ Implementation of the "16566: EDF PAL 514: Implement system of units (milimeters, meters, inch...)" issue.
+
+2011-03-25 08:56 vsr
+
+ * src/Container/SALOME_PyNode.py:
+
+ Get back Destroy() function, add notification that this function is obsolete.
+
+2011-03-25 08:47 vsr
+
+ * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
+
+ Get back Destroy() function, add notification that this function is obsolete.
+
+2011-03-25 08:40 vsr
+
+ * idl/SALOME_GenericObj.idl:
+
+ Get back Destroy() function, add notification that this function is obsolete.
+
+2011-03-24 18:57 adam
+
+ * bin/runSalome.py:
+
+ Replace exception by warning at wake up of an active session
+
+2011-03-24 16:48 adam
+
+ * bin/: launchConfigureParser.py, orbmodule.py, runSalome.py:
+
+ First implementation of the --wake-up-session option
+
+2011-03-24 16:14 barate
+
+ * doc/salome/: kernelpypkg.dox, main.dox:
+
+ Changed link to Python package doc (opens in new window)
+
+2011-03-22 16:03 adam
+
+ * bin/runSalome.py:
+
+ Fix a bug in args list of startGUI
+
+2011-03-22 12:06 adam
+
+ * bin/launchConfigureParser.py:
+
+ Use getPortNumber from salome_utils to
+ search the port number ...
+ The older method is buggy.
+
+2011-03-21 09:34 vsr
+
+ * idl/SALOMEDS.idl:
+
+ Bug IPAL22334: SALOME hangs-up on any GEOM operation if SALOME data server is running in standalone mode.
+
+2011-03-18 12:13 adam
+
+ * bin/runSalome.py:
+
+ Fix tabulation
+
+2011-03-18 11:34 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Cancel computation for ghs3d
+
+2011-03-17 17:29 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Introduce import functionality in SALOME configuration files
+
+2011-03-17 12:05 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Activate Cancel Compute for cmake
+
+2011-03-16 18:47 caremoli
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Calcium.hxx,
+ CalciumCxxInterface.hxx, CalciumException.hxx,
+ CalciumInterface.hxx:
+
+ CCAR: remove unneeded include in Calcium.hxx and check order of includes
+
+2011-03-16 13:34 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ 0021133: EDF 1605 ALL: Space in dump files instead of tabulations
+
+2011-03-14 12:30 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ [no log message]
+
+2011-03-08 10:01 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ [no log message]
+
+2011-03-07 11:43 caremoli
+
+ * doc/salome/: kernel_services.dox, unittests.dox:
+
+ CCAR: remove references to Batch in doc
+
+2011-03-04 17:08 barate
+
+ * src/Launcher/: Launcher_Job.cxx, Launcher_Job_Command.cxx,
+ Launcher_Job_SALOME.cxx:
+
+ Fixed Launcher according to libbatch changes
+
+2011-03-04 16:12 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
+
+ 1. SALOME::GenericObj : Destroy() -> UnRegister()
+ 2. Introduce interfaces ExportableObject and ImportableComponent interfaces
+ 3. Inherit fileTransfer from SALOME::GenericObj
+
+2011-03-04 15:58 vsr
+
+ * src/: TestMPIContainer/Makefile.am, TestContainer/Makefile.am,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
+
+ 1. SALOME::GenericObj : Destroy() -> UnRegister()
+ 2. Introduce interfaces ExportableObject and ImportableComponent interfaces
+ 3. Inherit fileTransfer from SALOME::GenericObj
+
+2011-03-04 15:55 vsr
+
+ * src/: KERNEL_PY/salome_genericobj.py, LifeCycleCORBA/Makefile.am,
+ MPIContainer/Makefile.am:
+
+ 1. SALOME::GenericObj : Destroy() -> UnRegister()
+ 2. Introduce interfaces ExportableObject and ImportableComponent interfaces
+ 3. Inherit fileTransfer from SALOME::GenericObj
+
+2011-03-04 15:52 vsr
+
+ * src/: Container/Makefile.am, Container/SALOME_FileTransfer_i.hxx,
+ Container/SALOME_PyNode.py, DSC/DSC_Basic/Makefile.am,
+ DSC/DSC_Python/Makefile.am, DSC/DSC_User/Makefile.am,
+ DSC/DSC_User/Basic/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ DSC/DSC_User/Datastream/Palm/Makefile.am,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh:
+
+ 1. SALOME::GenericObj : Destroy() -> UnRegister()
+ 2. Introduce interfaces ExportableObject and ImportableComponent interfaces
+ 3. Inherit fileTransfer from SALOME::GenericObj
+
+2011-03-04 15:49 vsr
+
+ * idl/: SALOME_Component.idl, SALOME_GenericObj.idl:
+
+ 1. SALOME::GenericObj : Destroy() -> UnRegister()
+ 2. Introduce interfaces ExportableObject and ImportableComponent interfaces
+
+2011-03-04 11:49 secher
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ allow two Salome sessions with mpi, to run in the same time
+
+2011-03-04 11:09 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Compile with Werror
+
+2011-03-04 10:39 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Definiton of MODULE variable for cmake
+
+2011-03-04 09:41 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Use the -DWITH_SALOMEDS_OBSERVER flag
+
+2011-03-03 18:56 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2011-03-03 17:06 eap
+
+ * doc/: Makefile.am, docutils/Makefile.am, salome/gui/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ roll back kernel-install-without-docs.patch
+
+2011-03-03 17:01 eap
+
+ * doc/: Makefile.am, docutils/Makefile.am, salome/gui/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ roll back kernel-install-without-docs.patch
+
+2011-03-03 15:39 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ clean warning message
+
+2011-03-03 14:00 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ clean warning message
+
+2011-03-03 08:33 eap
+
+ * doc/docutils/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ We think that building and installing the documentation should not
+ be the default behavior but reserved to interested users
+
+2011-03-02 14:04 secher
+
+ * src/MPIContainer/MPIContainer_i.cxx:
+
+ correct bad replace
+
+2011-03-02 09:52 jfa
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ Rename Engines::Component to Engines::EngineComponent
+
+2011-03-01 13:59 eap
+
+ * doc/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ make docs to work in docutils
+
+2011-03-01 13:42 eap
+
+ * src/MPIContainer/MPIObject_i.hxx:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Add missing #include
+
+ +#include <map>
+
+2011-03-01 13:42 eap
+
+ * src/KERNEL_PY/: batchmode_salome.py, salome_study.py:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Use random instead of deprecated whrandom (gone as of python 2.5).
+
+2011-03-01 13:41 eap
+
+ * src/HDFPersist/: HDFOI.hxx, HDFattribute.cc, HDFattribute.hxx,
+ HDFcontainerObject.cc, HDFcontainerObject.hxx, HDFconvert.hxx,
+ HDFdataset.cc, HDFdataset.hxx, HDFfile.cc, HDFfile.hxx,
+ HDFgroup.cc, HDFgroup.hxx, HDFinternalObject.cc,
+ HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx, hdfi.h:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Remove unnecessary extern "C" instances and add one necessary one.
+ Background: One must not #include mpi.h from within an extern "C" block.
+ Both mpi.h and hdf5.h are C++-safe, and should be included directly without
+ extern "C". For details, see:
+ http://www.open-mpi.org/community/lists/users/2007/12/4763.php
+
+2011-03-01 13:41 eap
+
+ * src/Communication_SWIG/libSALOME_Comm.i:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ - #undef SEEK_SET
+ - #undef SEEK_CUR
+ - #undef SEEK_END
+ No idea why these are undef'd, they break the build when using OpenMPI.
+
+2011-03-01 13:40 eap
+
+ * salome_adm/unix/config_files/check_mpi.m4:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Allow a separate MPI include directory
+
+2011-03-01 13:39 eap
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Option to use the Debian/Ubuntu OpenCASCADE installation location, but
+ preferring the OCC standard install.
+
+2011-03-01 13:38 eap
+
+ * doc/salome/gui/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ We think that building and installing the documentation should not
+ be the default behavior but reserved to interested users
+
+2011-03-01 13:38 eap
+
+ * bin/waitNS.sh:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Replace >& csh construct by 2>
+
+ The former is recognized by bash, but not all by POSIX
+ shells, for instance dash throws this error:
+ sh: Syntax error: Bad fd number
+
+2011-03-01 13:38 eap
+
+ * configure.ac, salome_adm/unix/config_files/check_hdf5.m4:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ The HDF5 library requires MPI in order to work, so the MPI check needs to go
+ first, and the MPI variables need to be in the HDF5 check.
+
+2011-03-01 13:37 eap
+
+ * Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ This patch is for cleaning completely the build directory
+
+2011-03-01 13:30 eap
+
+ * salome_adm/unix/config_files/check_hdf5.m4:
+
+ move CHECK_MPI out of body of 'if' since CHECK_MPI defines AM_CONDITIONAL
+
+2011-03-01 13:22 eap
+
+ * doc/: docutils/Makefile.am, salome/gui/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ We think that building and installing the documentation should not
+ be the default behavior but reserved to interested users
+
+2011-03-01 13:19 eap
+
+ * doc/docutils/: conf.py, conf.py.in:
+
+ merge from V6_main
+
+2011-03-01 13:14 eap
+
+ * doc/Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ make docs to work in docutils
+
+2011-03-01 13:13 eap
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Option to use the Debian/Ubuntu OpenCASCADE installation location, but
+ preferring the OCC standard install.
+
+2011-03-01 13:11 eap
+
+ * src/KERNEL_PY/: batchmode_salome.py, salome_study.py:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Use random instead of deprecated whrandom (gone as of python 2.5).
+
+2011-03-01 13:10 eap
+
+ * bin/waitNS.sh:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Replace >& csh construct by 2>
+
+ The former is recognized by bash, but not all by POSIX
+ shells, for instance dash throws this error:
+ sh: Syntax error: Bad fd number
+
+2011-03-01 13:10 eap
+
+ * Makefile.am:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ This patch is for cleaning completely the build directory
+
+2011-03-01 13:09 eap
+
+ * src/MPIContainer/MPIObject_i.hxx:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Add missing #include
+
+ +#include <map>
+
+2011-03-01 13:08 eap
+
+ * src/Communication_SWIG/libSALOME_Comm.i:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ - #undef SEEK_SET
+ - #undef SEEK_CUR
+ - #undef SEEK_END
+ No idea why these are undef'd, they break the build when using OpenMPI.
+
+2011-03-01 13:07 eap
+
+ * src/HDFPersist/: HDFOI.hxx, HDFattribute.cc, HDFattribute.hxx,
+ HDFcontainerObject.cc, HDFcontainerObject.hxx, HDFconvert.hxx,
+ HDFdataset.cc, HDFdataset.hxx, HDFfile.cc, HDFfile.hxx,
+ HDFgroup.cc, HDFgroup.hxx, HDFinternalObject.cc,
+ HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx, hdfi.h:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Remove unnecessary extern "C" instances and add one necessary one.
+ Background: One must not #include mpi.h from within an extern "C" block.
+ Both mpi.h and hdf5.h are C++-safe, and should be included directly without
+ extern "C". For details, see:
+ http://www.open-mpi.org/community/lists/users/2007/12/4763.php
+
+2011-03-01 13:05 eap
+
+ * salome_adm/unix/config_files/check_hdf5.m4, configure.ac:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ The HDF5 library requires MPI in order to work, so the MPI check needs to go
+ first, and the MPI variables need to be in the HDF5 check.
+
+2011-03-01 13:03 eap
+
+ * salome_adm/unix/config_files/check_mpi.m4:
+
+ 0021196: [CEA 456] Integration and merge modification for debian packages
+
+ Allow a separate MPI include directory
+
+2011-02-28 15:50 jfa
+
+ * doc/salome/kernel_services.dox, idl/DSC_Engines.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx, src/ModuleGenerator/README,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Rename Engines::Component to Engines::EngineComponent
+
+2011-02-28 12:43 adam
+
+ * salome_adm/unix/config_files/: ac_cxx_warnings.m4, production.m4:
+
+ Remove missing-declarations warnings
+
+2011-02-25 08:07 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx:
+
+ Fix regression caused by introducing of GUI observers - Show/Hide children operation in GEOM module has stopped working.
+
+2011-02-22 11:37 secher
+
+ * src/Launcher/: Launcher_Job_YACSFile.cxx,
+ Launcher_Job_YACSFile.hxx, SALOME_Launcher.cxx:
+
+ the dump state for batch of yacs file is optional
+
+2011-02-21 14:29 adam
+
+ * src/: Basics/BasicsGenericDestructor.cxx,
+ Communication/Receivers.cxx, Communication/SALOME_Comm_i.cxx,
+ MPIContainer/MPIContainer_i.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ Remove warnings
+
+2011-02-21 14:23 adam
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ Add the -DWITH_NUMPY when numpy is found
+
+2011-02-21 13:01 adam
+
+ * src/HDFPersist/HDFattrWrite.c:
+
+ Remove warnings
+
+2011-02-18 16:29 secher
+
+ * src/Launcher/Launcher_Job_YACSFile.cxx:
+
+ dump state of batch job yacs graph
+
+2011-02-18 14:28 adam
+
+ * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
+
+ windows
+
+2011-02-18 12:48 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Remove the -Wall for the moment ...
+ Easiest to compile in -Werror mode :)
+
+2011-02-18 12:47 adam
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ Add the -DWITHOUT_MPI=1 possibility
+
+2011-02-18 12:02 ageay
+
+ * idl/Makefile.am:
+
+ Compilation of MPIObject.idl even without MPI prereq.
+ No dependancy of MPI prereq.
+
+2011-02-18 11:29 ribes
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Add NAME parameter for LibBatch
+
+2011-02-17 16:09 adam
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ Improve the way VTK in PARAVIEW is detected
+
+2011-02-17 15:57 barate
+
+ * src/KERNEL_PY/kernel/varlist.py:
+
+ Structured the objects created in varlist module
+
+2011-02-17 15:23 ribes
+
+ * src/Launcher/Launcher.cxx:
+
+ Adding a new batch system LoadLeveler (IBM tool) in Launcher
+
+2011-02-17 15:20 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Parser.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx:
+
+ Adding a new batch type in resource manager: ll for LoadLeveler from IBM
+
+2011-02-17 14:46 ribes
+
+ * src/: DSC/DSC_User/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ Launcher/Makefile.am:
+
+ Warning!!!!
+ DSO linking policy is changing in new linux distribution (new Fedora, Debian Wheezy)
+
+ See infos in:
+ http://wiki.debian.org/ToolChain/DSOLinking
+ http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
+
+2011-02-17 08:57 rnv
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Implementation of the "20830: EDF 1357 GUI : Hide/Show Icon"
+ (at the moment implemeted only in GEOM and SMESH modules).
+
+2011-02-16 18:03 vsr
+
+ * bin/runSalome.py:
+
+ Fix regression caused by previous integration:
+ Issue 0021190: [CEA 452] SalomeApp.xml not found on 6 main OK with 6.2.0
+
+2011-02-15 14:20 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ 5.1.5 --> 6.3.0
+
+2011-02-15 12:52 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix compilation for JOBMANAGER
+
+2011-02-11 14:24 barate
+
+ * src/KERNEL_PY/kernel/varlist.py:
+
+ Removed studyId in salome.kernel.varlist functions (now get it from SObject)
+
+2011-02-09 18:07 caremoli
+
+ * src/KERNEL_PY/import_hook.py:
+
+ CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
+ numpy.test() (1.5.1) fails in embedded console
+ Now if the subelement does not exist, it is ignored
+
+2011-02-08 08:44 ana
+
+ * src/: TOOLSDS/SALOMEDS_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fix for the bug IPAL22164: Fatal error during save/load a SMESH study
+
+2011-02-07 17:25 barate
+
+ * src/KERNEL_PY/kernel/deprecation.py:
+
+ Removed deprecation warning in module deprecation (sic)
+
+2011-02-03 18:17 caremoli
+
+ * bin/appli_gen.py:
+
+ CCAR: remove KERNEL and GUI from the list of modules in SalomeApp.xml file
+
+2011-02-03 18:16 caremoli
+
+ * bin/runSalome.py:
+
+ CCAR: remove modules that have no SalomeApp.xml file from the list of modules
+ passed to SessionServer to reduce the number of warnings
+
+2011-02-03 18:14 caremoli
+
+ * src/Container/Container_init_python.cxx:
+
+ CCAR: fix the use of Py_GetProgramName(file) when initializing embedded Python.
+ If SALOME_PYTHON environment variable (path to the installed python executable)
+ is defined use it for the file argument.
+ This variable can be used in place of the dangerous use of PYTHONHOME.
+
+2011-02-03 18:11 caremoli
+
+ * src/Launcher/SALOME_LauncherServer.cxx:
+
+ CCAR: add definitions to remove warnings
+
+2011-02-02 13:04 eap
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
+
+ 0021165: [CEA] Unit test crashes salome session
+
+ interface SObject
+ {
+ +
+ +/*! Returns true if the %SObject does not belong to any %Study
+ +*/
+ + boolean IsNull();
+
+2011-02-01 14:40 adam
+
+ * salome_adm/cmake_files/: FindLIBBATCH.cmake, Makefile.am,
+ am2cmake.py:
+
+ [no log message]
+
+2011-01-31 15:30 ribes
+
+ * src/KERNEL_PY/__init__.py:
+
+ See Mantis bug: 0021162
+
+2011-01-31 14:16 barate
+
+ * src/KERNEL_PY/kernel/: Makefile.am, varlist.py:
+
+ Added module varlist used to store and load variables lists in an object browser item
+
+2011-01-28 09:00 vsr
+
+ * src/Launcher/Launcher.cxx:
+
+ Fix problem of compilation in --without-libbatch mode
+
+2011-01-27 11:45 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ add getJobDumpState function
+
+2011-01-26 10:38 vsr
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Fix observers bug: study tree stops updating after Dump Python operation
+
+2011-01-25 18:51 caremoli
+
+ * idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
+ src/Container/Container_i.cxx, src/Container/SALOME_Container.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_PyNode.py, src/KERNEL_PY/salome_pynode.py:
+
+ CCAR: add a CORBA object PyScriptNode that can be created in a container
+ and is able to execute python script code in the process of the container.
+ Creation : operation createPyScriptNode of Container interface
+ Execution : operation execute of PyScriptNode interface
+
+2011-01-25 07:49 vsr
+
+ * bin/: killSalome.py, killSalomeWithPort.py:
+
+ Fix regression: killSalomeWithPort does not kill sessions of the old versions of SALOME (pidict file format has been changed)
+ Additional change to revert back original behavior
+
+2011-01-24 16:40 vsr
+
+ * bin/: killSalome.py, killSalomeWithPort.py:
+
+ Fix regression: killSalomeWithPort does not kill sessions of the old versions of SALOME (pidict file format has been changed)
+
+2011-01-24 15:18 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Fix regression caused by previous integration: killSalomeWithPort does not work locally
+
+2011-01-21 18:18 caremoli
+
+ * bin/: appli_clean.sh, appli_gen.py,
+ appliskel/kill_remote_containers.py:
+
+ CCAR: add the kill_remote_containers.py procedure to the SALOME application
+
+2011-01-21 18:15 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: reset temporary file name attribute
+
+2011-01-21 17:06 caremoli
+
+ * bin/killSalomeWithPort.py:
+
+ CCAR: change the hostname used for pidict file on remote machines (os.getenv["NSHOST"] instead of local hostname).
+
+2011-01-19 17:41 caremoli
+
+ * src/: KERNEL_PY/salome_notebook.py, Logger/SALOME_Trace.py,
+ ModuleGenerator/IDLparser.py:
+
+ CCAR: remove tabs in python files
+
+2011-01-19 17:39 caremoli
+
+ * bin/: killSalomeWithPort.py, launchConfigureParser.py,
+ salome_utils.py, setenv.py, virtual_salome.py:
+
+ CCAR: remove tabs in python files (do not mix tabs and whitespace in indentation : only whitespace)
+
+2011-01-19 16:51 caremoli
+
+ * src/KERNEL_PY/: __init__.py, salome_study.py:
+
+ CCAR: add two function to salome package to change current study in external
+ python interpreter (setCurrentStudyId(theId=0) and setCurrentStudy(theStudy))
+
+2011-01-18 13:50 ribes
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ If a resource name is provided to GetFittingResources, others arguments are
+ ignored
+
+2011-01-17 10:40 caremoli
+
+ * bin/appliskel/.bashrc:
+
+ CCAR: remove source ~/.bashrc in $APPLI/.bashrc as it can reset the SALOME environment
+ if the user has customized
+
+2011-01-12 17:12 caremoli
+
+ * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
+ Container/SALOME_Container.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/calciumf.c:
+
+ CCAR: protect Fortran Calcium calls against unneeded float arguments incorrectly initialized
+
+2011-01-03 19:08 caremoli
+
+ * src/: DF/DF_Label.cxx, SALOMEDS/SALOMEDS_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ CCAR: some optimisations for SALOMEDS
+
+2011-01-03 17:03 caremoli
+
+ * src/SALOMEDSClient/SALOMEDSClient_Observer.hxx:
+
+ CCAR: forgotten
+
+2011-01-03 15:00 caremoli
+
+ * idl/SALOMEDS.idl, src/Basics/Basics_Utils.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
+
+ CCAR: add a new operation (SetAttrString) to SObject CORBA interface to be able
+ to set an attribute value (of type string) without creating the intermediate Attribute object (faster)
+
+2011-01-03 11:29 caremoli
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR: add Observer CORBA object to SALOMEDS module to implement a notification
+ mechanism for modifications in study manager (to be used mainly by GUI module)
+
+2010-12-24 08:48 inv
+
+ * Makefile.am, configure.ac, doc/docutils/Makefile.am,
+ doc/docutils/conf.py, doc/docutils/conf.py.in:
+
+ Merge from V6_2_BR 23/12/2010
+
+2010-12-17 09:41 barate
+
+ * doc/docutils/Makefile.am:
+
+ Fixed doc generation for python package
+
+2010-12-15 08:01 inv
+
+ * doc/docutils/Makefile.am:
+
+ fix make install error caused by previous integration (builddir variable is not always defined)
+
+2010-12-13 15:35 eap
+
+ * doc/docutils/conf.py.in:
+
+ file conf.py.in was added on branch V5_1_main on 2011-03-01 12:20:07 +0000
+
+2010-12-13 15:35 inv
+
+ * doc/docutils/conf.py.in:
+
+ file conf.py.in was added on branch V6_main on 2010-12-24 07:48:46 +0000
+
+2010-12-13 15:35 vsr
+
+ * doc/docutils/conf.py.in:
+
+ file conf.py.in was added on branch V5_1_6_BR on 2011-07-27 10:22:21 +0000
+
+2010-12-13 15:33 vsr
+
+ * configure.ac, doc/docutils/Makefile.am, doc/docutils/conf.py,
+ doc/docutils/conf.py.in:
+
+ For docutils documentation: conf.py should be generated automatically (for version number)
+
+2010-12-10 16:10 vsr
+
+ * configure.ac:
+
+ New attempt to hack libtool: overrride libs search path
+
+2010-12-07 10:13 vsr
+
+ * Makefile.am:
+
+ Fix make distcheck problem
+
+2010-12-06 13:49 vsr
+
+ * salome_adm/unix/config_files/hack_libtool.m4:
+
+ Fix n.3 of hack_libtool utility to workaround problems on some Linux configurations
+
+2010-12-05 19:13 vsr
+
+ * salome_adm/unix/config_files/hack_libtool.m4, configure.ac:
+
+ New version of hack_libtool utility to workaround problems on some Linux configurations
+
+2010-11-26 16:42 vsr
+
+ * bin/appli_clean.sh, doc/docutils/conf.py:
+
+ Merge from V5_1_main 26/11/2010
+
+2010-11-26 12:45 vsr
+
+ * doc/docutils/conf.py:
+
+ Merge from V5_1_5_BR branch 26/11/2010
+
+2010-11-25 14:30 gdd
+
+ * bin/appli_clean.sh:
+
+ appli_clean.sh now removes the following sym links too:
+ runSalomeScript
+ update_catalogs.py
+
+2010-11-25 12:43 vsr
+
+ * Makefile.am, configure.ac, bin/appli_gen.py, bin/envSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runSalome.py, bin/server.py, bin/setenv.py,
+ bin/virtual_salome.py, bin/appliskel/getAppliPath.py,
+ bin/appliskel/runSalomeScript, bin/appliskel/runSession,
+ bin/appliskel/update_catalogs.py, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt, doc/docutils/Makefile.am,
+ doc/docutils/conf.py, doc/docutils/docapi.rst,
+ doc/docutils/index.rst, doc/docutils/overview.rst,
+ doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
+ doc/docutils/archives/KERNEL_Services.txt,
+ doc/docutils/archives/SALOME_Application.txt,
+ doc/docutils/archives/UnitTests.txt,
+ doc/docutils/archives/index.txt,
+ doc/docutils/archives/kernel_resources.txt,
+ doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
+ doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
+ doc/salome/main.dox, doc/salome/gui/doxyfile.in, idl/Makefile.am,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Parametric.idl, idl/SALOME_Types.idl,
+ resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/copytree1.py,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/python.m4,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_PyNode.py, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFdatasetRead.c, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/__init__.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/Utils/Utils_Identity.py:
+
+ Merge from V5_1_main branch 24/11/2010
+
+2010-11-24 14:37 inv
+
+ * doc/docutils/conf.py:
+
+ Changing Salome version from 5.1.4 to 5.1.5
+
+2010-11-24 13:32 gdd
+
+ * salome_adm/unix/config_files/: check_hdf5.m4, check_openmpi.m4:
+
+ Small fix for check_openmpi.m4
+ Improve check_hdf5.m4 to detect hdf5 parallel. If detected, check_openmpi.m4 is called.
+
+2010-11-23 17:08 vsr
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl_Tool.cxx:
+
+ Merge from V5_1_5_BR 23/11/2010
+
+2010-11-19 14:26 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ 0020463: EDF 1099 SMESH: performance regression from V4 to V5
+ Patch from Erwan ADAM.
+
+2010-11-19 13:05 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ Fix from E.Adam to solve problem for studies with string notebook variables.
+
+2010-11-13 10:51 vsr
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, bin/server.py,
+ src/HDFPersist/HDFascii.cc,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Merge from BR_WIN_INDUS_514 13/11/2010
+
+2010-11-12 11:22 vsr
+
+ * configure.ac, bin/setenv.py, doc/docutils/Makefile.am,
+ idl/Makefile.am, idl/SALOMEDS_Attributes.idl,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/copytree1.py,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ salome_adm/unix/config_files/python.m4,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_PyNode.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Merge from V5_1_5_BR branch 12/11/2010
+
+2010-11-10 16:53 vsr
+
+ * src/: Container/Makefile.am, DSC/DSC_Basic/Makefile.am,
+ LifeCycleCORBA/Test/Makefile.am, Logger/Makefile.am,
+ ModuleCatalog/Makefile.am, NamingService/Test/Makefile.am,
+ Registry/Makefile.am, SALOMEDS/Makefile.am,
+ SALOMEDS/Test/Makefile.am, SALOMEDSImpl/Makefile.am,
+ TestContainer/Makefile.am, Utils/Test/Makefile.am:
+
+ 0021063: [CEA 434] Compilation using gnu compiler v4.5
+
+2010-11-10 16:19 ribes
+
+ * src/Container/: SALOME_Container.py, SALOME_PyNode.py:
+
+ Bug Fix: PyNodes need to get a reference to its container on remote mode
+
+2010-11-08 18:24 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ 0020883: [CEA 404] Pb with old hdf
+
+2010-11-03 10:27 vsr
+
+ * configure.ac:
+
+ Another fix of hack_libtool() function for latest versions of autoconf (e.g. 2.67)
+
+2010-11-03 08:18 vsr
+
+ * salome_adm/unix/config_files/hack_libtool.m4:
+
+ Fix hack_libtool() function for Debian 6.0 (/bin/dash requires script to be GNU compliant)
+
+2010-11-02 15:41 vsr
+
+ * idl/SALOMEDS_Attributes.idl:
+
+ Additional documentation for AttributeComment.
+
+2010-10-28 10:26 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ NamingService/SALOME_NamingService.cxx:
+
+ update kernel to take account improvement in Container GUI of YACS
+
+2010-10-27 08:40 dmv
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Win32: VISU: Problem with loading ASCII study
+
+2010-10-26 14:06 dmv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Win 5.1.4: Problems with ASCII studys
+
+2010-10-25 16:17 barate
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ Fixed bug in findItem method of study editor
+
+2010-10-22 15:27 dmv
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Win 5.1.4: Impossible to load VISU study with med file, that was saved in ASCII mode
+
+2010-10-22 14:17 rnv
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Get fix of the bug from the V5_1_5_BR
+
+2010-10-21 15:21 caremoli
+
+ * src/KERNEL_PY/import_hook.py:
+
+ CCAR: small fix for import of modules such as matplotlib
+
+2010-10-21 14:52 caremoli
+
+ * src/LifeCycleCORBA_SWIG/: LifeCycleCORBA.py,
+ Test/testcontainermanager.py, Test/testresourcemanager.py:
+
+ CCAR: update LifeCycleCORBA module and associated tests with new IDL interface
+
+2010-10-21 08:21 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Update for Win32: documentation generation
+
+2010-10-20 17:53 dmv
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Win 5.1.4: problem with reading ASCII study, saved in linux
+
+2010-10-20 10:45 vsr
+
+ * salome_adm/cmake_files/copytree1.py:
+
+ file copytree1.py was added on branch V5_1_main on 2010-11-12 10:22:21 +0000
+
+2010-10-20 10:45 vsr
+
+ * salome_adm/cmake_files/copytree1.py:
+
+ file copytree1.py was added on branch V6_main on 2010-11-25 11:43:19 +0000
+
+2010-10-20 10:45 ana
+
+ * salome_adm/cmake_files/: Makefile.am, am2cmake.py, copytree1.py:
+
+ Update for Win32: documentation generation
+
+2010-10-19 13:12 dmv
+
+ * bin/runSalome.py:
+
+ Windows porting
+
+2010-10-19 11:54 dmv
+
+ * bin/server.py:
+
+ Corrections for Windows KERNEL tests with --xterm or -x options
+
+2010-10-19 11:50 dmv
+
+ * bin/runSalome.py:
+
+ Corrections for KERNEL tests with --interp or -i options
+
+2010-10-18 14:15 adam
+
+ * salome_adm/cmake_files/: FindPYTHON.cmake, FindSWIG.cmake:
+
+ numpy support. Contribution of Anthony.
+
+2010-10-15 18:04 adam
+
+ * salome_adm/cmake_files/: FindKERNEL.cmake, am2cmake.py:
+
+ [no log message]
+
+2010-10-15 14:04 dmv
+
+ * bin/launchConfigureParser.py:
+
+ Win32: Correct python scripts parsing
+
+2010-10-14 15:31 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-10-14 14:53 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-10-14 12:38 adam
+
+ * bin/setenv.py, doc/docutils/Makefile.am,
+ salome_adm/unix/config_files/python.m4:
+
+ Fix some tiny bug with 64 bits and :
+ python 2.6
+ native products
+
+2010-10-14 11:26 adam
+
+ * salome_adm/cmake_files/: am2cmake.py, FindPYTHON.cmake:
+
+ [no log message]
+
+2010-10-14 09:11 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Update for Win 32: documentation generation
+
+2010-10-12 15:24 ana
+
+ * doc/salome/gui/images/: head.png, icon_about.png:
+
+ Fix for IPAL20852 WinTC5.1.4: no "Module help" - regress
+
+2010-10-12 14:09 ana
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix for IPAL20852 WinTC5.1.4: no "Module help" - regress
+
+2010-10-12 10:04 rnv
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Fix of the bugs:
+ 1) IPAL22049 TC5.1.5: Application crash at close document operation
+ 2) Bug IPAL22067 TC5.1.5: SIGSEGV exception at close application after MESH-002 scenario execution
+
+ Avoid double deletion of the Salome Generic Objects:
+ 1. First decrement of the reference count in the SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR();
+ 2. Second decrement of the reference count in RemovePostponed(...) method;
+
+2010-10-11 12:15 vsr
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ 0021026: EDF 1635 GUI: VTK Warnings when compiling GUI
+
+2010-10-11 09:08 caremoli
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ CCAR: add -nf option to omniidl -bpython
+
+2010-10-05 17:02 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix tiny windows bug
+
+2010-10-05 16:42 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ 5.1.4 --> 5.1.5
+
+2010-10-05 14:51 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ use include_directories in cmake
+
+2010-10-05 14:50 adam
+
+ * idl/Makefile.am:
+
+ cmake compilation
+
+2010-10-05 14:19 inv
+
+ * configure.ac:
+
+ Changing version to 5.1.5 in configure.ac"
+
+2010-10-04 14:04 vsr
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFdatasetRead.c,
+ Utils/Utils_Identity.py:
+
+ Merge from BR_WIN_INDUS_514 04/10/2010
+
+2010-10-04 11:27 vsr
+
+ * configure.ac, doc/docutils/Makefile.am:
+
+ Fix configure problem (caused by previous integration).
+ AC_PROG_MKDIR_P is not available for autoconf 2.59 (Debian Sarge, Mandriva 2006)
+
+2010-10-02 17:48 caremoli
+
+ * bin/: envSalome.py, appliskel/runSession:
+
+ CCAR: add a way in envSalome.py (-exec tag) to use options only for execution (needed by runSession)
+
+2010-10-01 16:34 ribes
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Patch for nex LIBBATCH
+
+2010-10-01 16:17 ribes
+
+ * src/Launcher/Launcher.cxx:
+
+ Patch for new version of LIBBATCH
+
+2010-10-01 10:38 vsr
+
+ * bin/appliskel/runSalomeScript:
+
+ file runSalomeScript was added on branch V6_main on 2010-11-25 11:43:15 +0000
+
+2010-10-01 10:38 caremoli
+
+ * bin/: appli_gen.py, appliskel/runSalomeScript:
+
+ CCAR: add a new script (runSalomeScript) in SALOME application
+ This script can be used to execute a SALOME script on a server
+ when the client has no SALOME installation.
+ It copies local files on the server and execute runSession python script on the server
+
+2010-09-30 17:21 barate
+
+ * configure.ac:
+
+ Fixed the fix for make distcheck
+
+2010-09-30 16:29 barate
+
+ * src/Launcher/Launcher.cxx:
+
+ Fixed Launcher according to recent changes in libBatch
+
+2010-09-30 13:46 vsr
+
+ * doc/: Makefile.am, docutils/Makefile.am:
+
+ Fix make distcheck errors
+
+2010-09-30 11:23 barate
+
+ * idl/SALOME_Parametric.idl, resources/KERNELCatalog.xml.in:
+
+ Moved parametric types to SALOME_TYPES module and added them to the KERNEL catalog.
+
+2010-09-29 18:02 barate
+
+ * idl/: Makefile.am, SALOME_Parametric.idl:
+
+ Added new type definitions for parametric computations
+
+2010-09-29 18:02 vsr
+
+ * idl/SALOME_Parametric.idl:
+
+ file SALOME_Parametric.idl was added on branch V6_main on 2010-11-25 11:43:18 +0000
+
+2010-09-29 14:08 barate
+
+ * configure.ac, doc/docutils/docapi.rst, doc/docutils/overview.rst,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py:
+
+ Small fixes and doc updates in Python package
+
+2010-09-29 10:22 vsr
+
+ * bin/appliskel/update_catalogs.py:
+
+ file update_catalogs.py was added on branch V6_main on 2010-11-25 11:43:16 +0000
+
+2010-09-29 10:22 caremoli
+
+ * bin/: appli_gen.py, appliskel/getAppliPath.py,
+ appliskel/update_catalogs.py:
+
+ CCAR: add a procedure (update_catalogs.py) in SALOME application that is
+ able to get remote module catalogs and update the resources catalog (CatalogResources.xml).
+ The description of the distributed SALOME application is found in a file named
+ CatalogResources.base.xml (same format as the standard resources catalog).
+
+2010-09-28 17:43 barate
+
+ * Makefile.am, doc/docutils/Makefile.am:
+
+ Fixed doc generation for Python package
+
+2010-09-28 17:19 caremoli
+
+ * salome_adm/unix/config_files/check_sphinx.m4:
+
+ CCAR:add check_sphinx
+
+2010-09-28 17:12 caremoli
+
+ * Makefile.am, configure.ac, bin/killSalomeWithPort.py,
+ bin/runSalome.py, bin/virtual_salome.py, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt, doc/docutils/Makefile.am,
+ doc/docutils/conf.py, doc/docutils/docapi.rst,
+ doc/docutils/index.rst, doc/docutils/overview.rst,
+ doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
+ doc/docutils/archives/KERNEL_Services.txt,
+ doc/docutils/archives/SALOME_Application.txt,
+ doc/docutils/archives/UnitTests.txt,
+ doc/docutils/archives/index.txt,
+ doc/docutils/archives/kernel_resources.txt,
+ doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
+ doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
+ doc/salome/main.dox, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Types.idl,
+ salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/hack_libtool.m4,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py, src/Launcher/Launcher.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ CCAR: update with V5_1_main (28/09)
+
+2010-09-28 17:09 caremoli
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx:
+
+ CCAR: fix a performance problem when adding references in study (AttributeTarget)
+ replace the vector<DF_Attribute*> by a map< std::string , DF_Attribute* >
+ where the key is the label of the DF_Attribute* to improve access time to an attribute
+ with given label (main performance bottleneck during explode)
+
+2010-09-28 16:04 vsr
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ Improvement of boost product check procedure to allow compilation with older versions of boost (< 1.34.0)
+
+2010-09-28 15:39 barate
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ Changed Python module studyedit.py to reflect current usage of the comment attribute in SComponents. The module will have to be changed again in Salome 6.
+
+2010-09-28 11:21 caremoli
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ CCAR: fix bug in resources manager when hostname==localhost
+
+2010-09-27 17:44 gdd
+
+ * src/KERNEL_PY/: __init__.py, salome.py:
+
+ the salome.py is declared as deprecated and raises an exception in the case where it is imported.
+
+2010-09-27 16:01 gdd
+
+ * configure.ac, bin/virtual_salome.py, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt, doc/docutils/Makefile.am,
+ doc/docutils/conf.py, doc/docutils/docapi.rst,
+ doc/docutils/index.rst, doc/docutils/overview.rst,
+ doc/docutils/salomepypkg.rst, doc/docutils/archives/INSTALL.txt,
+ doc/docutils/archives/KERNEL_Services.txt,
+ doc/docutils/archives/SALOME_Application.txt,
+ doc/docutils/archives/UnitTests.txt,
+ doc/docutils/archives/index.txt,
+ doc/docutils/archives/kernel_resources.txt,
+ doc/docutils/archives/rst.css, doc/docutils/archives/txt2html.sh,
+ doc/docutils/archives/userguide.txt, doc/salome/kernelpypkg.dox,
+ doc/salome/main.dox, salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py:
+
+ merge with the branch BR_pypkg (python packaging)
+
+2010-09-27 14:51 gdd
+
+ * Makefile.am:
+
+ test de commit
+
+2010-09-22 15:25 vsr
+
+ * salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/hack_libtool.m4, configure.ac:
+
+ Hack libtool (!) to workaround problem with wrong linkage of native libraries
+
+2010-09-22 15:25 vsr
+
+ * salome_adm/unix/config_files/hack_libtool.m4:
+
+ file hack_libtool.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
+
+2010-09-22 15:25 caremoli
+
+ * salome_adm/unix/config_files/hack_libtool.m4:
+
+ file hack_libtool.m4 was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-09-22 12:59 rnv
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Utils/Utils_Identity.py:
+
+ Fix for the bug 21939: WinTC5.1.4: Crash of Yacs at preparing the scheme
+
+2010-09-20 14:31 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-09-20 10:01 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ [no log message]
+
+2010-09-17 10:35 dmv
+
+ * src/HDFPersist/HDFdatasetRead.c:
+
+ IPAL21988 WinTC5.1.4: Mesh data is not restored when study saved on linux station is opened on windows
+
+2010-09-15 10:33 dmv
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Correct previous fix
+
+2010-09-15 08:05 dmv
+
+ * src/HDFPersist/HDFascii.cc:
+
+ IPAL21917 WinTC5.1.4: Mesh and Post-Pro objects couldn't be displayed in the opened study
+
+2010-09-13 16:20 dmv
+
+ * src/HDFPersist/HDFascii.cc:
+
+ IPAL20857 WinTC5.1.4: Application crash after open existing study
+
+2010-09-10 09:08 vsr
+
+ * salome_adm/cmake_files/Makefile.am:
+
+ WinTC
+
+2010-09-09 16:30 dmv
+
+ * bin/killSalomeWithPort.py:
+
+ IPAL21912 WinTC5.1.4: kill_salome.bat doesn't kill Salome
+
+2010-09-09 16:21 vsr
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ WinTC
+
+2010-09-09 15:34 vsr
+
+ * bin/runSalome.py:
+
+ Issue 0020924: [CEA] 6.1.0rc1 - script fails
+ Always use execfile() function instead of "import" command to execute Python scripts (passed via -u option of runSalome.py script)
+
+2010-09-09 14:00 mnt
+
+ * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
+
+ WinTC
+
+2010-09-08 17:20 dmv
+
+ * bin/killSalomeWithPort.py:
+
+ IPAL21912 WinTC5.1.4: kill_salome.bat doesn't kill Salome
+
+2010-09-08 15:07 ribes
+
+ * src/Launcher/Launcher.cxx:
+
+ Catch a new exception from LIBBATCH
+
+2010-09-07 15:12 caremoli
+
+ * bin/runSalome.py:
+
+ CCAR: add a way to initialize ModuleCatalog server with remote catalogs.
+ the new environment variable (SALOME_CATALOGS_PATH) is used by runSalome.py (setpath method)
+ to add more catalogs than those given by the module_root_dir list.
+ SALOME_CATALOGS_PATH is a list of directories separated by : (unix) where other catalogs are found.
+
+2010-09-07 15:07 caremoli
+
+ * idl/SALOME_ContainerManager.idl,
+ src/ResourcesManager/ResourcesManager.cxx:
+
+ CCAR: fix a bug in KeepOnlyResourcesWithComponent (erase an item of a vector when looping on it)
+ and allow GiveContainer to raise SALOME exceptions to catch them in YACS
+
+2010-09-07 12:07 vsr
+
+ * doc/salome/gui/images/icon_about.png:
+
+ Merge from V6_1_BR 07/09/2010
+
+2010-09-03 12:07 eap
+
+ * src/Launcher/SALOME_Launcher.cxx:
+
+ fix compilation w/o LIBBBATCH
+
+2010-09-03 09:25 eap
+
+ * salome_adm/unix/config_files/check_swig.m4:
+
+ Make WITH_NUMPY defined when running swig
+
+ + SWIG_FLAGS="$SWIG_FLAGS -DWITH_NUMPY=WITH_NUMPY "
+
+2010-09-03 09:21 eap
+
+ * salome_adm/unix/config_files/check_swig.m4:
+
+ Make WITH_NUMPY defined when running swig
+
+ + SWIG_FLAGS="$SWIG_FLAGS -DWITH_NUMPY=WITH_NUMPY "
+
+2010-08-31 07:49 eap
+
+ * src/Launcher/: Launcher.cxx, Launcher_Job.cxx:
+
+ fix compilation w/o LIBBBATCH
+
+2010-07-30 16:08 gdd
+
+ * src/Launcher/: Launcher.hxx, SALOME_Launcher.cxx:
+
+ AR with GD: Can now load SALOME jobs
+
+2010-07-30 15:26 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ - can remove an observer
+ - notify a new observer of jobs in launcher
+
+2010-07-29 15:34 boulant
+
+ * doc/: docutils/Makefile.am, salome/kernelpypkg.dox:
+
+ Updating documentation to integrate the python package documentation
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/KERNEL_Services.txt:
+
+ file KERNEL_Services.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/SALOME_Application.txt:
+
+ file SALOME_Application.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/UnitTests.txt:
+
+ file UnitTests.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/index.txt:
+
+ file index.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/kernel_resources.txt:
+
+ file kernel_resources.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/rst.css:
+
+ file rst.css was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/txt2html.sh:
+
+ file txt2html.sh was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/userguide.txt:
+
+ file userguide.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/KERNEL_Services.txt:
+
+ file KERNEL_Services.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/SALOME_Application.txt:
+
+ file SALOME_Application.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/UnitTests.txt:
+
+ file UnitTests.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/index.txt:
+
+ file index.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/kernel_resources.txt:
+
+ file kernel_resources.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/rst.css:
+
+ file rst.css was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/txt2html.sh:
+
+ file txt2html.sh was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/userguide.txt:
+
+ file userguide.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/KERNEL_Services.txt:
+
+ file KERNEL_Services.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/SALOME_Application.txt:
+
+ file SALOME_Application.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/UnitTests.txt:
+
+ file UnitTests.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/index.txt:
+
+ file index.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/kernel_resources.txt:
+
+ file kernel_resources.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/rst.css:
+
+ file rst.css was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/txt2html.sh:
+
+ file txt2html.sh was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/userguide.txt:
+
+ file userguide.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:11 boulant
+
+ * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
+ UnitTests.txt, index.txt, kernel_resources.txt, rst.css,
+ txt2html.sh, userguide.txt, docutils/salomepypkg.rst,
+ docutils/archives/INSTALL.txt,
+ docutils/archives/KERNEL_Services.txt,
+ docutils/archives/SALOME_Application.txt,
+ docutils/archives/UnitTests.txt, docutils/archives/index.txt,
+ docutils/archives/kernel_resources.txt,
+ docutils/archives/rst.css, docutils/archives/txt2html.sh,
+ docutils/archives/userguide.txt:
+
+ Updating documentation to integrate the geom python package documentation
+
+2010-07-29 15:11 vsr
+
+ * doc/docutils/archives/INSTALL.txt:
+
+ file INSTALL.txt was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 15:11 gdd
+
+ * doc/docutils/archives/INSTALL.txt:
+
+ file INSTALL.txt was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:11 caremoli
+
+ * doc/docutils/archives/INSTALL.txt:
+
+ file INSTALL.txt was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 15:03 boulant
+
+ * doc/salome/: kernelpypkg.dox, main.dox:
+
+ Updating documentation to integrate the geom python package documentation
+
+2010-07-29 15:03 vsr
+
+ * doc/salome/kernelpypkg.dox:
+
+ file kernelpypkg.dox was added on branch V6_main on 2010-11-25 11:43:18 +0000
+
+2010-07-29 15:03 gdd
+
+ * doc/salome/kernelpypkg.dox:
+
+ file kernelpypkg.dox was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-29 15:03 caremoli
+
+ * doc/salome/kernelpypkg.dox:
+
+ file kernelpypkg.dox was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 11:33 boulant
+
+ * doc/docutils/: Makefile.am, docapi.rst, index.rst, overview.rst,
+ salomepypkg.rst:
+
+ documentation completude
+
+2010-07-29 11:33 vsr
+
+ * doc/docutils/overview.rst:
+
+ file overview.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-29 11:33 gdd
+
+ * doc/docutils/overview.rst:
+
+ file overview.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-29 11:33 caremoli
+
+ * doc/docutils/overview.rst:
+
+ file overview.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-29 11:32 boulant
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ Add check_sphinx.m4 file
+
+2010-07-28 18:33 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - Major update for launcher:
+ - some bugs are fixed
+ - save and load methods
+ - can have observers
+
+2010-07-28 16:05 ribes
+
+ * src/Launcher/Launcher.cxx:
+
+ - Adaptation of Launcher for new LIBBATCH
+
+2010-07-28 15:07 vsr
+
+ * doc/docutils/Makefile.am:
+
+ file Makefile.am was added on branch V6_main on 2010-11-25 11:43:16 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/Makefile.am:
+
+ file Makefile.am was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
+
+ file __init__.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * salome_adm/unix/config_files/check_sphinx.m4:
+
+ file check_sphinx.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
+
+2010-07-28 15:07 vsr
+
+ * doc/docutils/conf.py:
+
+ file conf.py was added on branch V6_main on 2010-11-25 11:43:16 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/deprecation.py:
+
+ file deprecation.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * doc/docutils/docapi.rst:
+
+ file docapi.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-28 15:07 vsr
+
+ * doc/docutils/index.rst:
+
+ file index.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/logconfig.py.in:
+
+ file logconfig.py.in was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/logger.py:
+
+ file logger.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * doc/docutils/salomepypkg.rst:
+
+ file salomepypkg.rst was added on branch V6_main on 2010-11-25 11:43:17 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ file studyedit.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 vsr
+
+ * src/KERNEL_PY/kernel/termcolor.py:
+
+ file termcolor.py was added on branch V6_main on 2010-11-25 11:43:20 +0000
+
+2010-07-28 15:07 gdd
+
+ * doc/docutils/Makefile.am:
+
+ file Makefile.am was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/Makefile.am:
+
+ file Makefile.am was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
+
+ file __init__.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * salome_adm/unix/config_files/check_sphinx.m4:
+
+ file check_sphinx.m4 was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * doc/docutils/conf.py:
+
+ file conf.py was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/deprecation.py:
+
+ file deprecation.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * doc/docutils/docapi.rst:
+
+ file docapi.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-28 15:07 gdd
+
+ * doc/docutils/index.rst:
+
+ file index.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/logconfig.py.in:
+
+ file logconfig.py.in was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/logger.py:
+
+ file logger.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * doc/docutils/salomepypkg.rst:
+
+ file salomepypkg.rst was added on branch V5_1_main on 2010-09-27 14:01:58 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ file studyedit.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 gdd
+
+ * src/KERNEL_PY/kernel/termcolor.py:
+
+ file termcolor.py was added on branch V5_1_main on 2010-09-27 14:01:59 +0000
+
+2010-07-28 15:07 caremoli
+
+ * doc/docutils/Makefile.am:
+
+ file Makefile.am was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/Makefile.am:
+
+ file Makefile.am was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/: __init__.py, kernel/__init__.py:
+
+ file __init__.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * salome_adm/unix/config_files/check_sphinx.m4:
+
+ file check_sphinx.m4 was added on branch BR_Observer on 2010-09-28 15:19:58 +0000
+
+2010-07-28 15:07 caremoli
+
+ * doc/docutils/conf.py:
+
+ file conf.py was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/deprecation.py:
+
+ file deprecation.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * doc/docutils/docapi.rst:
+
+ file docapi.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-28 15:07 caremoli
+
+ * doc/docutils/index.rst:
+
+ file index.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/logconfig.py.in:
+
+ file logconfig.py.in was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/logger.py:
+
+ file logger.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * doc/docutils/salomepypkg.rst:
+
+ file salomepypkg.rst was added on branch BR_Observer on 2010-09-28 15:12:45 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/studyedit.py:
+
+ file studyedit.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 caremoli
+
+ * src/KERNEL_PY/kernel/termcolor.py:
+
+ file termcolor.py was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-28 15:07 boulant
+
+ * configure.ac, bin/virtual_salome.py, doc/Makefile.am,
+ doc/docutils/Makefile.am, doc/docutils/conf.py,
+ doc/docutils/docapi.rst, doc/docutils/index.rst,
+ doc/docutils/salomepypkg.rst,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_sphinx.m4,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/__init__.py,
+ src/KERNEL_PY/kernel/Makefile.am,
+ src/KERNEL_PY/kernel/__init__.py,
+ src/KERNEL_PY/kernel/deprecation.py,
+ src/KERNEL_PY/kernel/logconfig.py.in,
+ src/KERNEL_PY/kernel/logger.py,
+ src/KERNEL_PY/kernel/studyedit.py,
+ src/KERNEL_PY/kernel/termcolor.py:
+
+ Integration of python packaging: initialization
+
+2010-07-28 14:49 boulant
+
+ * src/KERNEL_PY/salome.py:
+
+ test commit
+
+2010-07-23 13:35 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
+
+ - Launcher can now load and save its jobs list
+ - Added introspection methods for Launcher
+
+2010-07-22 15:28 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-07-21 10:57 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-07-21 10:34 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ add make test for UNIT_TEST_PROG
+
+2010-07-19 14:58 vsr
+
+ * idl/SALOME_Types.idl:
+
+ file SALOME_Types.idl was added on branch V6_main on 2010-11-25 11:43:18 +0000
+
+2010-07-19 14:58 caremoli
+
+ * idl/SALOME_Types.idl:
+
+ file SALOME_Types.idl was added on branch BR_Observer on 2010-09-28 15:12:46 +0000
+
+2010-07-19 14:58 ageay
+
+ * idl/: Makefile.am, SALOME_Types.idl:
+
+ Compatibility between MEDCouplingCorabaServant.idl and MED.idl.
+
+2010-07-15 17:34 ageay
+
+ * salome_adm/unix/config_files/: check_mpi.m4, check_openmpi.m4:
+
+ Addition of MPI2 conditional compilation tag.
+
+2010-07-15 17:02 ageay
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ Addition of MPI2 conditional compilation tag.
+
+2010-07-13 15:46 adam
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ [no log message]
+
+2010-07-07 16:34 caremoli
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, idl/SALOMEDS.idl,
+ salome_adm/cmake_files/am2cmake.py, src/KERNEL_PY/import_hook.py,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR: various optimisations and synchronize with V5_1_main branch
+
+2010-07-06 12:32 adam
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ add --valgrind-session to runSalome
+
+2010-07-06 12:22 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Remove some traces
+
+2010-07-05 12:07 caremoli
+
+ * src/KERNEL_PY/import_hook.py:
+
+ CCAR: add keywords arguments to import_hook (python 2.6)
+
+2010-07-02 11:07 dmv
+
+ * doc/salome/gui/images/icon_about.png:
+
+ Update 6x splash
+
+2010-07-01 11:28 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility hxx2salome
+
+2010-07-01 08:59 caremoli
+
+ * doc/salome/gui/doxyfile.in, salome_adm/cmake_files/am2cmake.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Launcher/Launcher_Job.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ CCAR: update from V5_1_main branch
+
+2010-06-29 18:33 caremoli
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx:
+
+ CCAR: optimisation of attributetarget for large number of refs
+
+2010-06-29 18:32 caremoli
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx:
+
+ CCAR:remove modify notification
+
+2010-06-29 16:33 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ add compatibility with :
+ o netgen (full)
+ o hxx2salome (partial)
+
+2010-06-24 12:05 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ improvement about OMPI_URI_FILE
+
+2010-06-23 15:25 vsr
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Merge from V5_1_4_BR 23/06/2010
+
+2010-06-22 16:19 vsr
+
+ * doc/salome/gui/doxyfile.in:
+
+ Improve documentation generation mechanism
+
+2010-06-18 15:00 caremoli
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR: notification already done in GenericAttribute
+
+2010-06-18 14:42 caremoli
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR:synchronize with V5_1_main head
+
+2010-06-18 14:14 caremoli
+
+ * salome_adm/unix/config_files/check_vtk.m4,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx:
+
+ CCAR:synchronize with V5_1_main head
+
+2010-06-18 09:15 caremoli
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ MPIContainer/MPIContainer_i.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ CCAR:synchronize with V5_1_main head
+
+2010-06-18 09:11 caremoli
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
+ Launcher/Launcher_Job.cxx, Launcher/Launcher_Job_SALOME.cxx:
+
+ CCAR:synchronize with V5_1_main head
+
+2010-06-18 09:05 caremoli
+
+ * salome_adm/: cmake_files/FindPLATFORM.cmake,
+ cmake_files/am2cmake.py, unix/config_files/Makefile.am,
+ unix/config_files/check_vtk.m4:
+
+ CCAR:synchronize with V5_1_main head
+
+2010-06-17 19:22 caremoli
+
+ * src/: SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR: add a notifier object in SALOMEDS so that CORBA is no more called in SALOMEDSImpl
+
+2010-06-17 14:54 vsr
+
+ * salome_adm/unix/config_files/: Makefile.am, check_vtk.m4:
+
+ Fix compilation problem of the GEOM module in --without-gui mode
+
+2010-06-17 14:34 secher
+
+ * src/MPIContainer/MPIContainer_i.cxx:
+
+ debug of shutdown mpi container
+
+2010-06-15 09:45 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/Launcher_Job_SALOME.cxx:
+
+ debug for mpi container
+
+2010-06-14 10:30 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Fixed time unit for parameter MAXWALLTIME (minutes instead of seconds)
+
+2010-06-11 15:06 adam
+
+ * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
+
+ cmake on 64 bits
+
+2010-06-11 11:18 barate
+
+ * src/Launcher/Launcher.cxx:
+
+ Fixed Launcher to allow compilation with libBatch 1.1.0
+
+2010-06-11 10:23 barate
+
+ * src/Launcher/Launcher.cxx:
+
+ Fixed Launcher to allow compilation with libBatch 1.1.0
+
+2010-06-10 09:47 vsr
+
+ * salome_adm/cmake_files/FindMPI.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx:
+
+ Merge from V5_1_main 10/06/2010
+
+2010-06-09 16:57 vsr
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/Launcher_Job.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Merge from V5_1_4_BR (5_1_4rc2) 09/06/2010
+
+2010-06-09 16:17 secher
+
+ * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ add ccc batch manager for CCRT machines
+
+2010-06-07 08:27 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ 0020902: EDF 1416 GUI: Problems in the Notebook and with Setcolor when switching the locale
+
+2010-06-03 19:45 nge
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ Draft : First bversion of Observer on kernel side.
+
+2010-06-02 14:04 nge
+
+ * src/SALOMEDSImpl/: Makefile.am, SALOMEDSImpl_Study.cxx:
+
+ Remove useless SALOMEDS include
+
+2010-06-01 20:03 nge
+
+ * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDSClient/Makefile.am,
+ SALOMEDSClient/SALOMEDSClient_Observer.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Completing the study observer on the server side
+
+2010-06-01 20:03 caremoli
+
+ * src/SALOMEDSClient/SALOMEDSClient_Observer.hxx:
+
+ file SALOMEDSClient_Observer.hxx was added on branch V6_main on 2011-01-03 16:03:43 +0000
+
+2010-06-01 09:39 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: add the Container Manager pid to the name of container log file to separate
+ log files from different sessions with same user on same resource and same container name
+
+2010-05-25 17:55 caremoli
+
+ * idl/Makefile.am, idl/SALOMEDS.idl, idl/SALOME_Observer.idl,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ CCAR: first version of Observer
+
+2010-05-24 13:54 inv
+
+ * configure.ac:
+
+ Changing version to 6.1.0
+
+2010-05-24 12:58 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ 0020883: [CEA 404] Pb with old hdf
+
+2010-05-21 10:40 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Changed memory unit for batch jobs to megabytes
+
+2010-05-19 16:42 caremoli
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR:bad error redirection
+
+2010-05-18 16:36 secher
+
+ * src/: MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/MPIObject_i.hxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx:
+
+ only default constructor is needed for MPIObject
+
+2010-05-17 14:08 adam
+
+ * salome_adm/cmake_files/: FindMPI.cmake, Makefile.am, am2cmake.py:
+
+ [no log message]
+
+2010-05-17 14:08 vsr
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ file FindMPI.cmake was added on branch BR_WIN_INDUS_514 on 2010-09-09 14:21:52 +0000
+
+2010-05-17 14:08 vsr
+
+ * salome_adm/cmake_files/FindMPI.cmake:
+
+ file FindMPI.cmake was added on branch V6_main on 2010-06-10 07:47:14 +0000
+
+2010-05-17 11:51 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-05-17 11:44 adam
+
+ * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
+
+ [no log message]
+
+2010-05-14 20:17 vsr
+
+ * doc/salome/: gui/static/header.html, tui/static/header.html:
+
+ Merge from V5_1_main branch 14/05/2010
+
+2010-05-14 18:12 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ 0020867: EDF 1407 KERNEL: Error while saving study from script
+
+2010-05-14 15:12 vsr
+
+ * idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx:
+
+ Merge results of improvement 0020465: CEA 335] sort tables in visualisation mode from V5_1_main branch
+
+2010-05-14 14:57 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/config_appli.xml, bin/createAppli.sh,
+ bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/Makefile.am,
+ doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
+ doc/salome/Makefile.am, doc/salome/salome_application.dox,
+ doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
+ doc/salome/gui/images/head.png,
+ doc/salome/gui/static/doxygen.css,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/images/head.png, doc/salome/tui/input/index.dox,
+ doc/salome/tui/static/doxygen.css,
+ doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html.in, idl/Calcium_Ports.idl.in,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Logger.idl,
+ idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/KERNELCatalog.xml.in,
+ resources/Makefile.am, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Merge from V5_1_main 14/05/2010
+
+2010-05-07 14:24 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/Makefile.am,
+ doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/gui/static/footer.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/pythfilter.py, doc/salome/tui/static/footer.html,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Merge from V5_1_4_BR 07/05/2010
+
+2010-05-06 11:08 inv
+
+ * src/MPIContainer/Makefile.am:
+
+ Fix linkage problem (on Debian 4, 3.1)
+
+2010-05-06 09:21 vsr
+
+ * src/ParallelContainer/Makefile.am:
+
+ Fix compilation problem (remove non-required file).
+
+2010-05-03 16:23 caremoli
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR: replace INFOS by MESSAGE in isKnownComponentClass because incomprehensible
+ messages was appearing during dump study
+
+2010-05-03 11:15 caremoli
+
+ * src/MPIContainer/: MPIContainer_i.cxx, MPIObject_i.cxx:
+
+ CCAR: add std:: to string in MPIContainer
+
+2010-04-30 11:56 adam
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ If you launch two salome sessions and try to execute a
+ YACS graph in each one, you have to start a container, the
+ traces are redirected in a log file with the same name ...
+ The file is overwritten on linux whereas on windows it
+ generates an error since the file is locked ...
+ On windows, I complete the file with the pid ...
+
+2010-04-23 17:57 adam
+
+ * src/Container/Container_i.cxx:
+
+ windows fix in load_component_CppImplementation
+
+2010-04-22 12:15 ouv
+
+ * idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx:
+
+ Issue 0020465: [CEA 335] sort tables in visualisation mode
+
+2010-04-21 16:01 secher
+
+ * src/MPIContainer/MPIObject_i.hxx:
+
+ [no log message]
+
+2010-04-21 10:31 vsr
+
+ * salome_adm/unix/config_files/: enable_pthreads.m4,
+ DEPRECATED/ac_cxx_bool.m4, DEPRECATED/ac_cxx_mutable.m4,
+ DEPRECATED/ac_cxx_partial_specialization.m4,
+ DEPRECATED/ac_cxx_typename.m4:
+
+ Update copyright notes (for 2010)
+
+2010-04-21 10:26 vsr
+
+ * salome_adm/unix/config_files/DEPRECATED/: ac_cc_warnings.m4,
+ ac_cxx_bool.m4, ac_cxx_mutable.m4,
+ ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
+ check_pthreads.m4, mkinstalldirs:
+
+ Update copyright notes (for 2010)
+
+2010-04-21 08:04 vsr
+
+ * doc/salome/: gui/static/footer.html, tui/static/footer.html:
+
+ Update copyright notes
+
+2010-04-20 10:21 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Increment version number
+
+2010-04-19 17:09 adam
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindPLATFORM.cmake,
+ am2cmake.py:
+
+ [no log message]
+
+2010-04-19 15:20 vsr
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runNS.py, bin/runNS.sh, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/Makefile.am,
+ doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
+ doc/salome/Makefile.am, doc/salome/gui/Makefile.am,
+ doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
+ idl/Calcium_Ports.idl.in, idl/DSC_Engines.idl,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, idl/SALOME_PyNode.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/local_install.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ Update copyright notices (for 2010)
+
+2010-04-19 12:46 inv
+
+ * configure.ac:
+
+ Changing version to 5.1.4
+
+2010-04-15 10:45 caremoli
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ CCAR: add default resource in Resource Mananger (localhost)
+ and catch salome_exception in LifeCycle
+
+2010-04-14 07:25 vsr
+
+ * src/Launcher/Launcher.cxx:
+
+ Fix compilation error
+
+2010-04-13 14:27 ana
+
+ * src/: LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ NamingService/Test/NamingServiceTest.cxx,
+ Logger/SALOME_Trace.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:24 ana
+
+ * src/: DSC/DSC_User/Basic/basic_port_factory.cxx,
+ DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ Launcher/Launcher.cxx, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_LauncherServer.cxx,
+ Launcher/SALOME_Launcher_Handler.cxx,
+ Launcher/SALOME_Launcher_Parser.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:21 ana
+
+ * src/: SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/utilities.h,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDS/Test/SALOMEDSTest.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ SALOMEDS/Test/TestSALOMEDS.cxx,
+ DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:15 ana
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ Utils/Test/UtilsTest.cxx,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:11 ana
+
+ * src/: SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_Client.cxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_IParameters.cxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/ServiceUnreachable.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:08 ana
+
+ * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFattribute.cc,
+ HDFPersist/HDFcontainerObject.cc, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFdataset.cc, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFobject.cc, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ Utils/OpUtil.cxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/duplicate.cxx,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/testDS.cxx:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-13 14:04 ana
+
+ * src/: Basics/BasicsGenericDestructor.cxx,
+ Basics/Basics_DirUtils.cxx, Basics/Basics_Utils.cxx,
+ Communication/MultiCommException.cxx, Communication/Receiver.cxx,
+ Communication/ReceiverFactory.cxx, Communication/Receivers.cxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SenderFactory.cxx,
+ Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/Container_init_python.cxx,
+ Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_FileRef_i.cxx, Container/TestSalome_file.cxx,
+ DF/DF_Application.cxx, DF/DF_Attribute.cxx,
+ DF/DF_ChildIterator.cxx, DF/DF_Container.cxx, DF/DF_Document.cxx,
+ DF/DF_Label.cxx, DF/testDF.cxx,
+ GenericObj/SALOME_GenericObj_i.cc:
+
+ Use the prefix std:: instead of the directive using namespace std;
+
+2010-04-12 08:20 vsr
+
+ * src/: SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx:
+
+ 0020465: [CEA 335] sort tables in visualisation mode
+ Implement Sort() and Swap() functions for table attributes
+
+2010-04-12 08:20 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx:
+
+ file SALOMEDSImpl_AttributeTable.hxx was added on branch V5_1_3_BR on 2010-05-14 13:12:41 +0000
+
+2010-04-12 08:20 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTable.hxx:
+
+ file SALOMEDSImpl_AttributeTable.hxx was added on branch V6_main on 2010-05-14 12:57:26 +0000
+
+2010-04-12 08:19 vsr
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx:
+
+ file SALOMEDSClient_AttributeTable.hxx was added on branch V5_1_3_BR on 2010-05-14 13:12:41 +0000
+
+2010-04-12 08:19 vsr
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx:
+
+ file SALOMEDSClient_AttributeTable.hxx was added on branch V6_main on 2010-05-14 12:57:25 +0000
+
+2010-04-12 08:17 vsr
+
+ * idl/SALOMEDS_Attributes.idl, src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
+
+ 0020465: [CEA 335] sort tables in visualisation mode
+ Implement Sort() and Swap() functions for table attributes
+
+2010-04-09 18:27 caremoli
+
+ * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/TestContainer/TestContainer.cxx:
+
+ CCAR: improvement to the component loading mechanism of SALOME (issue 20675)
+ Main modifications are:
+ - add an out string argument to container methods (load_component_Library and create_component_instance_env)
+ to report reason when load or create fails (INTERFACE CHANGE)
+ - try to detect if the implementation is C++, python or executable based on intermediate errors (dlopen, dlsym,
+ import, ...)
+ - some refactoring to put specific parts in separate methods
+ - minimal update of MPIContainer and ParallelContainer
+ - keep LifeCycle unchanged
+
+2010-04-08 18:30 vsr
+
+ * idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
+
+ Improve SALOMEDS attributes interfaces:
+ - Improve attributes documentation
+ - Redesing table attributes hierarchy
+ - Add missing interface functions (GetRowTitle(), GetColumnTitle(), GetRowUnit()) for table attributes
+ - Improve AttributeParameter (add named CORBA exception InvalidIdentifier)
+
+2010-04-08 12:31 dmv
+
+ * doc/salome/: gui/static/doxygen.css, tui/static/doxygen.css,
+ tui/static/header.html.in:
+
+ Improve Documentation style.
+
+2010-04-07 13:08 dmv
+
+ * doc/salome/gui/static/doxygen.css:
+
+ Improve documentation style
+
+2010-04-07 12:57 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx:
+
+ Fix bugs of GetRowUnits() / GetRowTitles() functions
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/gui/static/doxygen.css:
+
+ file doxygen.css was added on branch V6_main on 2010-05-14 12:57:06 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/tui/static/doxygen.css:
+
+ file doxygen.css was added on branch V6_main on 2010-05-14 12:57:07 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/gui/images/head.png:
+
+ file head.png was added on branch V6_main on 2010-05-14 12:57:06 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/tui/images/head.png:
+
+ file head.png was added on branch V6_main on 2010-05-14 12:57:07 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/gui/static/header.html.in:
+
+ file header.html.in was added on branch V6_main on 2010-05-14 12:57:06 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/tui/static/header.html.in:
+
+ file header.html.in was added on branch V6_main on 2010-05-14 12:57:07 +0000
+
+2010-04-07 09:20 vsr
+
+ * doc/salome/tui/input/index.dox:
+
+ file index.dox was added on branch V6_main on 2010-05-14 12:57:07 +0000
+
+2010-04-07 09:20 dmv
+
+ * configure.ac, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, doc/salome/gui/images/head.png,
+ doc/salome/gui/static/doxygen.css,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html,
+ doc/salome/gui/static/header.html.in, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/images/head.png,
+ doc/salome/tui/input/index.dox,
+ doc/salome/tui/static/doxygen.css,
+ doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html,
+ doc/salome/tui/static/header.html.in:
+
+ Improve documentation style
+
+2010-04-06 18:14 caremoli
+
+ * src/Container/: Component_i.cxx, SALOME_Container.cxx,
+ TestSalome_file.cxx:
+
+ CCAR: add some lacking declarations
+
+2010-03-25 14:34 ouv
+
+ * src/HDFPersist/: HDFascii.cc, HDFascii.hxx:
+
+ Issue 0020613: EDF 1106 : Modify Node Marker in SMESH and VISU
+
+2010-03-23 15:48 adam
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
+
+ Remove warnings
+
+2010-03-23 11:48 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility hexotic
+
+2010-03-23 11:26 tajchman
+
+ * salome_adm/unix/config_files/check_openmpi.m4:
+
+ set WITHMPI value when using OpenMPI
+
+2010-03-23 10:32 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility GHS3DPRLPLUGIN
+
+2010-03-22 10:23 caremoli
+
+ * bin/shutdownSalome.py, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx:
+
+ CCAR: improve the shutdown process
+ 1- use salome_kernel.py module instead of salome.py in shutdownSalome.py to avoid calling Study
+ 2- disconnect all connections in the connection manager
+ 3- change the order of servers shutdown :
+ - connection manager
+ - study
+ - module catalog
+ - registry
+ - launcher
+ - logger
+ and add some waiting time between each shutdown because it is asynchronous.
+
+2010-03-22 10:15 caremoli
+
+ * bin/appli_gen.py, bin/config_appli.xml,
+ doc/salome/salome_application.dox:
+
+ CCAR: add a new parameter (resources) to configuration of SALOME Application
+ It is a new entry in config_appli.xml file (tag resources) that gives the path of a user resources catalog
+ It is added to the SALOME Application as the USER_CATALOG_RESOURCES_FILE environment variable in env.d/configSalome.sh
+
+2010-03-22 09:31 caremoli
+
+ * src/DSC/: DSC_Python/calcium.i,
+ DSC_User/Datastream/CouplingPolicy.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.c,
+ DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ DSC_User/Datastream/Calcium/calciumf.c:
+
+ CCAR: add requests cp_effi and cp_efft to calcium api
+
+2010-03-19 18:53 adam
+
+ * src/: Basics/BasicsGenericDestructor.hxx,
+ Basics/Basics_DirUtils.cxx, DF/DF_ChildIterator.cxx,
+ DF/DF_Label.cxx, DF/testDF.cxx,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFconvert.cc, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFfile.cc,
+ HDFPersist/HDFobject.cc, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx:
+
+ Remove some warnings in windows compilation ...
+
+2010-03-19 18:28 caremoli
+
+ * src/DSC/: DSC_Python/calcium.i,
+ DSC_User/Datastream/Calcium/Calcium.c,
+ DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC_User/Datastream/Calcium/calcium.h,
+ DSC_User/Datastream/Calcium/calciumf.c:
+
+ CCAR: CPEFFI and CPEFFT functions renamed CPFINI and CPFINT as in original CALCIUM API
+
+2010-03-19 17:57 caremoli
+
+ * src/DSC/: DSC_Python/calcium.i,
+ DSC_User/Datastream/CouplingPolicy.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.c,
+ DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ DSC_User/Datastream/Calcium/calciumf.c:
+
+ CCAR: add two requests to CALCIUM API (CPEFFI and CPEFFT)
+ These requests remove all dataid before a given time (cpefft) or iteration number (cpeffi)
+ C, Fortran and Python API are implemented
+
+2010-03-19 14:42 vsr
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
+
+ Issue 0020794: A strange cast (const char*) --> bool in SALOME_ModuleCatalog_Handler.cxx
+
+2010-03-19 10:38 ribes
+
+ * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
+
+ - Add new class to improve python scripts for Launcher
+
+2010-03-17 18:31 caremoli
+
+ * src/Container/Container_i.cxx:
+
+ CCAR: duplicate env var (strdup) before calling putenv that does not copy the string
+ memory leak but small
+
+2010-03-16 18:15 caremoli
+
+ * idl/Makefile.am, idl/SALOME_Component.idl,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ CCAR: add a method to Container idl (create_component_instance_env) to be able
+ to create a standalone component (executable) with predefined environment variables.
+ It's mainly the same method as create_component_instance with a third argument that is
+ a dict(string,Any) to pass in the environment variables.
+ create_component_instance has been reimplemented by calling create_component_instance_env with an empty dict (for compatibility with 5.1.3)
+ MPIContainer and ParallelContainer have been updated
+
+2010-03-12 10:26 caremoli
+
+ * src/DSC/DSC_Python/calcium.i:
+
+ CCAR: add lacking #ifdef WITH_NUMPY in calcium.i for freearg typemaps
+
+2010-03-12 08:59 caremoli
+
+ * resources/KERNELCatalog.xml.in, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
+
+ CCAR: complete Calcium C API with cp_lln, cp_eln and remove some bugs in fortran and python interfaces
+ add CALCIUM_long as SALOME type
+
+2010-03-11 19:00 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compile the noinst libraries as static and
+ do not install them.
+
+2010-03-11 18:59 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Enable warnings into windows ...
+
+2010-03-03 09:45 vsr
+
+ * salome_adm/cmake_files/FindLIBXML2.cmake:
+
+ Additional fix of libxml2 check procedures for PARAVIS compilation (Linux)
+
+2010-03-03 09:43 vsr
+
+ * salome_adm/cmake_files/FindLIBXML2.cmake:
+
+ Revert previous change (wrong branch, it's for 6x)
+
+2010-03-03 09:40 vsr
+
+ * salome_adm/cmake_files/FindLIBXML2.cmake:
+
+ Additional fix of libxml2 check procedures for PARAVIS compilation (Linux)
+
+2010-03-02 16:44 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-03-02 13:45 vsr
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindLIBXML2.cmake:
+
+ Fix boost and libxml2 check procedures for PARAVIS compilation
+
+2010-03-02 10:47 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2010-03-02 10:44 vsr
+
+ * src/KERNEL_PY/salome_version.py:
+
+ Issue 0020739: EDF 1215 STUDY : Know the hexadecimal version of Salome
+
+2010-03-01 15:34 secher
+
+ * src/MPIContainer/: MPIContainer_i.cxx, MPIObject_i.cxx,
+ MPIObject_i.hxx:
+
+ replace POException by SALOME_Exception
+
+2010-02-23 08:20 ageay
+
+ * src/Communication/SALOME_Comm_i.hxx:
+
+ Remove useless method.
+
+2010-02-19 14:54 adam
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/Launcher_Job.cxx, Launcher/Launcher_Job.hxx,
+ Launcher/Launcher_Job_Command.hxx,
+ Launcher/Launcher_Job_PythonSALOME.hxx,
+ Launcher/Launcher_Job_SALOME.hxx,
+ Launcher/Launcher_Job_YACSFile.hxx, Launcher/SALOME_Launcher.cxx:
+
+ windows port
+
+2010-02-19 11:30 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ allow launch MPI containers when MPI environment is not defined in default environment but in Salome environment
+
+2010-02-17 10:46 adv
+
+ * idl/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ src/Launcher/Launcher.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx:
+
+ Improve build system: install each module's header files to the sub-directory of ${prefix}/include/salome/${module_name}
+
+2010-02-17 10:30 adv
+
+ * src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
+
+ Fix build procedure error: wrong make clean rule
+
+2010-02-16 11:53 ribes
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ - English patch - Thanks to Gilles David
+
+2010-02-12 09:27 vsr
+
+ * src/SALOMEDSImpl/: Makefile.am, SALOMEDSImpl_Study.cxx:
+
+ Issue 20509: EDF 1065 OTHER : Add the Salome version in the header of the dump
+
+2010-02-11 16:20 ribes
+
+ * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
+
+ - Force Bash use -> problem with recent Debian Linux
+
+2010-02-11 11:10 ouv
+
+ * salome_adm/unix/config_files/check_libxml.m4:
+
+ Issue 0020692: Duplicate check_*.m4 between modules.
+
+2010-02-10 16:34 ribes
+
+ * clean_configure, idl/Makefile.am,
+ src/Launcher/Launcher_Job_SALOME.cxx:
+
+ - Better clean_configure with libtool > 2
+ - Parallel compilation with PaCO++
+ - Better Catalog Resource generation
+
+2010-02-10 10:47 caremoli
+
+ * bin/virtual_salome.py:
+
+ CCAR: improve SALOME application generation : links all subdirectories in share/salome
+ not only resources
+
+2010-02-09 11:21 caremoli
+
+ * bin/appliskel/getAppliPath.py:
+
+ CCAR: improve getAppliPath.py to handle HOME directories with symbolic links
+
+2010-02-04 17:23 ribes
+
+ * idl/Makefile.am, src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ - New Version with PaCO++
+
+2010-02-01 12:05 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Fixed method GetLoggedDeltas, now they are sorted by object's entries
+
+2010-02-01 11:35 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fixed method RemoveObjectWithChildren, the children are not put in the modification delta
+
+2010-01-29 08:09 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
+
+ Added storing of modification deltas to enable optimization of the Object Browser
+
+2010-01-27 15:29 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Bug in FindContainer
+
+2010-01-27 09:24 vsr
+
+ * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
+
+ Improve AttributeUserID management: implement the GUIDs repository
+
+2010-01-26 11:40 barate
+
+ * src/Launcher/: Launcher_Job.cxx, Launcher_Job_Command.cxx,
+ Launcher_Job_SALOME.cxx:
+
+ Use constants in namespace Batch in libBatch. Warning: this change will break Kernel compilation with libBatch versions older than tag trunk_20100120.
+
+2010-01-25 19:12 caremoli
+
+ * bin/appli_clean.sh:
+
+ CCAR: remove creation 0 file in appli_clean.sh script shell
+
+2010-01-25 15:35 ribes
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ - Bug in check time duration
+
+2010-01-21 18:02 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Adding RemoveResource
+
+2010-01-21 17:30 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - appli_path bug write fix
+
+2010-01-21 12:05 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Rename new ResourcesManager CORBA method
+
+2010-01-21 09:09 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
+
+ Enable SALOME_GenericObj management by AttributeIOR back.
+
+2010-01-20 17:05 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ - Adding a new method to SALOME_ResourceManager:
+
+ //! Add a new resource to the resource_manager
+ /*!
+ write -> true, resource manager will add it into a xml_file
+ xml_file -> could be empty, in this case if write is true, resource manager will write
+ the resource in its first ResourceCatalog file
+ */
+ void AddResourceDefinition(in ResourceDefinition new_resource, in boolean write, in string xml_file)
+ raises (SALOME::SALOME_Exception);
+
+2010-01-20 15:06 ribes
+
+ * src/Launcher/: Launcher_Job_Command.cxx, Launcher_Job_SALOME.cxx:
+
+ - Adding PATH and PYTHONPATH of workdirectory in job environnement
+
+2010-01-19 19:09 caremoli
+
+ * src/Container/Component_i.cxx:
+
+ CCAR: delete the notification supplier CORBA object with deactivate_object and _remove_ref
+
+2010-01-19 17:49 caremoli
+
+ * src/Container/Component_i.cxx:
+
+ CCAR: revert the change because the problem is in NOTIFICATION (issue 20661)
+
+2010-01-19 11:17 ribes
+
+ * src/Container/SALOME_ContainerManager.hxx:
+
+ - Merger bug
+
+2010-01-19 11:06 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Merge from mergeto_V5_1_main_19Jan10
+
+2010-01-19 10:57 ribes
+
+ * salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Communication/Receivers.cxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SenderFactory.cxx,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/DF/DF_ChildIterator.cxx, src/DF/DF_definitions.hxx,
+ src/DF/testDF.cxx, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_User/DSC_Exception.hxx,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/HDFPersist/HDFascii.hxx, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFobjectIdentify.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/hdfi.h, src/HDFPersist/test3.cxx,
+ src/HDFPersist/test4.cxx, src/HDFPersist/test6.cxx,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_test.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestContainer.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/OpUtil.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx:
+
+ Merge from mergeto_BR_V51_AR_19Jan10
+
+2010-01-18 17:27 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Bug when getting resource description
+
+2010-01-18 15:07 barate
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ Changed Launcher_Job to use new libBatch status codes.
+
+2010-01-18 14:03 vsr
+
+ * src/Container/Component_i.cxx:
+
+ 0020661: [CEA 387 ] bug on exit of Salome after a little yacs graph
+
+2010-01-15 11:42 ribes
+
+ * idl/SALOME_ContainerManager.idl:
+
+ Change in the JobParameters.
+ Add a new sequence for specific optional arguments
+
+2010-01-14 16:32 vsr
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Fix problem in salome_test.py caused by recent replacement of pointe.med file
+
+2010-01-13 14:10 secher
+
+ * src/Launcher/: Launcher.cxx, Makefile.am:
+
+ debug batch job command from xml file
+
+2010-01-12 17:36 ribes
+
+ * src/Launcher/Launcher.cxx:
+
+ - Problem with the use of the C++ map
+
+2010-01-06 15:24 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ - Check if we add a resource already added
+ - Write a warning and kepp last resource found
+
+2010-01-04 16:22 secher
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ improvement on mutex
+
+2010-01-04 12:39 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Portability pyhello
+
+2010-01-04 12:35 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fix multiple definitions in swig options
+
+2010-01-04 11:50 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Portability superv
+
+2010-01-04 11:48 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Don't search the boost libs in system path if using WITH_BOOST
+
+2010-01-04 11:47 adam
+
+ * salome_adm/cmake_files/FindHDF5.cmake:
+
+ Compatibility with new hdf versions
+
+2010-01-04 11:47 adam
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Some piece of code in salome does not compile with -O2 !!!
+
+2009-12-21 11:00 ouv
+
+ * idl/SALOME_Notebook.idl,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Debug
+
+2009-12-18 16:11 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Launcher/Launcher_Job_SALOME.cxx:
+
+ debug for CCRT
+
+2009-12-18 15:20 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Launcher/Launcher_Job_SALOME.cxx:
+
+ debug for CCRT
+
+2009-12-17 12:57 vsr
+
+ * src/KERNEL_PY/salome.py:
+
+ Fix a problem of RTTI data initialization in the libraries loaded by Python (SWIG-modules, etc). Additional fix: dl module can be unavaiable in Python.
+
+2009-12-16 14:24 vsr
+
+ * src/KERNEL_PY/salome.py:
+
+ Fix a problem of RTTI data initialization in the libraries loaded by Python (SWIG-modules, etc). Without this change, dynamic_cast<..> operator does not work that can cause runtime error (like crash or incorrect operating of some functionality).
+
+2009-12-16 11:26 eap
+
+ * src/: Basics/BasicsGenericDestructor.cxx,
+ Basics/BasicsGenericDestructor.hxx, Communication/Receivers.cxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SenderFactory.cxx,
+ Container/SALOME_ContainerManager.cxx, DF/DF_ChildIterator.cxx,
+ DF/DF_definitions.hxx, DF/testDF.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ DSC/DSC_Basic/DSC_Callbacks.hxx, DSC/DSC_Basic/DSC_i.cxx,
+ DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_Basic/DSC_interface.cxx,
+ DSC/DSC_Basic/DSC_interface.hxx,
+ DSC/DSC_Basic/PortProperties_i.hxx,
+ DSC/DSC_User/DSC_Exception.hxx,
+ DSC/DSC_User/Superv_Component_i.cxx,
+ DSC/DSC_User/Superv_Component_i.hxx,
+ DSC/DSC_User/provides_port.hxx, DSC/DSC_User/uses_port.hxx,
+ DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium.h,
+ DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ DSC/DSC_User/Datastream/Calcium/version.h,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ DSC/ParallelDSC/ParallelDSC_i.cxx,
+ DSC/ParallelDSC/ParallelDSC_i.hxx,
+ DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ HDFPersist/HDFascii.hxx, HDFPersist/HDFattrGetType.c,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetCreate.c,
+ HDFPersist/HDFdatasetGetDim.c, HDFPersist/HDFdatasetGetType.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFtypes.h,
+ HDFPersist/hdfi.h, HDFPersist/test3.cxx, HDFPersist/test4.cxx,
+ HDFPersist/test6.cxx, Launcher/BatchTest.cxx,
+ Launcher/Launcher.cxx, Launcher/Launcher_Job.cxx,
+ Launcher/Launcher_Job_SALOME.cxx, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher_Handler.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestContainerManager.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ Notification/CosNotifyShorthands.h,
+ Notification/NOTIFICATION_Consumer.cxx,
+ ParallelContainer/Parallel_Salome_file_i.cxx,
+ ParallelContainer/Parallel_Salome_file_i.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_Client.cxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDS/Test/TestSALOMEDS.cxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/utilities.h,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestContainer.cxx,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, Utils/OpUtil.cxx,
+ Utils/Utils_CommException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_Identity.cxx,
+ Utils/Utils_Identity.hxx, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/duplicate.cxx:
+
+ untabify
+
+2009-12-15 17:09 ouv
+
+ * idl/SALOME_Notebook.idl:
+
+ Added method SALOME_Notebook::GetAttributeParameters
+
+2009-12-15 14:16 asl
+
+ * src/GenericObj/: SALOME_GenericObj_i.cc, SALOME_GenericObj_i.hh:
+
+ new method BeforeDeactivate() for custom actions before servant deactivation
+
+2009-12-15 14:15 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ new method RemoveObject()
+
+2009-12-15 11:52 prascle
+
+ * bin/appli_gen.py, idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ merge from branch BR_V511_PR 15 12 2009
+
+2009-12-15 11:26 ribes
+
+ * bin/appli_gen.py:
+
+ - Add name parameter to appli_gen
+
+2009-12-15 09:36 prascle
+
+ * src/Launcher/: Launcher.cxx, Launcher.hxx,
+ Launcher_Job_PythonSALOME.cxx:
+
+ PR: andre bugs :-) LIBBATCH is not mandatory...
+
+2009-12-15 09:22 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ - Resource Management refactoring:
+ - Remove "alias" to a resource
+ - Add "name" to a resource
+ - The resource manager now work with resource and not a machine
+ - Add nbproc for resource selection
+ - Container Manager refactoring:
+ - Split MachineParameters in two parts: ContainerParameters and ResourceParameters
+ - Remove FindOrStartContainer, StartContainer and FindOrStartParallelContainer
+ - Remove SALOME_BATCH
+ - Add two new modes for GiveContainer: "find" and "findorstart"
+ - LifeCycleCORBA:
+ - For Salome 5.1.4: Same interface (use of MachineParemeters)
+ - For Salome 6.x.x: Use of ContainerParameters
+
+2009-12-14 15:23 vsr
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Introduce Parameter wrapper class in Python
+
+2009-12-14 15:14 ribes
+
+ * idl/SALOME_Session.idl, src/Basics/Basics_DirUtils.cxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/KERNEL_PY/salome_test.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Merge from V5_1_main_20091214
+
+2009-12-14 14:02 vsr
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Introduce Parameter wrapper class in Python
+
+2009-12-14 12:43 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ instance of Parameter can be passed into Geom objects
+
+2009-12-11 11:41 eap
+
+ * idl/SALOME_Session.idl:
+
+ 0020605: EDF 1190 SMESH: Display performance. 80 seconds for 52000 cells.
+ +//! Returns host name
+ + string getHostname();
+
+2009-12-10 16:21 secher
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ when launch local container, print command in log file
+
+2009-12-10 15:11 secher
+
+ * src/Launcher/Launcher_Job_SALOME.cxx:
+
+ to assure that salome servers are well finished before quit batch script
+
+2009-12-10 12:19 asl
+
+ * src/SALOMEDS/: SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyManager_i.cxx:
+
+ debug of load
+
+2009-12-10 10:49 asl
+
+ * src/SALOMEDS/: SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyBuilder_i.cxx:
+
+ debug of loading of old studies
+
+2009-12-09 13:59 caremoli
+
+ * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
+
+ CCAR: change implementation of getContainerName to avoid lock with python container
+
+2009-12-08 14:27 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ [no log message]
+
+2009-12-08 13:54 asl
+
+ * src/: SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
+
+ Loading of old-style Notebook data
+
+2009-12-08 12:09 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ New method GetParametersDependingOn()
+
+2009-12-07 16:25 secher
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ LSF improvement
+
+2009-12-07 15:51 vsr
+
+ * src/: Basics/Basics_DirUtils.cxx, Basics/Basics_Utils.cxx,
+ Basics/Basics_Utils.hxx, KERNEL_PY/salome_test.py,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ SALOMEDS/SALOME_DriverPy.py,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Merge from V5_1_3_BR 07/12/2009
+
+2009-12-07 15:07 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Notebook component visibility in the Object Browser
+
+2009-12-07 12:21 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Update() now does not have arguments
+
+2009-12-07 12:17 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ 1. The Update() method now updates all objects (no argument)
+ 2. New method Calculate() for calculations with notebook parameters without creation of anonymous parameter
+
+2009-12-04 11:42 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Replace rsh (ssh) user@machine by rsh (ssh) -l user machine
+
+2009-12-03 17:02 ribes
+
+ * src/Launcher/: Launcher_Job.cxx, Launcher_Job.hxx,
+ Launcher_Job_Command.cxx, Launcher_Job_PythonSALOME.cxx,
+ Launcher_Job_YACSFile.cxx:
+
+ - YACSFile jobs and PythonSALOME jobs can choose their files extensions
+
+2009-12-03 16:27 ouv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Debug
+
+2009-12-02 10:33 vsr
+
+ * idl/SALOME_Notebook.idl:
+
+ [no log message]
+
+2009-12-01 13:38 ouv
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ notebook.myNotebook.Update( 1 ) is called inside notebook.set() method (to update values of dependent parameters)
+
+2009-11-26 16:20 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ CalculationError could be thrown on AddExpression and AddNamedExpression
+
+2009-11-26 15:52 secher
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ if cluster internal protocol is not specified, it is equal to protocol
+
+2009-11-26 15:32 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ update eSGE type batch and cluster internal protocol
+
+2009-11-26 15:22 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ GetAbsentParameters() now has argument-expression; it is impossible that in the notebook absent variables was referenced
+
+2009-11-26 14:50 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - Add nb_proc to MachineParameters
+ - Adding $HOME to default work_directory
+ - RemoveJob fixed
+
+2009-11-26 09:37 ouv
+
+ * idl/SALOME_Notebook.idl:
+
+ Added method GetExpression( in boolean forceConvert )
+
+2009-11-25 15:49 prascle
+
+ * src/Launcher/Launcher_Job_PythonSALOME.cxx:
+
+ file Launcher_Job_PythonSALOME.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-25 15:49 prascle
+
+ * src/Launcher/Launcher_Job_PythonSALOME.hxx:
+
+ file Launcher_Job_PythonSALOME.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-25 15:49 prascle
+
+ * src/Launcher/Launcher_Job_SALOME.cxx:
+
+ file Launcher_Job_SALOME.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-25 15:49 prascle
+
+ * src/Launcher/Launcher_Job_SALOME.hxx:
+
+ file Launcher_Job_SALOME.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-25 15:49 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_PythonSALOME.cxx,
+ src/Launcher/Launcher_Job_PythonSALOME.hxx,
+ src/Launcher/Launcher_Job_SALOME.cxx,
+ src/Launcher/Launcher_Job_SALOME.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx:
+
+ - Adding new type of Job: python_salome
+ - Using USER env variable if UserName is not defined in the
+ resource description
+
+2009-11-25 14:17 vsr
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ Integrate patch from EDF for resources manager
+
+2009-11-25 13:40 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ the method Update() now has parameter
+
+2009-11-25 13:35 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ debug of exceptions
+
+2009-11-25 10:13 ouv
+
+ * idl/SALOME_Notebook.idl:
+
+ Added flag 'onlyParameters' to Update() method
+
+2009-11-25 09:46 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ GetParameters() is implemented: returns list of parameter names separated by comma, that the object depends on
+
+2009-11-25 09:20 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ exceptions are declared
+
+2009-11-24 15:00 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ new method GetParameter()
+
+2009-11-24 11:15 asl
+
+ * src/: SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ debug of load and dump to python of notebook
+
+2009-11-24 11:12 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ new methods Parameter() and Dump()
+
+2009-11-24 11:08 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ new methods Rename() and Dump()
+
+2009-11-21 13:13 asl
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl_Study.cxx:
+
+ Previous implementation of notebook is removed
+
+2009-11-21 13:12 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Implementation of python wrapper for notebook
+
+2009-11-21 13:10 asl
+
+ * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
+
+ dump notebook to python
+
+2009-11-21 13:10 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ 1. Minor renaming
+ 2. Methods for objects dependencies
+ 3. Method for dump to python
+
+2009-11-20 15:58 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ [no log message]
+
+2009-11-20 15:58 asl
+
+ * src/: SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, Makefile.am:
+
+ persistence implementation
+
+2009-11-20 15:55 asl
+
+ * idl/SALOME_Notebook.idl:
+
+ new methods Save(), Load(), Params()
+
+2009-11-20 08:53 asl
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ StudyId should be passed into Find method
+
+2009-11-20 08:52 asl
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Base python interface for notebook
+
+2009-11-20 08:51 asl
+
+ * idl/: SALOME_Component.idl, SALOME_Notebook.idl:
+
+ Implementation of update for objects
+
+2009-11-20 08:50 asl
+
+ * src/Container/: Component_i.cxx, SALOME_ComponentPy.py,
+ SALOME_Component_i.hxx:
+
+ default implementation of FindObjectByInternalEntry
+
+2009-11-20 05:32 pkv
+
+ * src/TestContainer/Makefile.am:
+
+ add necessary libs to COMMON_LIBS variable
+
+2009-11-20 05:30 pkv
+
+ * src/SALOMEDS/Makefile.am:
+
+ add $(COMMON_LIBS) in section Executables targets
+
+2009-11-19 16:11 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ Remove Old Launcher Code
+ Works Fine with ePBS and eSSH
+
+2009-11-19 06:42 asl
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDS/Makefile.am,
+ idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Notebook.idl, src/Makefile.am,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_Component_i.hxx:
+
+ Base implementation of Notebook
+
+2009-11-18 16:19 ribes
+
+ * idl/SALOME_ContainerManager.idl:
+
+ EnvFile for all types of jobs
+
+2009-11-18 16:14 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher.hxx, Launcher_Job.cxx,
+ Launcher_Job.hxx, Launcher_Job_Command.cxx,
+ Launcher_Job_Command.hxx, Launcher_Job_YACSFile.cxx,
+ SALOME_Launcher.cxx, SALOME_Launcher.hxx:
+
+ - EnvFile for all type of jobs
+ - Job number counter is now thread safe
+
+2009-11-18 11:26 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/SALOME_Launcher.cxx:
+
+ - maximum_during_time tp maximum_duration
+ - Bugs in Command_Job
+
+2009-11-17 10:58 ribes
+
+ * src/Launcher/Launcher_Job_YACSFile.cxx:
+
+ - Use port argument of runSession
+ - Clean shutdown
+
+2009-11-17 10:46 ribes
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ If USER_CATALOG_RESOURCES_FILE is used, we don't take other Catalog Resources
+ files
+
+2009-11-17 10:27 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher_Job.cxx, src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/SALOME_Launcher.cxx:
+
+ - Correct use of nb_proc_per_node
+ - Generate CatalogResources
+ - Adding queue support
+
+2009-11-16 14:34 vsr
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Fix salome_test.py (check SALOME version properly to avoid failure on series 4x)
+
+2009-11-16 11:46 caremoli
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ CCAR: Fix problem with libxml2 (initialization in thread followed by not needed xmlCleanupParser)
+
+2009-11-13 16:05 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher_Job.cxx,
+ Launcher_Job_Command.cxx, Launcher_Job_YACSFile.cxx:
+
+ Test with new ePBS - Command and YACS File ok
+
+2009-11-13 10:09 pkv
+
+ * src/Makefile.am, configure.ac:
+
+ Adds Notebook CPP UNIT tests
+
+2009-11-12 15:54 ribes
+
+ * src/Launcher/: Launcher_Job_Command.cxx,
+ Launcher_Job_Command.hxx, Launcher_Job_YACSFile.cxx:
+
+ Command is now a script
+
+2009-11-12 14:36 ribes
+
+ * src/Launcher/: Launcher.cxx, Launcher_Job.cxx, Launcher_Job.hxx,
+ Launcher_Job_YACSFile.cxx, Launcher_Job_YACSFile.hxx:
+
+ YACS File job ok
+
+2009-11-11 08:54 asl
+
+ * src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
+
+ Notebook initial version
+
+2009-11-11 08:51 asl
+
+ * src/Makefile.am, configure.ac, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOME_Notebook.idl, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ Notebook initial version
+
+2009-11-10 11:12 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx, src/Launcher/SALOME_Launcher.cxx:
+
+ expected_during_time to maximum_during_time
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job.cxx:
+
+ file Launcher_Job.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job.hxx:
+
+ file Launcher_Job.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job_Command.cxx:
+
+ file Launcher_Job_Command.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job_Command.hxx:
+
+ file Launcher_Job_Command.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job_YACSFile.cxx:
+
+ file Launcher_Job_YACSFile.cxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Job_YACSFile.hxx:
+
+ file Launcher_Job_YACSFile.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 prascle
+
+ * src/Launcher/Launcher_Utils.hxx:
+
+ file Launcher_Utils.hxx was added on branch V5_1_main on 2009-12-15 10:52:11 +0000
+
+2009-11-10 10:23 ribes
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Launcher_Job.cxx,
+ src/Launcher/Launcher_Job.hxx,
+ src/Launcher/Launcher_Job_Command.cxx,
+ src/Launcher/Launcher_Job_Command.hxx,
+ src/Launcher/Launcher_Job_YACSFile.cxx,
+ src/Launcher/Launcher_Job_YACSFile.hxx,
+ src/Launcher/Launcher_Utils.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
+
+ Start New Version of SALOME Launcher
+ - New IDL API added
+ - Job Command works
+
+2009-11-09 18:09 caremoli
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx:
+
+ CCAR: remove superfluous prints in Catalog Server
+
+2009-11-09 17:34 caremoli
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ CCAR: remove print in constructor
+
+2009-11-06 14:25 prascle
+
+ * Makefile.am, configure.ac, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runNS.py, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salome.launch, bin/salomeConsole.py, bin/salome_session.py,
+ bin/salome_utils.py, bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/getAppliPath.py,
+ bin/appliskel/runSession, doc/salome/Batch.texi,
+ doc/salome/batch.dox, doc/salome/main.dox,
+ doc/salome/gui/Makefile.am, doc/salome/gui/doxyfile.in,
+ doc/salome/tui/pythfilter.py, idl/Calcium_Ports.idl,
+ idl/Calcium_Ports.idl.in, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
+ resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindDOXYGEN.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/local_install.m4, src/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_PyNode.py, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Document.cxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/ParallelDSC/Makefile.am, src/GenericObj/Makefile.am,
+ src/HDFPersist/HDFobjectIdentify.c, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_pynode.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Trace.py,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/Makefile.am, src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryService.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/SALOME_utilities.py, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Test/Makefile.am,
+ src/Utils/Test/TestUtils.py, src/win32pm/setup.py:
+
+ merge from branch V5_1_main tag mergeto_BR_V51_AR_6nov09
+
+2009-11-06 14:15 adam
+
+ * src/Basics/Basics_DirUtils.cxx:
+
+ The patch of Gilles is sufficiant.
+ Rollback to previous version.
+
+2009-11-06 12:20 vsr
+
+ * src/Basics/Basics_DirUtils.cxx:
+
+ Additional patch for recent platforms: add missing #include <cstdio>
+
+2009-11-05 15:04 vsr
+
+ * src/Basics/Basics_Utils.hxx:
+
+ A tiny fix from E.Adam fro Windows compatibility
+
+2009-11-04 12:58 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
+
+ TEMPORARILY remove SALOME_GenericObj management by AttributeIOR.
+
+2009-11-03 15:30 vsr
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Integrate patch from G.David (compatibility 4.4, ubuntu 9.10 and debian sid)
+
+2009-11-03 15:27 vsr
+
+ * src/: Basics/Basics_DirUtils.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ Integrate patch from G.David (compatibility 4.4, ubuntu 9.10 and debian sid)
+
+2009-11-02 13:21 ouv
+
+ * src/: Basics/Basics_Utils.cxx, Basics/Basics_Utils.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Kernel_Utils::Localizer - common interface to solve problems with non-"C" locales
+
+2009-10-26 11:41 ouv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Bug IPAL21432 - TC5.1.3 Load script doesn't work with Notebook in scenario PROD-009.
+
+2009-10-19 14:24 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
+
+ Remove undesired output to console
+
+2009-10-14 11:18 adam
+
+ * salome_adm/cmake_files/: am2cmake.py:
+
+ tag 5.1.2 --> 5.1.3
+
+2009-10-14 08:42 dmv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Correct previous integration
+
+2009-10-12 15:52 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ [no log message]
+
+2009-10-12 15:46 dmv
+
+ * bin/launchConfigureParser.py, bin/orbmodule.py,
+ bin/salome_session.py, bin/salome_utils.py,
+ bin/virtual_salome.py, doc/salome/tui/pythfilter.py,
+ salome_adm/cmake_files/am2cmake.py,
+ src/DSC/DSC_Python/dsccalcium.py, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/PyInterp.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py, src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/TestKiller.py,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/NamingService/Test/TestNamingService.py,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TestContainer/TestLogger.py, src/UnitTests/UnitTests.py,
+ src/Utils/SALOME_utilities.py, src/Utils/Test/TestUtils.py,
+ src/win32pm/setup.py:
+
+ correct previous integration (Porting to Python 2.6)
+
+2009-10-12 09:30 mnt
+
+ * configure.ac:
+
+ Changing version to 5.1.3
+
+2009-10-12 08:15 dmv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Porting to Python 2.6 - add coding page specification for Python scripts
+
+2009-10-09 16:33 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ desactive doxygen with cmake
+ desactive cppunit on windows for all modules except med
+
+2009-10-09 16:32 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ [no log message]
+
+2009-10-09 15:25 dmv
+
+ * bin/NSparam.py, bin/addToKillList.py, bin/appli_gen.py,
+ bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
+ bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
+ bin/salome_utils.py, bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py,
+ bin/appliskel/getAppliPath.py, doc/salome/tui/pythfilter.py,
+ salome_adm/cmake_files/am2cmake.py,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_PyNode.py, src/DSC/DSC_Python/dsccalcium.py,
+ src/KERNEL_PY/Help.py, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_kernel.py, src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/TestKiller.py,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/TestNamingService.py,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/TestLogger.py, src/UnitTests/UnitTests.py,
+ src/Utils/SALOME_utilities.py, src/Utils/Utils_Identity.py,
+ src/Utils/Test/TestUtils.py, src/win32pm/setup.py:
+
+ Porting to Python 2.6 - add coding page specification for Python scripts
+
+2009-10-09 11:33 adam
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Replace a fix by another fix ...
+
+2009-10-08 16:29 prascle
+
+ * idl/SALOME_PyNode.idl:
+
+ file SALOME_PyNode.idl was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
+
+2009-10-08 16:29 prascle
+
+ * src/Container/SALOME_PyNode.py:
+
+ file SALOME_PyNode.py was added on branch BR_V51_AR on 2009-11-06 13:25:43 +0000
+
+2009-10-08 16:29 prascle
+
+ * src/KERNEL_PY/salome_pynode.py:
+
+ file salome_pynode.py was added on branch BR_V51_AR on 2009-11-06 13:25:46 +0000
+
+2009-10-08 16:29 caremoli
+
+ * idl/Makefile.am, idl/SALOME_Component.idl, idl/SALOME_PyNode.idl,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_PyNode.py, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/salome_pynode.py:
+
+ CCAR: add the PyNode object that can be created in a container
+ to execute remote Python code.
+ Example from python interpreter:
+ import salome_pynode
+ code="""def f(x):
+ return 2*x
+ """
+ node=container.createPyNode("mynode",code)
+ y=node.execute("f",10)
+
+2009-10-08 16:03 dmv
+
+ * idl/SALOMEDS.idl, src/KERNEL_PY/salome_notebook.py,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ 0020523: String notebook support
+
+2009-10-08 10:07 nge
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ Add detection of boost regex library for BlSurfPlugin
+
+2009-10-06 16:12 nge
+
+ * salome_adm/unix/config_files/check_hdf5.m4:
+
+ To see which hdf5 we're using in configure log
+
+2009-10-06 16:05 nge
+
+ * salome_adm/unix/config_files/check_libxml.m4:
+
+ To see which libxml2 we're using in configure log
+
+2009-10-06 12:05 prascle
+
+ * salome_adm/cmake_files/FindDOXYGEN.cmake:
+
+ file FindDOXYGEN.cmake was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
+
+2009-10-06 12:05 adam
+
+ * salome_adm/cmake_files/: FindDOXYGEN.cmake, Makefile.am,
+ am2cmake.py:
+
+ [no log message]
+
+2009-10-05 15:45 secher
+
+ * src/Launcher/Launcher.cxx:
+
+ Get output files from temporary directory
+
+2009-10-05 11:32 secher
+
+ * src/Launcher/Launcher.cxx:
+
+ Distributed salome session run now in temporary directory and not inb Application directory
+
+2009-10-05 08:55 caremoli
+
+ * src/Container/Component_i.cxx:
+
+ CCAR: _id not initialized
+
+2009-10-02 17:15 adam
+
+ * src/DSC/DSC_Basic/DSC_interface.cxx:
+
+ windows not implemented
+
+2009-10-02 15:35 vsr
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ Porting to boost 1.37
+
+2009-10-01 18:23 caremoli
+
+ * src/DSC/: DSC_Basic/DSC_interface.cxx,
+ DSC_Basic/DSC_interface.hxx, DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
+
+ CCAR: move DSC trace function from Calcium directory to DSC_Basic directory
+ for more general use
+
+2009-10-01 17:19 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-30 14:30 adam
+
+ * salome_adm/unix/config_files/check_hdf5.m4:
+
+ compatibility hdf 1.8.x
+
+2009-09-29 16:11 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility med2.3.6
+
+2009-09-29 11:29 adam
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Implement the --shutdown-servers command line option with 0 as default
+
+2009-09-29 09:45 adam
+
+ * src/Container/Component_i.cxx:
+
+ windows port
+
+2009-09-28 15:54 caremoli
+
+ * src/DSC/: DSC_Python/calcium.i, DSC_Python/dsccalcium.py,
+ DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
+
+ CCAR: add a timeout for DSC/CALCIUM reads
+ If a read (cplxxx) is waiting more than the value given by the environment
+ variable DSC_TIMEOUT, the read is interrupted and an exception is raised.
+ If DSC_TIMEOUT is not set or its value is 0, the timeout is infinite.
+ It is possible to set the timeout by using the properties of the component.
+ The value of a property is set in an environment variable with the same
+ name by a call to beginService
+
+2009-09-28 15:34 caremoli
+
+ * src/Container/: Component_i.cxx, SALOME_ComponentPy.py:
+
+ CCAR: remove some memory leaks, add set properties in env for python component (beginService)
+
+2009-09-28 12:50 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ YACS compatibility
+
+2009-09-25 14:49 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.cxx:
+
+ file CalciumCxxInterface.cxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-09-25 14:49 caremoli
+
+ * src/DSC/DSC_User/: Superv_Component_i.cxx,
+ Superv_Component_i.hxx, base_port.cxx,
+ Datastream/GenericPort.hxx, Datastream/GenericUsesPort.hxx,
+ Datastream/Calcium/Calcium.c, Datastream/Calcium/Calcium.cxx,
+ Datastream/Calcium/CalciumCInterface.cxx,
+ Datastream/Calcium/CalciumCInterface.hxx,
+ Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/CalciumCxxInterface.cxx,
+ Datastream/Calcium/CalciumCxxInterface.hxx,
+ Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ Datastream/Calcium/CalciumMacroCInterface.hxx,
+ Datastream/Calcium/CalciumTypes.hxx,
+ Datastream/Calcium/Makefile.am, Datastream/Calcium/calciumP.h,
+ Datastream/Calcium/calciumf.c:
+
+ CCAR: add trace file for DSC/CALCIUM calls
+ Trace file is written by default on stderr and can be redirect to a file (automatic name)
+ by setting the environment variable DSC_TRACE to 1
+ Trace can be desactivated by setting the environment variable DSC_TRACELEVEL to 0
+
+2009-09-25 14:39 barate
+
+ * configure.ac, doc/salome/Batch.texi, doc/salome/batch.dox,
+ doc/salome/main.dox, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.am,
+ src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am:
+
+ Merged from BR_V51_RB (removed Batch and added libBatch as an optional prerequisite).
+
+2009-09-24 17:49 barate
+
+ * configure.ac, src/Launcher/BatchTest.cxx,
+ src/Launcher/DummyBatchTest.cxx, src/Launcher/DummyLauncher.cxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Makefile.am:
+
+ Changed libBatch optional usage from empty implementation classes to #ifdef.
+
+2009-09-24 16:15 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-24 14:36 barate
+
+ * configure.ac, src/Launcher/DummyBatchTest.cxx,
+ src/Launcher/DummyLauncher.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am:
+
+ Made libBatch an optional prerequisite.
+
+2009-09-24 11:48 caremoli
+
+ * src/Container/: Component_i.cxx, SALOME_Component_i.hxx:
+
+ CCAR: add C++ method getContainerName to component class
+
+2009-09-24 09:34 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ YACS compatibility
+
+2009-09-23 12:28 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ remove messages on windows
+
+2009-09-23 11:25 barate
+
+ * configure.ac, doc/salome/Batch.texi, doc/salome/batch.dox,
+ doc/salome/main.dox, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_libbatch.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.am,
+ src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Makefile.am:
+
+ Removed Batch from KERNEL and added libBatch dependency.
+
+2009-09-23 11:25 barate
+
+ * salome_adm/unix/config_files/check_libbatch.m4:
+
+ file check_libbatch.m4 was added on branch V5_1_main on 2009-09-25 12:39:56 +0000
+
+2009-09-23 11:25 prascle
+
+ * salome_adm/unix/config_files/check_libbatch.m4:
+
+ file check_libbatch.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
+
+2009-09-22 10:38 barate
+
+ * Makefile.am, configure.ac, bin/Makefile.am, bin/appli_clean.sh,
+ bin/appli_gen.py, bin/appli_install.sh, bin/envSalome.py,
+ bin/launchConfigureParser.py, bin/nameserver.py,
+ bin/orbmodule.py, bin/runSalome, bin/runSalome.bat,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salome.launch, bin/salome_session.py, bin/salome_utils.py,
+ bin/setenv.py, bin/appliskel/SalomeApp.xml,
+ bin/appliskel/runSession, idl/Calcium_Ports.idl,
+ idl/Calcium_Ports.idl.in, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOME_Component.idl, resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/local_install.m4, src/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/DF/DF_Attribute.cxx, src/DF/DF_Document.cxx,
+ src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/Makefile.am, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/ParallelDSC/Makefile.am, src/GenericObj/Makefile.am,
+ src/HDFPersist/HDFobjectIdentify.c, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/salome_genericobj.py, src/KERNEL_PY/salome_test.py,
+ src/Launcher/Makefile.am, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am, src/Logger/Makefile.am,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
+ src/NamingService/Makefile.am,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/Makefile.am, src/Notification/Makefile.am,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryService.cxx,
+ src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/Test/Makefile.am, src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
+ src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Test/Makefile.am:
+
+ Merged from V5_1_main
+
+2009-09-21 19:23 caremoli
+
+ * src/: Container/Component_i.cxx,
+ Utils/Utils_SALOME_Exception.hxx:
+
+ CCAR: add a trace in beginService and endService even in no debug mode to give cpu time to user
+
+2009-09-21 17:18 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ yacs compatibility
+
+2009-09-21 14:44 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ yacs swig compatibility
+
+2009-09-21 14:38 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compile check_programs
+
+2009-09-21 14:29 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ YACS port
+
+2009-09-21 11:53 vsr
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Fix problem of study closing in standalone mode
+
+2009-09-21 11:51 vsr
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Fix missing functions if the WITHGENERICOBJ macro is undefined
+
+2009-09-21 10:32 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-18 17:18 caremoli
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
+
+ CCAR: add a check to see if the CORBA object exists (non_existent())
+
+2009-09-18 17:10 caremoli
+
+ * resources/KERNELCatalog.xml.in, idl/SALOME_Component.idl:
+
+ CCAR: add data type dataref to Engines data types. Can be used to exchange references between components.
+
+2009-09-18 16:30 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ ghs3d plugin support
+
+2009-09-17 09:58 caremoli
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_Study.cxx:
+
+ CCAR: move genericobj management in SALOMEDSImpl from Study to AttributeIOR
+ and put it into 2 functions IORGenericObjIncref and IORGenericObjDecref
+
+2009-09-16 16:42 caremoli
+
+ * src/SALOMEDSImpl/Makefile.am:
+
+ CCAR: missing CORBA options in Makefile.am
+
+2009-09-16 16:09 caremoli
+
+ * src/: SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ CCAR: Correction of a problem with management of genericobj in SALOMEDS
+ - Move the management from SALOMEDS_Study_i interface to SALOMEDSImpl_Study interface to
+ be sure to be called in all situations : embedded or standalone
+ - Register and Destroy genericobj on calls to SetValue (AttributeIOR) but also when
+ an AttributeIOR is removed
+
+2009-09-16 15:18 caremoli
+
+ * src/: SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ CCAR: remove more memory leaks in SALOMEDS
+
+2009-09-15 16:26 caremoli
+
+ * bin/appliskel/runSession:
+
+ CCAR: modify the runSession script so that it is able to connect to a remote SALOME
+ session given by the machine name and the port number
+
+2009-09-15 14:28 caremoli
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR: Modify FindOrLoadComponent so that all modes be coherent (with parameter structure or with string).
+ If the machine is not given, the default machine is the machine of the resources manager
+ and not the local machine as it was done in the string mode.
+
+2009-09-15 13:56 caremoli
+
+ * bin/: appli_gen.py, appli_install.sh, launchConfigureParser.py,
+ runSalome, runSalome.csh, runSalome.ksh, runSalome.py,
+ salome.launch, setenv.py, appliskel/SalomeApp.xml:
+
+ CCAR: translate some comments in english
+ add the local path of a file in the python sys.path before executing it (execfile(srcname) in runSalome.py)
+ remove supervisioncontainer launch
+
+2009-09-14 16:02 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Add a flag for the MEFISTO compilation with f2c
+
+2009-09-14 11:08 caremoli
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_StudyManager.cxx:
+
+ CCAR: remove memory leaks in study
+
+2009-09-14 11:05 caremoli
+
+ * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder_i.cxx:
+
+ CCAR: remove memory leaks in non local SALOMEDS
+
+2009-09-14 10:53 caremoli
+
+ * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx,
+ SALOMEDS_SObject_i.cxx:
+
+ CCAR: remove some memory leaks in non local SALOMEDS
+
+2009-09-14 10:45 caremoli
+
+ * src/SALOMEDS/: SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS_AttributeIOR_i.cxx, SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributePixMap.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx:
+
+ CCAR: remove memory leaks in non local SALOMEDS
+
+2009-09-14 10:34 caremoli
+
+ * idl/Makefile.am:
+
+ CCAR: remove duplicate variables (OMNIORB_IDL and IDL, OMNIORB_IDLCXXFLAGS and IDLCXXFLAGS, ...)
+
+2009-09-14 10:08 caremoli
+
+ * src/Container/: Component_i.cxx, Container_i.cxx:
+
+ CCAR: remove memory leaks
+
+2009-09-14 09:58 caremoli
+
+ * src/Registry/: RegistryConnexion.cxx, RegistryService.cxx:
+
+ CCAR: remove memory leaks
+
+2009-09-10 15:12 secher
+
+ * src/MPIContainer/: MPIObject_i.cxx, MPIObject_i.hxx:
+
+ simplification of API of MPI object
+
+2009-09-10 12:02 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-10 11:51 adam
+
+ * bin/salome_utils.py:
+
+ Fix a problem with space in directories
+
+2009-09-10 11:20 adam
+
+ * bin/salome_utils.py:
+
+ windows port
+
+2009-09-09 18:51 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Issue 0020472: An error in SALOMEDSImpl_Tool::Exists
+
+2009-09-09 13:20 caremoli
+
+ * src/Container/Container_i.cxx:
+
+ CCAR: replace the old way to take the python global interpreter lock
+ by calls to PyGILState_Ensure/PyGILState_Release in C++ container
+ so that GIL management be coherent from GUI embedded interpreter to embedded
+ python container.
+
+2009-09-08 19:29 caremoli
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.py,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx, Container/Salome_file_i.cxx,
+ Container/Salome_file_i.hxx, MPIContainer/MPIContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx:
+
+ CCAR: add a message in case of error when loading a component.
+ The dlerror output for dlopen plus the traceback for the import of the python module
+ The import_component python function now returns a string instead of a boolean.
+ If the string is empty, the import is OK.
+ The C++ code in container MPIContainer and ParallelContainer has been adapted.
+
+2009-09-08 19:13 caremoli
+
+ * src/DSC/: DSC_Basic/DSC_i.cxx, DSC_Basic/DSC_interface.cxx,
+ DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
+ DSC_User/Datastream/AdjacentFunctor.hxx,
+ DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/GenericUsesPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx:
+
+ CCAR: remove debug prints from the standard trace and put these prints
+ in a developer trace activated with #define MYDEBUG to put manually in sources
+
+2009-09-08 19:04 caremoli
+
+ * src/: DF/DF_Attribute.cxx, DF/DF_Document.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ NamingService/SALOME_NamingService.hxx:
+
+ CCAR: remove some memory leaks in DF and NamingService
+ add helper methods to NamingService and LifeCycle
+
+2009-09-08 15:46 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-08 12:13 adam
+
+ * bin/runSalome.py:
+
+ A fix to launch more than one session on windows
+
+2009-09-08 11:50 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-09-08 11:07 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ To construct the target cmake name, only the first "lib"
+ must be removed ...
+
+2009-09-08 11:04 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Remove -fPIC option on windows
+
+2009-09-08 10:41 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Update according new version of
+ make_common_starter.am in which is defined
+ AM_CXXFLAGS = -I$(top_builddir)/salome_adm/unix -include SALOMEconfig.h
+ AM_CPPFLAGS = -I$(top_builddir)/salome_adm/unix -include SALOMEconfig.h
+
+2009-09-02 11:18 ribes
+
+ * src/KERNEL_PY/Makefile.am:
+
+ - Patch for recent Debian distrib:
+ multiple same file is not allowed in one installation line
+
+2009-08-31 14:48 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ just a little modification
+
+2009-08-31 14:42 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ launch ompi-server with salome, and kill it at the end of Salome
+
+2009-08-28 09:04 prascle
+
+ * bin/: orbmodule.py, runSalome.py, salome_session.py:
+
+ PR: Python 2.6 compatibility
+
+2009-08-27 18:12 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: I have added a way to define the directory for the container log files
+ If the environment variable SALOME_TMP_DIR is defined and is a directory the
+ log files are created in this directory and not in /tmp.
+ This modification has only be done for Linux and only for the container logs.
+ Other temporary files go in /tmp as before.
+
+2009-08-26 09:26 caremoli
+
+ * src/: DF/DF_Document.cxx, SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ NamingService/SALOME_NamingServicePy.py,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ CCAR: remove some memory leaks in SALOMEDS CORBA interface
+
+2009-08-21 10:23 vsr
+
+ * Makefile.am, configure.ac:
+
+ Issue 20406: Time compilation when recompiling
+
+2009-08-20 13:55 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Fix bug in GetDirFromPath() function - wrong directory is returned if the file in the current directory is specified
+
+2009-08-20 07:05 vsr
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ Issue 0020406: Time compilation when recompiling
+ Customize install script
+
+2009-08-20 06:58 vsr
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ Issue 0020406: Time compilation when recompiling
+ Customize install script
+
+2009-08-19 18:20 barate
+
+ * salome_adm/unix/config_files/local_install.m4:
+
+ file local_install.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:24 +0000
+
+2009-08-19 18:20 prascle
+
+ * salome_adm/unix/config_files/local_install.m4:
+
+ file local_install.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
+
+2009-08-19 18:20 vsr
+
+ * salome_adm/unix/config_files/local_install.m4:
+
+ Issue 0020406: Time compilation when recompiling
+ Customize install script
+
+2009-08-18 14:12 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Issue 0020445: Be able to launch runSalome aaa.py
+
+2009-08-18 12:36 vsr
+
+ * bin/nameserver.py:
+
+ Issue 0020448: Put the omniNames log files in a subdir
+
+2009-08-13 08:55 vsr
+
+ * src/: Communication/Makefile.am, Communication_SWIG/Makefile.am,
+ Container/Makefile.am, DSC/DSC_Basic/Makefile.am,
+ DSC/DSC_Python/Makefile.am, DSC/DSC_User/Makefile.am,
+ DSC/DSC_User/Basic/Makefile.am,
+ DSC/DSC_User/Datastream/Palm/Makefile.am,
+ DSC/ParallelDSC/Makefile.am, GenericObj/Makefile.am,
+ Launcher/Makefile.am, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/Test/Makefile.am, LifeCycleCORBA_SWIG/Makefile.am,
+ Logger/Makefile.am, MPIContainer/Makefile.am,
+ ModuleCatalog/Makefile.am, NOTIFICATION_SWIG/Makefile.am,
+ NamingService/Makefile.am, NamingService/Test/Makefile.am,
+ Notification/Makefile.am, ParallelContainer/Makefile.am,
+ Registry/Makefile.am, ResourcesManager/Makefile.am,
+ SALOMEDS/Makefile.am, SALOMEDS/Test/Makefile.am,
+ SALOMEDSClient/Makefile.am, SALOMEDSImpl/Test/Makefile.am,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/Test/Makefile.am, TOOLSDS/Makefile.am,
+ TestContainer/Makefile.am, TestMPIContainer/Makefile.am,
+ UnitTests/Makefile.am, Utils/Makefile.am, Utils/Test/Makefile.am:
+
+ Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
+
+2009-08-13 06:50 vsr
+
+ * configure.ac, idl/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
+
+ Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
+
+2009-08-12 08:30 vsr
+
+ * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
+ ac_cxx_have_sstream.m4:
+
+ Improve check scripts: avoid warnings with autoconf v2.63
+
+2009-08-06 10:05 prascle
+
+ * bin/appli_clean.sh:
+
+ PR: option -f to force clean, for use by YACS, make check
+
+2009-08-04 11:48 adam
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ windows port
+
+2009-08-03 17:16 adam
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ KERNEL_PY/salome_test.py:
+
+ windows port
+
+2009-08-03 17:14 adam
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ PYTHON_CPPFLAGS is used by yacs
+
+2009-08-03 17:11 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Improve boost detection in order to be correct for all modules
+
+2009-08-03 16:57 barate
+
+ * bin/runSalome.bat:
+
+ file runSalome.bat was added on branch BR_V51_RB on 2009-09-22 08:38:21 +0000
+
+2009-08-03 16:57 prascle
+
+ * bin/runSalome.bat:
+
+ file runSalome.bat was added on branch BR_V51_AR on 2009-11-06 13:25:40 +0000
+
+2009-08-03 16:57 adam
+
+ * bin/: Makefile.am, runSalome.bat:
+
+ add a runSalome.bat for windows
+
+2009-07-30 18:04 adam
+
+ * src/HDFPersist/HDFobjectIdentify.c:
+
+ Remove warnings
+
+2009-07-29 16:52 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix compilation pb on Windows
+
+2009-07-28 16:34 adam
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ add the --ddd-session option
+
+2009-07-28 10:34 secher
+
+ * src/MPIContainer/: MPIContainer_i.cxx, SALOME_MPIContainer.cxx:
+
+ use root_poa for activate MPI servant
+
+2009-07-15 10:00 vsr
+
+ * bin/appli_clean.sh:
+
+ Merge from V5_1_2_BR branch (14 July 2009)
+
+2009-07-02 09:14 vsr
+
+ * bin/appli_clean.sh:
+
+ Issue 0020414: rm -rf unprotected in a script of SALOME Application
+
+2009-07-01 08:31 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Changed WNT32 defines to WIN32
+
+2009-06-30 14:46 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Now Study is saved firstly in the temporary directory and after copied into the chosen by the user destination directory. So in case of crash the Study files is not damaged
+
+2009-06-16 12:16 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ debug MPI Containers
+
+2009-06-11 15:02 secher
+
+ * src/LifeCycleCORBA/TestContainerManager.cxx:
+
+ debug TestContainerManager following EDF improvement of ressources manager
+
+2009-06-01 12:25 mnt
+
+ * configure.ac:
+
+ Changing version to 5.1.2
+
+2009-05-29 13:59 adam
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ [windows] Avoid a segmentation in killOmniNames
+
+2009-05-29 13:58 adam
+
+ * bin/orbmodule.py:
+
+ [windows] Increase the time salome try to find the objects in naming service. It is useful when salome is installed on a usb key :) for instance.
+
+2009-05-29 13:56 adam
+
+ * bin/envSalome.py:
+
+ [windows] Fix a problem when salome is installed in a path with spaces inside.
+
+2009-05-27 15:19 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-05-27 12:01 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility hexoticplugin ghs3dplugin
+
+2009-05-26 15:51 caremoli
+
+ * src/Container/SALOME_Component_i.hxx:
+
+ CCAR: change setStudyId to virtual method to be able to derive it in components
+
+2009-05-26 15:25 caremoli
+
+ * idl/SALOME_Component.idl:
+
+ CCAR: remove unused comment
+
+2009-05-25 14:24 adam
+
+ * salome_adm/cmake_files/install_python_from_idl.cmake:
+
+ [no log message]
+
+2009-05-22 14:33 vsr
+
+ * configure.ac:
+
+ 0020354: EDF 1031 OTHER warnings with automake 1.10
+
+2009-05-22 10:53 caremoli
+
+ * src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx:
+
+ CCAR: add automatic management of GenericObj in study.
+ If a GenericObj id publish in study, its reference count must be incremented (call to Register()).
+ When it is unpublished, its reference count must be decremented (call to Destroy()).
+ This was not done when calling SetValue on a AttributeIOR so if someone manages
+ GenericObj in the right way, the references in study could be lost.
+
+2009-05-20 14:12 vsr
+
+ * bin/: salome_utils.py, setenv.py:
+
+ Fix problem with wrong permissions on the /tmp/logs folder
+
+2009-05-20 10:38 barate
+
+ * src/Makefile.am:
+
+ Fixed --with-onlylauncher mode (by adding libSALOMEBasics when compiling in this mode)
+
+2009-05-20 08:46 caremoli
+
+ * configure.ac:
+
+ CCAR: change version name
+
+2009-05-19 16:41 caremoli
+
+ * configure.ac, idl/Makefile.am, idl/SALOMEDS.idl,
+ salome_adm/unix/config_files/check_calcium.m4,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
+
+ CCAR: change in check_calcium.m4 macro for --with-cal-int=<intorlong>
+
+2009-05-19 15:46 adam
+
+ * src/ResourcesManager/Makefile.am:
+
+ windows port : ResourcesManager must be linked with SALOMEBasics otherwise Kernel_Utils::GetHostname() is unresolved.
+
+2009-05-19 15:42 adam
+
+ * src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
+
+ cmake port
+
+2009-05-19 15:40 adam
+
+ * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
+
+ [no log message]
+
+2009-05-19 09:09 caremoli
+
+ * configure.ac:
+
+ CCAR: remove error in AM_CONDITIONAL
+
+2009-05-18 19:11 barate
+
+ * src/KERNEL_PY/salome_genericobj.py:
+
+ file salome_genericobj.py was added on branch BR_V51_RB on 2009-09-22 08:38:26 +0000
+
+2009-05-18 19:11 prascle
+
+ * src/KERNEL_PY/salome_genericobj.py:
+
+ file salome_genericobj.py was added on branch BR_V51_AR on 2009-11-06 13:25:46 +0000
+
+2009-05-18 19:11 caremoli
+
+ * src/KERNEL_PY/: Makefile.am, salome_genericobj.py:
+
+ CCAR: add a python module for automatic management of genericobj
+ reference counting.
+ The module is not active by default.
+ It must be imported to activate the automatic reference counting
+
+2009-05-18 16:48 fayolle
+
+ * idl/Makefile.am:
+
+ Gestion 32/64bits dans l'interfce C/F de Calcium.
+
+2009-05-18 15:43 fayolle
+
+ * idl/Calcium_Ports.idl:
+
+ [no log message]
+
+2009-05-18 15:18 fayolle
+
+ * src/DSC/DSC_Python/Makefile.am:
+
+ Gestion 32/64bits dans l'interfce C/F de Calcium.
+
+2009-05-18 15:16 barate
+
+ * salome_adm/unix/config_files/ac_check_sizeof_fortran.m4:
+
+ file ac_check_sizeof_fortran.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:23 +0000
+
+2009-05-18 15:16 barate
+
+ * salome_adm/unix/config_files/check_calcium.m4:
+
+ file check_calcium.m4 was added on branch BR_V51_RB on 2009-09-22 08:38:24 +0000
+
+2009-05-18 15:16 prascle
+
+ * salome_adm/unix/config_files/ac_check_sizeof_fortran.m4:
+
+ file ac_check_sizeof_fortran.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
+
+2009-05-18 15:16 prascle
+
+ * salome_adm/unix/config_files/check_calcium.m4:
+
+ file check_calcium.m4 was added on branch BR_V51_AR on 2009-11-06 13:25:42 +0000
+
+2009-05-18 15:15 barate
+
+ * idl/Calcium_Ports.idl.in:
+
+ file Calcium_Ports.idl.in was added on branch BR_V51_RB on 2009-09-22 08:38:23 +0000
+
+2009-05-18 15:15 prascle
+
+ * idl/Calcium_Ports.idl.in:
+
+ file Calcium_Ports.idl.in was added on branch BR_V51_AR on 2009-11-06 13:25:41 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in:
+
+ file CalciumFortranInt.h.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx:
+
+ file CalciumMacroCInterface.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in:
+
+ file CalciumProvidesPort.hxx.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ *
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in:
+
+ file calcium_integer_port_uses.hxx.in was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx:
+
+ file calcium_long_port_uses.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
+
+ file calciumf.h was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in:
+
+ file CalciumFortranInt.h.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx:
+
+ file CalciumMacroCInterface.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in:
+
+ file CalciumProvidesPort.hxx.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ *
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in:
+
+ file calcium_integer_port_uses.hxx.in was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx:
+
+ file calcium_long_port_uses.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/calciumf.h:
+
+ file calciumf.h was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx:
+
+ file CalciumCInterface.cxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx:
+
+ file CalciumCInterface.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 barate
+
+ * src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx:
+
+ file calcium_intc_port_uses.hxx was added on branch BR_V51_RB on 2009-09-22 08:38:25 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx:
+
+ file CalciumCInterface.cxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx:
+
+ file CalciumCInterface.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx:
+
+ file calcium_intc_port_uses.hxx was added on branch BR_V51_AR on 2009-11-06 13:25:45 +0000
+
+2009-05-18 15:14 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_intc_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h.in,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumMacroCInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx.in,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_long_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.h,
+ idl/Calcium_Ports.idl.in, idl/Makefile.am, configure.ac,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_check_sizeof_fortran.m4,
+ salome_adm/unix/config_files/check_calcium.m4,
+ salome_adm/unix/config_files/check_f77.m4:
+
+ Gestion 32/64bits dans l'interfce C/F de Calcium.
+
+2009-05-15 17:30 prascle
+
+ * configure.ac, src/Launcher/Makefile.am,
+ src/ResourcesManager/Makefile.am:
+
+ merge from tag mergeto_V5_1_main_15may09 branch BR_V51_RB
+
+2009-05-15 15:46 barate
+
+ * salome_adm/unix/config_files/ac_linker_options.m4:
+
+ Merge from V5_1_main tag before_merge_20090515
+
+2009-05-15 15:13 vsr
+
+ * salome_adm/unix/config_files/ac_linker_options.m4:
+
+ Issue 0019980: EDF 818 OTHER : Get rid of the RPATH issues in packaging
+
+2009-05-15 15:00 barate
+
+ * configure.ac, bin/salome_utils.py, bin/setenv.py,
+ doc/INSTALL.txt, doc/KERNEL_Services.txt,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/kernel_salome.dox, doc/salome/kernel_services.dox,
+ doc/salome/main.dox, doc/salome/tui/pythfilter.py,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/production.m4,
+ src/Container/Makefile.am, src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx, src/DSC/Makefile.am,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/KERNEL_PY/import_hook.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx:
+
+ Merge from V5_1_main 2009-05-15 14:48 (Paris, UTC+2)
+
+2009-05-15 11:55 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ add vtk python support
+ install correctly SalomePyQt and SalomePy
+ change permissions of *.py files in bin/salome
+
+2009-05-14 15:09 vsr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Rollback previous integration
+
+2009-05-14 11:28 adam
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ Fix a tiny error detected by Werror ...
+
+2009-05-13 16:39 vsr
+
+ * src/KERNEL_PY/import_hook.py:
+
+ Issue 0020349: compatibility python 2.6 in import_hook
+
+2009-05-13 16:11 vsr
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyManager.cxx:
+
+ Issue 0020350: compatibility gcc4.3.2
+
+2009-05-12 16:52 adam
+
+ * src/ResourcesManager/: ResourcesManager.cxx,
+ ResourcesManager.hxx:
+
+ windows port
+
+2009-05-12 16:51 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ Compatibility boost 1.35 1.38
+
+2009-05-07 13:51 prascle
+
+ * configure.ac, doc/INSTALL.txt, doc/KERNEL_Services.txt,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/salome/batch.dox, doc/salome/tui/pythfilter.py,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_PACOExtension.idl,
+ idl/SALOME_PACOExtension.xml, idl/SALOME_ParamPorts.idl,
+ idl/SALOME_ParamPorts.xml, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, resources/KERNELCatalog.xml.in,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/production.m4,
+ src/Container/Makefile.am, src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/Utils/Utils_Identity.cxx:
+
+ merge from BR_V51_AR 7 may 09
+
+2009-05-07 10:43 ribes
+
+ * configure.ac, bin/salome_utils.py, bin/setenv.py,
+ doc/salome/Makefile.am, doc/salome/kernel_salome.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ idl/Makefile.am, salome_adm/cmake_files/FindPLATFORM.cmake,
+ src/DSC/Makefile.am,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx:
+
+ - Merger with last tag of Kernel for merging to the main branch
+
+2009-05-06 16:59 ribes
+
+ * bin/Makefile.am, bin/nameserver.py, bin/runSalome.py,
+ bin/appliskel/runRemote.sh, doc/salome/Makefile.am,
+ doc/salome/gui/Makefile.am, doc/salome/gui/static/footer.html,
+ doc/salome/tui/Makefile.am, doc/salome/tui/doxyfile.in,
+ doc/salome/tui/static/footer.html, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_MPIContainer.idl, resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.am,
+ src/Basics/SALOME_Basics.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/Salome_file_i.hxx, src/DF/DF_definitions.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFexport.hxx, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/salome_test.py, src/KERNEL_PY/salome_version.py,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/Test/Makefile.am, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/UnitTests/Makefile.am, src/Utils/Makefile.am,
+ src/Utils/SALOME_Utils.hxx, src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Test/Makefile.am:
+
+ - Merge from TAG CCAR_cm3_end
+ - Bug fix when waiting a parallel container
+ - Better installation of python files for parallel containers
+ - A parallel container is now correctly deleted in the naming service
+ when it is shutdown
+
+2009-05-06 15:08 ouv
+
+ * bin/: salome_utils.py, setenv.py:
+
+ Improvement of "setenv.py" script - setting of custom enviroment by those modules, which have it, is performed by their own "<module_name>_setenv.py" scripts situated in their "bin" folders.
+
+2009-05-06 12:05 vsr
+
+ * configure.ac, src/DSC/Makefile.am:
+
+ Issue 0020343: [WNT] Do not compile DSC_User and DSC_Python
+
+2009-05-06 07:37 vsr
+
+ * salome_adm/cmake_files/FindPLATFORM.cmake:
+
+ Specify additional macro-definition _WIN32_WINNT because at least Windows 2000 API is required
+
+2009-05-05 16:27 caremoli
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR: remove bug in FindOrLoad_Component
+
+2009-05-04 17:45 caremoli
+
+ * doc/salome/: Makefile.am, kernel_salome.dox, kernel_services.dox,
+ main.dox:
+
+ CCAR: improve salome.py documentation (description of main variables mostly
+ borrowed from GUI doc)
+
+2009-05-04 17:36 adam
+
+ * src/Utils/Utils_SALOME_Exception.hxx:
+
+ [WNT] Export symbol maketext
+
+2009-05-04 17:34 adam
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Patch windows
+
+2009-04-30 15:46 barate
+
+ * bin/Makefile.am, bin/nameserver.py, bin/runSalome.py,
+ bin/appliskel/runRemote.sh, doc/salome/gui/Makefile.am,
+ doc/salome/gui/static/footer.html,
+ doc/salome/tui/static/footer.html, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
+ resources/KERNELCatalog.xml.in,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_and_compile_python_file.cmake,
+ salome_adm/unix/config_files/check_openmpi.m4, src/Makefile.am,
+ src/Communication/SALOME_Communication.hxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/Salome_file_i.hxx, src/DF/DF_definitions.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/KERNEL_PY/Makefile.am, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/ModuleCatalog/Makefile.am,
+ src/ModuleGenerator/Makefile.am, src/NamingService/Makefile.am,
+ src/NamingService/Test/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/UnitTests/Makefile.am, src/Utils/Makefile.am,
+ src/Utils/Test/Makefile.am:
+
+ Merge from V5_1_main 2009-04-30 15:16 (Paris, UTC+2)
+
+2009-04-30 13:51 caremoli
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/SALOME_Launcher.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/testcontainermanager.py,
+ src/LifeCycleCORBA_SWIG/Test/testresourcemanager.py,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ CCAR: several changes in Container Manager and Resources Manager
+ 1- remove unused members in MachineParameters, keep only members for requests
+ the members removed are : alias, protocol, username, applipath, mpiImpl, batch
+ 2- remove the enum policy which is replaced by a new member in MachineParameters (policy)
+ 3- add a new member computerList in MachineParameters structure to specify a list of machines
+ in a request to Container Manager
+ 3- remove no more used parameters (policy, possibleComputers, componentList
+ in FindOrStartContainer, FindOrStarParallelContainer, StartContainer,
+ GiveContainer and GetFittingResources. These operations now take only
+ one argument : a MachineParameters structure.
+ 4- adapt LifeCycle to these changes
+
+2009-04-30 09:27 ouv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Fix of bug IPAL21005 - Dump/load python script works only with absolute path
+
+2009-04-29 17:43 adam
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ Modify the search for python executable in accordance
+ of the official python windows i.e. python.exe is in
+ PYTHON_HOME
+
+2009-04-29 16:22 prascle
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ PR: default policy
+
+2009-04-29 15:33 ribes
+
+ * src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
+
+ MPI nodes register two times
+
+2009-04-29 15:33 ribes
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ - remove StartMPI, we use mpiexec for lam
+ - PaCO++ MPI containers use machine file to launch distributed container
+
+2009-04-29 15:32 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesManager.cxx:
+
+ Generate MPI lam machine file for a lam machine or a cluster
+
+2009-04-29 15:31 ribes
+
+ * idl/Makefile.am:
+
+ Create directory before create files in it
+
+2009-04-29 12:05 secher
+
+ * src/MPIContainer/: MPIObject_i.cxx, MPIObject_i.hxx:
+
+ improvement of MPIObject
+
+2009-04-28 17:37 vsr
+
+ * src/DSC/DSC_Python/Makefile.am:
+
+ Issue 0020332: Do not dist calcium_wrap.cpp
+
+2009-04-28 17:20 vsr
+
+ * bin/nameserver.py:
+
+ Issue 0020331: add the -nohostname option on windows (patch from E.Adam)
+
+2009-04-28 16:58 adam
+
+ * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
+
+ Compilation with cmake
+
+2009-04-28 16:35 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Minor corrections
+
+2009-04-28 16:35 adam
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ When WITH_PYTHON is used, PYTHON_EXECUTABLE must be set
+
+2009-04-28 16:13 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ For boost to be compatible release / debug
+
+2009-04-28 16:13 adam
+
+ * salome_adm/cmake_files/FindPTHREADS.cmake:
+
+ Integration requested by Alexander
+
+2009-04-23 11:53 ribes
+
+ * src/ParallelContainer/: SALOME_ParallelContainerNodeDummy.cxx,
+ SALOME_ParallelContainerNodeMpi.cxx:
+
+ Code more clear
+
+2009-04-23 11:53 ribes
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ Remote launch of PaCO++ parallel container with Dummy ParallelLib
+
+2009-04-23 11:52 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesManager.cxx,
+ SALOME_ResourcesManager.hxx:
+
+ Adding a mew Method: getMachineFile for PaCO++ parallel container remote launch
+ Currently only works with the Dummy parallel library
+
+2009-04-22 09:22 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx:
+
+ Adding AppliPath to cluster members
+
+2009-04-22 09:22 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Patch for the new version of PaCO++
+
+2009-04-21 11:51 ribes
+
+ * src/ResourcesManager/: ResourcesManager.cxx,
+ ResourcesManager.hxx, SALOME_ResourcesManager.cxx:
+
+ - First step for A GetFittingResources for PaCO++ containers
+
+2009-04-17 12:42 rnv
+
+ * src/: Makefile.am, KERNEL_PY/Makefile.am:
+
+ Implementation of the issue 0020151 (SALOME: Light Python module)
+
+2009-04-16 13:54 vsr
+
+ * doc/salome/gui/static/footer.html:
+
+ Update copyright notes
+
+2009-04-15 15:37 caremoli
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ CCAR:
+ 1- add mode member to MachineParameters. This string member can be "start" or "get" or "getorstart"
+ if mode=="start" a new container is launched on each request.
+ if mode=="get" an old container with the requested parameters is used if it exists.
+ if mode=="getorstart" an old container is used or a new one if the old one does not exist.
+ 2- add policy member to MachineParameters. This string member replaces the enum policy argument
+ of GiveContainer and StartContainer. This argument is left for compatibility but will be removed soon.
+ 3- replace LoadRateManager methods by three objects. These objects are referenced in a map (_resourceManagerMap)
+ that can be extended without changing IDL interface.
+ 4- add a Find method to ResourceManager IDL for testing purpose.
+
+2009-04-15 12:33 caremoli
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ CCAR:
+ 1- add a new type MachineDefinition in ContainerManager idl
+ to separate machine definition parameters and machine parameters for requests
+ to container manager (MachineParameters)
+
+ 2- in Resource manager replace module by component. Selection of a resource is now
+ done with a component name and no more with a module name.
+ Now in CatalogResource.xml, we can specify for a resource that it supports
+ a list of components or modules.
+ Syntax for a component is:
+ <component name="xxxx" moduleName="yyy" />
+ Syntax for a module is:
+ <modules moduleName="yyyy"/>
+ When a module is added, a component with the same name is also added.
+
+2009-04-15 09:33 vsr
+
+ * doc/salome/tui/static/footer.html:
+
+ Update copyright notes
+
+2009-04-14 18:41 caremoli
+
+ * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/Salome_file_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ CCAR: add some methods to container and lifecycle to copy files to container,
+ from container to another container and update SWIG interface
+
+2009-04-14 17:15 caremoli
+
+ * bin/runSalome.py, bin/appliskel/runRemote.sh,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ CCAR:
+ 1- execute python script files (runSalome -u) in globals and not in globals,locals
+ as it was done before
+ 2- don't use obsolete omniORB initref form in runRemote.sh
+ 3- put _narrow (SALOMEDS_Study_i.cxx) into a try catch : _narrow can throw CORBA::Exception
+
+2009-04-13 15:54 vsr
+
+ * src/: LifeCycleCORBA_SWIG/Test/Makefile.am,
+ Container/Makefile.am:
+
+ 0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
+
+2009-04-13 15:49 vsr
+
+ * src/ModuleGenerator/Makefile.am:
+
+ 0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
+
+2009-04-13 15:46 vsr
+
+ * bin/Makefile.am:
+
+ 0020303: Install some .py in the correct way - integrate patch from E.Adam : additional fix of permissions problem
+
+2009-04-13 15:33 vsr
+
+ * bin/Makefile.am, src/Container/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am, src/Logger/Makefile.am,
+ src/Logger/Test/Makefile.am, src/ModuleCatalog/Makefile.am,
+ src/ModuleGenerator/Makefile.am, src/NamingService/Makefile.am,
+ src/NamingService/Test/Makefile.am, src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/Test/Makefile.am, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TestContainer/Makefile.am, src/UnitTests/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Test/Makefile.am:
+
+ 0020303: Install some .py in the correct way - integrate patch from E.Adam.
+
+2009-04-02 16:53 ribes
+
+ * src/ResourcesManager/: ResourcesManager.cxx,
+ SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Handler.hxx,
+ SALOME_ResourcesCatalog_Parser.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx:
+
+ Adding new type of SALOME CatalogResource : cluster
+ It is the base to generate a MPI machine file for launching a parallel container
+ in distributed resources
+
+2009-04-02 12:01 ribes
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ FindOrStartParallelContainer -> StartParallelContainer
+
+2009-04-02 11:57 ribes
+
+ * idl/SALOME_ContainerManager.idl:
+
+ FindOrStartParallelContainer -> StartParallelContainer
+
+2009-04-02 11:54 ribes
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ - Changement de FindOrStartParallelContainer to StartParallelContainer
+
+2009-04-01 16:22 ribes
+
+ * src/ResourcesManager/: ResourcesManager.cxx,
+ ResourcesManager.hxx, SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx:
+
+ Adding a new env var: USER_CATALOG_RESOURCES_FILE that permits to have
+ a user Catalog resources file
+
+2009-04-01 11:33 ribes
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ New version of FindOrStartParallelContainer and LaunchParallelContainer
+
+2009-03-31 15:50 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ New version of BuildCommandToLaunchLocalParallelContainer
+ - Adding PARALLEL_LOG env variable
+ - Three way to launch parallel container: xterm, xterm_debug, file
+
+2009-03-30 15:30 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ _narrow cand send an exception !
+
+2009-03-30 15:30 ribes
+
+ * src/ParallelContainer/Makefile.am:
+
+ Adding MPI to ParallelContainer lib
+
+2009-03-30 11:30 ribes
+
+ * configure.ac, salome_adm/unix/config_files/production.m4,
+ src/Container/Makefile.am, src/Container/SALOME_Container.cxx:
+
+ - Adding a new flag for configure: --enable-mpi-seq-container
+ It permits to choose if you enable mpi support into SALOME_Container
+ (default is no even if mpi is ok)
+
+2009-03-27 16:28 ribes
+
+ * src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx:
+
+ [no log message]
+
+2009-03-27 14:16 ribes
+
+ * src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
+
+ MPI leak
+
+2009-03-27 13:54 ribes
+
+ * src/DSC/ParallelDSC/: Param_Double_Port_provides_i.cxx,
+ Param_Double_Port_uses_i.cxx:
+
+ Fuites mémoires
+
+2009-03-26 15:07 ribes
+
+ * src/: DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx:
+
+ Use PaCO++ event service to synchronise port creation
+
+2009-03-26 10:37 ribes
+
+ * src/DSC/ParallelDSC/Param_Double_Port_provides_i.cxx:
+
+ Correction Fuite mémoire
+
+2009-03-25 16:03 ribes
+
+ * src/: DSC/ParallelDSC/Param_Double_Port_provides_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.cxx,
+ DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx:
+
+ - Correction lors de la destruction des ports DSC parallèle
+ - On fait _remove_ref et c'est le poa qui les détruit à la fin
+
+2009-03-25 12:00 ribes
+
+ * idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Ajout d'une fonction pour la cohérence du numéro des instances de composants
+ dans le container parallèle
+
+2009-03-25 11:23 ribes
+
+ * src/ParallelContainer/SALOME_ParallelContainer_i.cxx:
+
+ Enregistrement des composants sequentiels et parallèles dans le même nom
+ dans le naming service
+
+2009-03-25 11:15 ribes
+
+ * src/ParallelContainer/: SALOME_ParallelContainerNodeMpi.cxx,
+ SALOME_ParallelContainerProxyDummy.cxx,
+ SALOME_ParallelContainerProxyMpi.cxx:
+
+ - Mise à jour des executables pour MPI
+
+2009-03-24 17:09 ribes
+
+ * src/ParallelContainer/: SALOME_ParallelContainerProxyDummy.cxx,
+ SALOME_ParallelContainerProxy_i.cxx,
+ SALOME_ParallelContainerProxy_i.hxx,
+ SALOME_ParallelContainer_i.cxx:
+
+ - Parallel Container can now load cpp and python components
+
+2009-03-24 16:21 ribes
+
+ * idl/SALOME_PACOExtension.idl,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - create_component_instance patch
+ - proxy correctly registered
+
+2009-03-24 15:52 ribes
+
+ * idl/Makefile.am:
+
+ - Parallel compilation patch for PaCO++ python stubs
+
+2009-03-24 14:57 ribes
+
+ * idl/Makefile.am:
+
+ - Adding generation of python corba stubs for PaCO++ idls
+
+2009-03-20 16:26 ribes
+
+ * idl/SALOME_Component.xml,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Utils/Utils_Identity.cxx:
+
+ - Valgrind issues
+
+2009-03-18 15:58 ribes
+
+ * src/ParallelContainer/: SALOME_ParallelComponent_i.cxx,
+ SALOME_ParallelComponent_i.hxx,
+ SALOME_ParallelContainerNodeDummy.cxx:
+
+ - SALOME_ParallelComponent up to date with sequential version
+ - Valgring issue in SALOME_ParallelContainerNodeDummy
+
+2009-03-18 13:49 secher
+
+ * salome_adm/unix/config_files/check_openmpi.m4:
+
+ debug for swig
+
+2009-03-17 16:42 ribes
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Valgrind issue for Parallel Containers
+
+2009-03-17 14:36 secher
+
+ * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx:
+
+ improvement: replace oneway by threads
+
+2009-03-13 15:54 ribes
+
+ * idl/DSC_Engines.idl, idl/Makefile.am,
+ idl/SALOME_PACOExtension.idl,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - New Version of Parallel Container
+
+2009-03-12 17:08 ribes
+
+ * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_PACOExtension.idl, idl/SALOME_PACOExtension.xml,
+ idl/SALOME_ParamPorts.idl, idl/SALOME_ParamPorts.xml,
+ idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_provides_i.hxx,
+ src/DSC/ParallelDSC/Param_Double_Port_uses_i.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.cxx,
+ src/ParallelContainer/SALOME_ParallelGlobalProcessVar_i.hxx:
+
+ - Start of a new version of PACO integration with SALOME
+
+2009-03-12 12:52 vsr
+
+ * resources/KERNELCatalog.xml.in:
+
+ 0020215: [CEA 328 ] New types needed in KERNELCatalog.xml
+
+2009-03-12 09:49 adam
+
+ * src/NamingService/Test/Makefile.am:
+
+ Fix windows compilation AND make -j 8 compilation ...
+
+2009-03-11 12:26 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ add some boost libs for visu
+
+2009-03-10 16:36 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-03-09 10:05 adam
+
+ * salome_adm/cmake_files/: FindPLATFORM.cmake, am2cmake.py:
+
+ [no log message]
+
+2009-03-06 16:41 adam
+
+ * salome_adm/cmake_files/: FindBOOST.cmake, FindCPPUNIT.cmake,
+ FindHDF5.cmake, FindLIBXML2.cmake, FindOMNIORB.cmake,
+ FindPLATFORM.cmake, FindPTHREADS.cmake, FindPYTHON.cmake,
+ FindSWIG.cmake, am2cmake.py:
+
+ New version of cmake tools completely re-written
+
+2009-03-06 11:31 barate
+
+ * configure.ac, src/Launcher/Makefile.am,
+ src/ResourcesManager/Makefile.am:
+
+ Removed dependency on Basics from Batch. Fixed --with-onlylauncher mode.
+
+2009-03-06 10:44 adam
+
+ * salome_adm/cmake_files/: install_and_compile_python_file.cmake,
+ Makefile.am:
+
+ [no log message]
+
+2009-03-05 15:43 ribes
+
+ * src/DSC/ParallelDSC/: Makefile.am,
+ Param_Double_Port_provides_i.cxx,
+ Param_Double_Port_provides_i.hxx, Param_Double_Port_uses_i.cxx,
+ Param_Double_Port_uses_i.hxx, param_double_port_provides.cxx,
+ param_double_port_provides.hxx, param_double_port_uses.cxx,
+ param_double_port_uses.hxx:
+
+ - Changing names for YACSGEN
+
+2009-03-05 10:41 ribes
+
+ * resources/KERNELCatalog.xml.in:
+
+ - Adding a firts parallel datastream port
+
+2009-03-05 07:22 vsr
+
+ * doc/salome/gui/Makefile.am:
+
+ Fix problem with make distcheck step
+
+2009-03-04 17:45 adam
+
+ * src/: DF/DF_definitions.hxx,
+ Communication/SALOME_Communication.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 17:44 barate
+
+ * configure.ac, bin/appli_gen.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runSalome.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/showNS.py, bin/shutdownSalome.py, bin/waitContainers.py,
+ bin/waitNS.py, doc/INSTALL.txt, doc/KERNEL_Services.txt,
+ doc/Makefile.am, doc/SALOME_Application.txt, doc/UnitTests.txt,
+ doc/index.txt, doc/kernel_resources.txt, doc/rst.css,
+ doc/txt2html.sh, doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/examples/example1,
+ doc/salome/examples/example10, doc/salome/examples/example11,
+ doc/salome/examples/example12, doc/salome/examples/example13,
+ doc/salome/examples/example14, doc/salome/examples/example15,
+ doc/salome/examples/example16, doc/salome/examples/example17,
+ doc/salome/examples/example18, doc/salome/examples/example19,
+ doc/salome/examples/example20, doc/salome/examples/example21,
+ doc/salome/examples/example22, doc/salome/examples/example23,
+ doc/salome/examples/example3, doc/salome/examples/example4,
+ doc/salome/examples/example5, doc/salome/examples/example6,
+ doc/salome/examples/example7, doc/salome/examples/example8,
+ doc/salome/examples/example9, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
+ idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/production.m4,
+ src/Basics/SALOME_Basics.hxx, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/Salome_file_i.cxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFexport.hxx,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_test.py, src/KERNEL_PY/salome_version.py,
+ src/Launcher/Launcher.hxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_SALOME_Exception.hxx:
+
+ included V5_1_main 04mar09
+
+2009-03-04 17:42 adam
+
+ * src/: TOOLSDS/SALOMEDS_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDS/SALOMEDS_Defines.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ DSC/DSC_Basic/DSC_Basic.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 16:21 adam
+
+ * src/: TestContainer/SALOME_TestComponent.hxx,
+ ResourcesManager/ResourcesManager_Defs.hxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ Notification/SALOME_NOTIFICATION.hxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx, Launcher/Launcher.hxx,
+ Launcher/SALOME_Launcher_defs.hxx,
+ Container/SALOME_Container.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 15:55 vsr
+
+ * doc/salome/: Makefile.am, tui/Makefile.am, tui/doxyfile.in:
+
+ Fix problem with make distcheck step
+
+2009-03-04 15:15 adam
+
+ * src/: Registry/SALOME_Registry.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 14:14 adam
+
+ * src/GenericObj/SALOME_GenericObj_i.hh:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 14:08 adam
+
+ * src/SALOMETraceCollector/SALOMETraceCollector.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 14:04 adam
+
+ * src/: HDFPersist/HDFexport.hxx, Logger/SALOME_Logger_Server.hxx,
+ NamingService/SALOME_NamingService_defs.hxx,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx, Utils/SALOME_Utils.hxx,
+ Utils/Utils_SALOME_Exception.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 13:59 adam
+
+ * src/Basics/SALOME_Basics.hxx:
+
+ Test EXPORTS definition with target name as suggested by cmake
+
+2009-03-04 10:06 vsr
+
+ * src/KERNEL_PY/: salome_test.py, salome_version.py:
+
+ modify salome_test to skip SUPERV tests in SALOME series5x
+
+2009-03-03 12:13 secher
+
+ * src/MPIContainer/MPIContainer_i.cxx:
+
+ suppression of barriers MPI following replacement oneway by threads
+
+2009-02-27 17:45 adam
+
+ * salome_adm/cmake_files/: FindHDF5.cmake, FindPLATFORM.cmake,
+ FindPTHREADS.cmake, FindPYTHON.cmake, am2cmake.py:
+
+ Compatibility release compilation on windows
+
+2009-02-27 16:45 ribes
+
+ * idl/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx:
+
+ - BUG--
+ - Limitation de PACO++ end
+
+2009-02-27 16:19 secher
+
+ * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx:
+
+ replacement oneway by threads
+
+2009-02-27 15:18 ribes
+
+ * configure.ac, bin/appli_gen.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runSalome.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/showNS.py, bin/shutdownSalome.py, bin/waitContainers.py,
+ bin/waitNS.py, doc/Makefile.am, doc/salome/Makefile.am,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/examples/example1,
+ doc/salome/examples/example10, doc/salome/examples/example11,
+ doc/salome/examples/example12, doc/salome/examples/example13,
+ doc/salome/examples/example14, doc/salome/examples/example15,
+ doc/salome/examples/example16, doc/salome/examples/example17,
+ doc/salome/examples/example18, doc/salome/examples/example19,
+ doc/salome/examples/example20, doc/salome/examples/example21,
+ doc/salome/examples/example22, doc/salome/examples/example23,
+ doc/salome/examples/example3, doc/salome/examples/example4,
+ doc/salome/examples/example5, doc/salome/examples/example6,
+ doc/salome/examples/example7, doc/salome/examples/example8,
+ doc/salome/examples/example9, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
+ idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/Salome_file_i.cxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx,
+ src/DSC/DSC_Python/dsccalcium.py, src/HDFPersist/HDFascii.cc,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_iapp.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/Utils/Utils_Identity.py:
+
+ - mergefrom V5_1_1a1
+
+2009-02-27 14:47 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility blsurf plugin
+
+2009-02-27 12:08 ribes
+
+ * src/DSC/ParallelDSC/: param_double_port_provides.cxx,
+ param_double_port_provides.hxx, param_double_port_uses.cxx,
+ param_double_port_uses.hxx:
+
+ - Adding a firts parallel DSC port
+
+2009-02-27 11:27 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility VISU
+
+2009-02-26 17:28 ribes
+
+ * salome_adm/unix/config_files/check_paco++.m4,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Port to the new version of PaCO++: 0.5.2
+
+2009-02-26 17:27 ribes
+
+ * idl/: DSC_Engines.xml, Makefile.am, SALOME_Component.xml,
+ SALOME_Ports.idl, SALOME_Ports.xml:
+
+ - Port to the new version of PaCO++: 0.5.2
+ - Adding a parallel datastream port
+
+2009-02-26 14:18 adam
+
+ * src/Container/SALOME_Component_i.hxx:
+
+ Remove a warning
+
+2009-02-25 10:43 adam
+
+ * src/: Container/SALOME_Container.cxx, Logger/SALOME_Trace.hxx,
+ Logger/SALOME_Trace.cxx:
+
+ Replace strstream by sstream
+
+2009-02-25 10:41 adam
+
+ * src/Launcher/SALOME_Launcher_Handler.cxx:
+
+ [no log message]
+
+2009-02-25 10:39 adam
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Replace strstream by sstream
+
+2009-02-25 10:37 adam
+
+ * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
+ ac_cxx_warnings.m4, production.m4:
+
+ Remove -Wno-deprecated !
+
+2009-02-24 10:06 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility MEDMEM new architecture
+
+2009-02-19 17:12 prascle
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ PR: bug 20152
+
+2009-02-19 14:20 prascle
+
+ * salome_adm/unix/config_files/check_openmpi.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx:
+
+ merge from BR_V51_BS 19/02/09
+
+2009-02-18 08:06 mnt
+
+ * configure.ac:
+
+ Changing version to 5.1.1
+
+2009-02-16 09:11 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: update doxygen comments
+
+2009-02-13 19:03 caremoli
+
+ * src/Utils/Utils_Identity.py:
+
+ CCAR: reverse modification (bug in uid )
+
+2009-02-13 14:39 jfa
+
+ * bin/nameserver.py, src/HDFPersist/HDFascii.cc,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Update from BR_V5_DEV 13feb09
+
+2009-02-13 13:44 nge
+
+ * src/Utils/Utils_Identity.py:
+
+ Missing ':' on previous integration
+
+2009-02-13 11:43 caremoli
+
+ * configure.ac, bin/appli_gen.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/orbmodule.py, bin/runSalome.py,
+ bin/salome_session.py, bin/salome_utils.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/waitContainers.py, bin/waitNS.py,
+ doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/examples/example1,
+ doc/salome/examples/example10, doc/salome/examples/example11,
+ doc/salome/examples/example12, doc/salome/examples/example13,
+ doc/salome/examples/example14, doc/salome/examples/example15,
+ doc/salome/examples/example16, doc/salome/examples/example17,
+ doc/salome/examples/example18, doc/salome/examples/example19,
+ doc/salome/examples/example20, doc/salome/examples/example21,
+ doc/salome/examples/example22, doc/salome/examples/example23,
+ doc/salome/examples/example3, doc/salome/examples/example4,
+ doc/salome/examples/example5, doc/salome/examples/example6,
+ doc/salome/examples/example7, doc/salome/examples/example8,
+ doc/salome/examples/example9, doc/salome/gui/Makefile.am,
+ doc/salome/gui/doxyfile.in, doc/salome/gui/images/icon_about.png,
+ doc/salome/gui/static/footer.html,
+ doc/salome/gui/static/header.html, doc/salome/tui/Makefile.am,
+ doc/salome/tui/doxyfile.in, doc/salome/tui/pythfilter.py,
+ doc/salome/tui/static/footer.html,
+ doc/salome/tui/static/header.html, idl/Calcium_Ports.idl,
+ idl/DSC_Engines.idl, idl/Logger.idl, idl/Palm_Ports.idl,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/Salome_file_i.cxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx,
+ src/DSC/DSC_Python/dsccalcium.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/SALOMEDS/SALOME_DriverPy.py, src/Utils/Utils_Identity.py:
+
+ CCAR: documentation update
+
+ Now user documentation is built in gui/KERNEL directory
+ and developer documentation is built in tui/KERNEL directory
+ They are installed in directories with same names (so GUI module must be changed to access it)
+
+ Old documentation files have been removed and new files have been added in gui and tui
+ directories except .dox files in salome directory.
+ Example files have been moved to salome/examples directory
+
+ User documentation is built with EXTRACT_ALL=NO doxygen option and no template parsing
+ to produce a smaller doc. Many source files have been modified to add descriptions (brief,
+ class, module, file) because of EXTRACT_ALL option.
+
+2009-02-12 16:32 vsr
+
+ * configure.ac:
+
+ Fix incorrect processing of --with-onlylauncher option
+
+2009-02-11 16:51 mzn
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ Fix for bug 0020152 (New tooltip functionality on GUI object browser induces a crash in YACS).
+
+2009-02-06 09:25 eap
+
+ * src/: HDFPersist/HDFascii.cc,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Mismatched delete / delete []
+
+2009-02-06 09:20 eap
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Mismatched delete / delete []
+
+2009-02-06 08:12 eap
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Mismatched delete / delete []
+
+2009-02-06 07:59 eap
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_StudyManager.cxx:
+
+ Mismatched delete / delete []
+
+2009-02-05 16:16 secher
+
+ * salome_adm/unix/config_files/check_openmpi.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx:
+
+ some openmpi improvements, some MPIObject improvements to test ParaMEDMEM test in MYMPICOMPO module
+
+2009-02-05 09:05 abd
+
+ * bin/: nameserver.py:
+
+ Fix problem of spaces in TEMP path
+
+2009-02-04 18:47 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ PR: resource list of machines must contain actual hostname, not only localhost
+
+2009-02-03 17:30 prascle
+
+ * salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/am2cmake.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ PR: last merge from BR_V5_DEV
+
+2009-02-03 16:37 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ A patch by Nicolas GEIMER for Gcc 4.3.2 compatibility.
+
+2009-02-03 11:46 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility netgen plugin
+
+2009-02-03 11:43 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility smesh (end)
+
+2009-02-03 11:34 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ compatibility windows netgen plugin
+
+2009-02-03 11:05 prascle
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt, build_cmake,
+ build_cmake.bat, build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_gen.py,
+ bin/appli_install.sh, bin/config_appli.xml, bin/createAppli.sh,
+ bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/launchSalome.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runIDLparser,
+ bin/runIDLparser.in, bin/runNS.py, bin/runNS.sh, bin/runSalome,
+ bin/runSalome.csh, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/salome_utils.py,
+ bin/server.py, bin/setenv.py, bin/showNS.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/.bashrc, bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/Makefile.am,
+ doc/txt2html.sh, doc/configuration_examples/example_prerequis.sh,
+ doc/salome/Makefile.am, doc/salome/salome_application.dox,
+ doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
+ idl/Calcium_Ports.idl, idl/DSC_Engines.idl, idl/DSC_Engines.xml,
+ idl/Logger.idl, idl/Makefile.am, idl/Palm_Ports.idl,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_Exception.xml,
+ idl/SALOME_GenericObj.idl, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/KERNELCatalog.xml.in,
+ resources/Makefile.am, resources/Tools_en.xml,
+ resources/Tools_fr.xml, resources/config, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/sstream.in, salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/Makefile.am, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFfileClose.c, src/HDFPersist/HDFfileCreate.c,
+ src/HDFPersist/HDFfileMount.c, src/HDFPersist/HDFfileOpen.c,
+ src/HDFPersist/HDFfileUmount.c, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFgroupClose.c,
+ src/HDFPersist/HDFgroupCreate.c, src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
+ src/KERNEL_PY/salome_notebook.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
+ src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/SALOME_TestModuleCatalog.py,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
+ src/Utils/Utils_Timer.cxx, src/Utils/Utils_Timer.hxx,
+ src/Utils/duplicate.cxx, src/Utils/Test/Makefile.am,
+ src/Utils/Test/TestUtils.cxx, src/Utils/Test/TestUtils.py,
+ src/Utils/Test/UtilsTest.cxx, src/Utils/Test/UtilsTest.hxx,
+ src/win32pm/setup.py, src/win32pm/win32pm.c:
+
+ merge from branch BR_V5_DEV
+
+2009-01-30 18:23 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility SMESH (begin)
+
+2009-01-30 14:36 abd
+
+ * src/DF/DF_Attribute.cxx:
+
+ Fix endless loop in destructor on Win32 platform
+
+2009-01-28 17:24 ouv
+
+ * idl/SALOMEDS.idl, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/salome_notebook.py,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
+
+ Merge from BR_DumpPython_Extension branch (from tag mergeto_BR_V5_Dev_28Jan09)
+
+2009-01-27 11:55 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-01-27 10:14 adam
+
+ * src/HDFPersist/HDFobject.cc:
+
+ portability windows
+
+2009-01-27 10:13 adam
+
+ * src/NOTIFICATION_SWIG/Makefile.am:
+
+ strange behaviour with cmake
+
+2009-01-27 10:12 adam
+
+ * src/Logger/Makefile.am:
+
+ add includes for windows ...
+
+2009-01-27 10:09 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medmem (finished)
+
+2009-01-27 10:08 adam
+
+ * salome_adm/cmake_files/FindKERNEL.cmake:
+
+ [no log message]
+
+2009-01-27 10:01 caremoli
+
+ * bin/server.py:
+
+ CCAR: server.py modification to store pid process in pidict only if they
+ are still alive after exec
+
+2009-01-26 18:48 caremoli
+
+ * src/DSC/DSC_User/Superv_Component_i.cxx:
+
+ CCAR: remove delete of factory objects in Superv_Component destructor
+ as the map is now a class attribute and factory objects are static ones
+
+2009-01-26 16:42 dmv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeParameter.cxx:
+
+ IPAL20692 IPAL20700 The visual parameters are not stored in HDF file
+
+2009-01-26 12:00 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medmem (continue)
+
+2009-01-26 11:56 adam
+
+ * salome_adm/cmake_files/FindBOOST.cmake:
+
+ compatibility medmem
+
+2009-01-26 11:33 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medmem (begin)
+
+2009-01-26 11:18 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medfile (finished I think)
+
+2009-01-22 15:01 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility with C.Caremoli commits in Makefile.am's
+
+2009-01-22 14:20 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medfile (continue)
+
+2009-01-22 14:06 caremoli
+
+ * src/: Communication_SWIG/Makefile.am,
+ LifeCycleCORBA_SWIG/Makefile.am, NOTIFICATION_SWIG/Makefile.am:
+
+ CCAR: modify swig generation rule to add .py in dependencies so that
+ make dist and make distcheck work even if some files (generated .py)
+ are missing.
+
+2009-01-21 16:49 eap
+
+ * idl/SALOME_Component.idl, src/Container/SALOME_Component_i.hxx:
+
+ merge from BR_V5_IMP_P8
+
+2009-01-16 18:24 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ compatibility medfile (continue)
+
+2009-01-16 17:54 adam
+
+ * salome_adm/cmake_files/: am2cmake.py, FindPLATFORM.cmake:
+
+ compatibility medfile (begin)
+
+2009-01-15 16:56 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [no log message]
+
+2009-01-13 15:09 adam
+
+ * build_cmake.bat:
+
+ [no log message]
+
+2009-01-13 15:05 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Compatibility GEOM
+
+2009-01-12 13:28 dmv
+
+ * bin/: runSalome.py:
+
+ 0020109: Possible conflict with another ORB in runSalome.py
+
+2009-01-09 09:33 caremoli
+
+ * src/Container/Component_i.cxx:
+
+ CCAR: add missing initialization of _container attribute in parallel constructor
+
+2009-01-08 18:28 caremoli
+
+ * bin/appli_clean.sh, bin/appli_gen.py, bin/killSalomeWithPort.py,
+ bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
+ bin/salome_utils.py, bin/virtual_salome.py, bin/waitNS.sh,
+ bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR: these modifications are mainly for the salome virtual application
+ They allow one salome virtual application to be used by several users with
+ different logins. That was not possible before.
+ shutdownSalome has been modified to correctly handle salome virtual application
+ and to do same job from GUI or from console
+
+2009-01-08 16:56 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Fixes after merge from 4.1.4
+ Compatibility cmake 2.6
+
+2009-01-08 11:14 caremoli
+
+ * src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx:
+
+ CCAR: small modification in Calcium.hxx to avoid modification of existing
+ components (add #include "calcium_port_factory.hxx")
+
+2009-01-06 16:19 caremoli
+
+ * Makefile.am, README.FIRST.txt, configure.ac, bin/appli_clean.sh,
+ bin/config_appli.xml, bin/launchConfigureParser.py,
+ bin/runSalome.py, bin/setenv.py, bin/virtual_salome.py,
+ bin/waitNS.sh, bin/appliskel/CatalogResources.xml,
+ bin/appliskel/README, bin/appliskel/SalomeApp.xml,
+ idl/DSC_Engines.xml, idl/Logger.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Exception.xml,
+ idl/SALOME_Ports.xml, resources/CatalogDataType.xml,
+ resources/CatalogModulePersonnel.xml_skel,
+ resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ resources/channel.cfg,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ src/Makefile.am, src/Basics/Basics_Utils.cxx,
+ src/Communication/Receiver.cxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/TestSalome_file.cxx, src/DF/Makefile.am,
+ src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_i.hxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/Makefile.am,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleGenerator/IDLparser.py, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/Utils/OpUtil.cxx:
+
+ CCAR: merge last developments from KERNEL 4.1.4 (DSC ports, ResourceManager, ...)
+
+2008-12-30 15:15 dmv
+
+ * src/: LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ SALOMEDSImpl/Makefile.am:
+
+ 0020062: [CEA 295] Type coherence in *.i files
+
+2008-12-30 15:05 dmv
+
+ * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ 0020062: [CEA 295] Type coherence in *.i files
+
+2008-12-25 17:35 san
+
+ * bin/setenv.py:
+
+ IMP 16551 (show static trihedron): roll back to TKOpenGl graphic driver library
+
+2008-12-23 11:59 mzn
+
+ * idl/SALOME_Component.idl, src/Container/SALOME_Component_i.hxx:
+
+ Fix for improvement 0017606 (EDF 168: Is it possible to customize the tooltip of the objects in the browser?);
+
+2008-12-15 11:41 dmv
+
+ * idl/Logger.idl, src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx:
+
+ IPAL20326 SALOME_Logger_Server is not killed
+
+2008-12-12 10:52 akl
+
+ * src/HDFPersist/: HDFattrCreate.c, HDFattrRead.c, HDFattrWrite.c,
+ HDFdatasetCreate.c, HDFdatasetRead.c, HDFdatasetWrite.c:
+
+ Fix of internal bugs 20610 and 20710: Fatal error in 5x on activate Mesh for 4x study. Add PCLINUX64 to PCLINUX preprocessor command to correct HDF work on 64-bit platforms.
+
+2008-12-12 09:44 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix crash on open old files.
+
+2008-12-10 15:46 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx:
+
+ Fix for IPAL20763 DPE: lost value after dump python.
+
+2008-12-10 15:44 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix for IPAL20762 DPE: notebook sortes variables after restoring from the study.
+
+2008-12-08 15:44 rnv
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ Add comments.
+
+2008-12-06 08:13 abd
+
+ * build_cmake, resources/CatalogModulePersonnel.xml_skel,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ src/ModuleGenerator/testIDLparser.in:
+
+ Update copyright information
+
+2008-12-05 16:34 rnv
+
+ * idl/SALOMEDS.idl:
+
+ Add comments.
+
+2008-12-04 14:37 abd
+
+ * src/: Utils/Test/Makefile.am, Utils/Test/TestUtils.cxx,
+ Utils/Test/TestUtils.py, Utils/Test/UtilsTest.cxx,
+ Utils/Test/UtilsTest.hxx, win32pm/setup.py, win32pm/win32pm.c:
+
+ [no log message]
+
+2008-12-04 14:34 abd
+
+ * src/: TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponent.hxx,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
+ UnitTests/UnitTests.cxx, UnitTests/UnitTests.py,
+ Utils/Makefile.am, Utils/SALOME_utilities.py,
+ Utils/Utils_Identity.py, Utils/Utils_Timer.cxx, Utils/OpUtil.hxx,
+ Utils/SALOME_Utils.hxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Mutex.cxx, Utils/Utils_Mutex.hxx,
+ Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.hxx, Utils/duplicate.cxx:
+
+ [no log message]
+
+2008-12-04 14:30 abd
+
+ * src/SALOMETraceCollector/Test/: Makefile.am,
+ SALOMETraceCollectorTest.cxx, SALOMETraceCollectorTest.hxx,
+ TestSALOMETraceCollector.cxx, TestSALOMETraceCollector.py:
+
+ [no log message]
+
+2008-12-04 14:27 abd
+
+ * src/: SALOMEDSImpl/Test/Makefile.am,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
+
+ [no log message]
+
+2008-12-04 14:23 abd
+
+ * src/SALOMEDSImpl/: Makefile.am,
+ SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl_ChildIterator.cxx, SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl_ChildNodeIterator.hxx, SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl_Driver.hxx, SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl_StudyHandle.hxx, SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl_StudyManager.hxx, SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl_TMPFile.hxx, SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl_Tool.hxx, SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl_UseCaseIterator.hxx, testDS.cxx:
+
+ [no log message]
+
+2008-12-04 14:19 abd
+
+ * src/SALOMEDSClient/: Makefile.am, SALOMEDSClient.hxx,
+ SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient_AttributeString.hxx,
+ SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient_IParameters.hxx, SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
+ SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient_definitions.hxx:
+
+ Update copyright information
+
+2008-12-04 14:16 abd
+
+ * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_AttributeComment.cxx,
+ SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS_AttributeLocalID.hxx, SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeOpened.hxx, SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributeReal.hxx,
+ SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeString.hxx, SALOMEDS_AttributeString_i.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_ChildIterator.hxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Driver_i.hxx,
+ SALOMEDS_GenericAttribute.hxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_Server.cxx, SALOMEDS_Study.hxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_TMPFile_i.cxx,
+ SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseIterator_i.cxx,
+ SALOME_DriverPy.py, SALOMEDS.hxx,
+ SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType.hxx, SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags.hxx,
+ SALOMEDS_AttributeFlags_i.cxx, SALOMEDS_AttributeGraphic.hxx,
+ SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS_AttributeName.hxx, SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTarget.hxx, SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_Attributes.hxx,
+ SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS_Defines.hxx, SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IParameters.cxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SComponent_i.cxx, SALOMEDS_SObject.hxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_TMPFile_i.hxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS_UseCaseIterator_i.hxx, Makefile.am,
+ SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS_AttributePixMap.hxx, SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS_AttributePythonObject_i.hxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeString.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeTreeNode.hxx, SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_IParameters.hxx, SALOMEDS_SComponent.hxx,
+ SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.hxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyManager.hxx,
+ SALOMEDS_UseCaseIterator.hxx, Test/Makefile.am,
+ Test/SALOMEDSTest.cxx, Test/SALOMEDSTest.hxx,
+ Test/SALOMEDSTest_AttributeComment.cxx,
+ Test/SALOMEDSTest_AttributeDrawable.cxx,
+ Test/SALOMEDSTest_AttributeExpandable.cxx,
+ Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ Test/SALOMEDSTest_AttributeFileType.cxx,
+ Test/SALOMEDSTest_AttributeFlags.cxx,
+ Test/SALOMEDSTest_AttributeGraphic.cxx,
+ Test/SALOMEDSTest_AttributeIOR.cxx,
+ Test/SALOMEDSTest_AttributeInteger.cxx,
+ Test/SALOMEDSTest_AttributeLocalID.cxx,
+ Test/SALOMEDSTest_AttributeName.cxx,
+ Test/SALOMEDSTest_AttributeOpened.cxx,
+ Test/SALOMEDSTest_AttributeParameter.cxx,
+ Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ Test/SALOMEDSTest_AttributePixMap.cxx,
+ Test/SALOMEDSTest_AttributePythonObject.cxx,
+ Test/SALOMEDSTest_AttributeReal.cxx,
+ Test/SALOMEDSTest_AttributeSelectable.cxx,
+ Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ Test/SALOMEDSTest_AttributeTarget.cxx,
+ Test/SALOMEDSTest_AttributeTextColor.cxx,
+ Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ Test/SALOMEDSTest_AttributeUserID.cxx,
+ Test/SALOMEDSTest_ChildIterator.cxx,
+ Test/SALOMEDSTest_SComponent.cxx,
+ Test/SALOMEDSTest_SComponentIterator.cxx,
+ Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
+ Test/SALOMEDSTest_StudyBuilder.cxx,
+ Test/SALOMEDSTest_StudyManager.cxx,
+ Test/SALOMEDSTest_UseCase.cxx, Test/TestSALOMEDS.cxx,
+ Test/TestSALOMEDS.py:
+
+ Update copyright information
+
+2008-12-04 14:08 abd
+
+ * src/: Registry/Makefile.am, Registry/RegistryConnexion.cxx,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.cxx,
+ Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/ResourcesManager_Defs.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Update copyright information
+
+2008-12-04 14:00 abd
+
+ * src/: Notification/CosNotifyShorthands.h,
+ Notification/Makefile.am, Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Notification/SALOME_NOTIFICATION.hxx,
+ ParallelContainer/Makefile.am,
+ ParallelContainer/Parallel_Salome_file_i.cxx,
+ ParallelContainer/Parallel_Salome_file_i.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ Update copyright information
+
+2008-12-04 13:57 abd
+
+ * src/: ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/TestModuleCatalog.py, ModuleGenerator/IDLparser.py,
+ ModuleGenerator/Makefile.am,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/SALOME_NamingService_defs.hxx,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py:
+
+ Update copyright information
+
+2008-12-04 13:46 abd
+
+ * src/MPIContainer/: MPIContainer_i.cxx, MPIContainer_i.hxx,
+ MPIObject_i.cxx, MPIObject_i.hxx, Makefile.am,
+ SALOME_MPIContainer.cxx:
+
+ Update copyright information
+
+2008-12-04 13:43 abd
+
+ * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
+ Launcher/Launcher.cxx, Launcher/Launcher.hxx,
+ Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
+ Launcher/SALOME_Launcher_defs.hxx,
+ LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestContainerManager.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA/Test/Makefile.am,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.am,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
+ Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ Logger/Test/Makefile.am, Logger/Test/TestKiller.py:
+
+ Update copyright information
+
+2008-12-04 13:25 abd
+
+ * src/: HDFPersist/HDFOI.hxx, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFascii.hxx, HDFPersist/HDFattrClose.c,
+ HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
+ HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
+ HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
+ HDFPersist/HDFattribute.cc, HDFPersist/HDFattribute.hxx,
+ HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
+ HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
+ HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
+ HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
+ HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
+ HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
+ HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
+ KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
+ KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
+ KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
+ KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
+ KERNEL_PY/salome_version.py:
+
+ Update copyright information
+
+2008-12-04 13:22 abd
+
+ * src/: DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/calcium.h,
+ DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ DSC/DSC_User/Datastream/Calcium/version.h,
+ DSC/DSC_User/Datastream/Palm/Makefile.am,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
+ DSC/ParallelDSC/ParallelDSC_i.hxx, GenericObj/Makefile.am,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh:
+
+ Update copyright information
+
+2008-12-04 13:14 abd
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx, Makefile.am,
+ Superv_Component_i.cxx, Superv_Component_i.hxx, base_port.cxx,
+ base_port.hxx, port_factory.hxx, provides_port.cxx,
+ provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
+ uses_port.hxx, Basic/Makefile.am, Basic/basic_port_factory.cxx,
+ Basic/basic_port_factory.hxx, Basic/data_short_port_provides.cxx,
+ Basic/data_short_port_provides.hxx,
+ Basic/data_short_port_uses.cxx, Basic/data_short_port_uses.hxx,
+ Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
+ Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
+ Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
+ Datastream/DisplayPair.hxx, Datastream/FindKeyPredicate.hxx,
+ Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
+ Datastream/Makefile.am, Datastream/ProcessTimeIntervalTraits.hxx,
+ Datastream/fake.cc, Datastream/testAdjacentFunctor.cxx,
+ Datastream/testAdjacentPredicate.cxx:
+
+ Update copyright information
+
+2008-12-04 13:10 abd
+
+ * src/: DF/DF_Application.cxx, DF/DF_Application.hxx,
+ DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
+ DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
+ DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
+ DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
+ DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
+ DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
+ DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
+ DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
+ DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
+ DSC/DSC_Basic/PortProperties_i.hxx,
+ DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
+ DSC/DSC_Python/dsccalcium.py:
+
+ Update copyright information
+
+2008-12-04 13:07 abd
+
+ * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.hxx,
+ Communication/ReceiverFactory.cxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Communication.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
+ Communication_SWIG/Makefile.am,
+ Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx, Container/SALOME_Container.py,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.cxx,
+ Container/SALOME_FileTransfer_i.hxx, Container/Salome_file_i.cxx,
+ Container/Salome_file_i.hxx, Container/TestSalome_file.cxx:
+
+ Update copyright information
+
+2008-12-04 12:57 abd
+
+ * src/Basics/: BasicsGenericDestructor.cxx,
+ BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
+ Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
+ Makefile.am, SALOME_Basics.hxx, Test/BasicMainTest.hxx,
+ Test/Makefile.am:
+
+ Update copyright information
+
+2008-12-04 12:53 abd
+
+ * salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/install_python_from_idl.cmake,
+ src/Makefile.am:
+
+ Update copyright information
+
+2008-12-04 12:44 abd
+
+ * salome_adm/unix/config_files/DEPRECATED/: ac_cc_warnings.m4,
+ ac_cxx_bool.m4, ac_cxx_mutable.m4,
+ ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
+ check_Salome.m4, check_java.m4, check_mico.m4, check_pthreads.m4,
+ install-sh, mkinstalldirs:
+
+ Update copyright information
+
+2008-12-04 12:41 abd
+
+ * salome_adm/unix/config_files/: Makefile.am,
+ ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4,
+ ac_cxx_namespaces.m4, ac_cxx_option.m4,
+ ac_cxx_template_options.m4, ac_cxx_use_std_iostream.m4,
+ ac_cxx_warnings.m4, ac_linker_options.m4, acx_pthread.m4,
+ check_Kernel.m4, check_boost.m4, check_cas.m4, check_corba.m4,
+ check_cppunit.m4, check_f77.m4, check_hdf5.m4, check_htmlgen.m4,
+ check_lam.m4, check_libxml.m4, check_local.m4, check_lsf.m4,
+ check_mpi.m4, check_mpich.m4, check_omniorb.m4, check_openmpi.m4,
+ check_openpbs.m4, check_paco++.m4, check_sockets.m4,
+ check_swig.m4, check_withihm.m4, enable_pthreads.m4,
+ production.m4, pyembed.m4, python.m4:
+
+ Update copyright information
+
+2008-12-04 12:32 abd
+
+ * bin/appliskel/: CatalogResources.xml, SalomeApp.xml,
+ getAppliPath.py, runRemote.sh, searchFreePort.sh, .bashrc, envd,
+ killCurrentPort, runAppli, runConsole, runParam, runSession,
+ runTests:
+
+ Update copyright information
+
+2008-12-04 08:04 abd
+
+ * salome_adm/unix/: Makefile.am, SALOMEconfig.ref.in,
+ make_common_starter.am:
+
+ Update copyright information
+
+2008-12-04 08:01 abd
+
+ * resources/CatalogDataType.xml, resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ resources/channel.cfg, salome_adm/Makefile.am:
+
+ Update copyright information
+
+2008-12-04 07:57 abd
+
+ * idl/: Calcium_Ports.idl, DSC_Engines.idl, DSC_Engines.xml,
+ Logger.idl, Makefile.am, Palm_Ports.idl, SALOMEDS.idl,
+ SALOMEDS_Attributes.idl, SALOME_Comm.idl, SALOME_Component.idl,
+ SALOME_Component.xml, SALOME_ContainerManager.idl,
+ SALOME_Exception.idl, SALOME_Exception.xml,
+ SALOME_GenericObj.idl, SALOME_MPIContainer.idl,
+ SALOME_MPIObject.idl, SALOME_ModuleCatalog.idl, SALOME_Ports.idl,
+ SALOME_Ports.xml, SALOME_Registry.idl,
+ SALOME_RessourcesCatalog.idl, SALOME_Session.idl,
+ SALOME_TestComponent.idl, SALOME_TestMPIComponent.idl,
+ SALOME_TestModuleCatalog.idl, TestNotif.idl, TypeData.idl,
+ nstest.idl:
+
+ Update copyright information
+
+2008-12-04 07:48 abd
+
+ * doc/: Makefile.am, txt2html.sh,
+ configuration_examples/example_prerequis.sh, salome/Makefile.am,
+ salome/tui/Makefile.am, salome/tui/pythfilter.py:
+
+ Update copyright information
+
+2008-12-04 07:18 abd
+
+ * bin/: Makefile.am, NSparam.py, addToKillList.py, appli_clean.sh,
+ appli_gen.py, appli_install.sh, config_appli.xml, createAppli.sh,
+ envSalome.py, killSalome.py, killSalomeWithPort.py,
+ launchConfigureParser.py, launchSalome.py, nameserver.py,
+ orbmodule.py, runNS.py, runNS.sh, runSalome, runSalome.csh,
+ runSalome.ksh, runSalome.py, salomeConsole.py, salome_session.py,
+ salome_utils.py, server.py, setenv.py, showNS.py,
+ shutdownSalome.py, virtual_salome.py, waitContainers.py,
+ waitNS.py, waitNS.sh, runIDLparser:
+
+ Update copyright information
+
+2008-12-04 07:13 abd
+
+ * KERNEL_version.h.in, Makefile.am, README.FIRST.txt,
+ build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in:
+
+ Update copyright information
+
+2008-12-01 17:03 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Do not add executable if no source is present
+ Do not add subdir if dir == .
+
+2008-12-01 16:52 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Adding some cas libs
+
+2008-12-01 16:50 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ If the is stick on the previous word, we have to add a space ...
+
+2008-12-01 16:48 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ Mutualize cmake inclusions
+
+2008-12-01 16:43 adam
+
+ * salome_adm/cmake_files/FindLIBXML2.cmake:
+
+ MED reference LIBXML_CPPFLAGS ...
+
+2008-12-01 15:00 abd
+
+ * src/TestContainer/: TestContainer.cxx, TestLogger.cxx:
+
+ Fix compilation errors on Win32 platform:
+ Using standard WIN32 preprocessor definition instead WNT (defined by Open CASCADE)
+
+2008-12-01 12:07 vsr
+
+ * bin/waitNS.sh:
+
+ Update copyright information
+
+2008-11-28 14:23 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Dump Python Extension.
+
+2008-11-27 09:24 vsr
+
+ * bin/appliskel/README:
+
+ Update copyright information
+
+2008-11-27 07:16 vsr
+
+ * README.FIRST.txt, bin/launchConfigureParser.py,
+ bin/salome_utils.py, bin/shutdownSalome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/appliskel/.bashrc,
+ idl/DSC_Engines.xml, idl/SALOME_Component.xml,
+ idl/SALOME_Exception.xml, idl/SALOME_Ports.xml,
+ salome_adm/unix/DEPRECATED/depend.in,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/ModuleGenerator/README, src/ModuleGenerator/testIDLparser.in,
+ src/SALOMEDS/README_attributes:
+
+ Update copyright information
+
+2008-11-26 13:48 abd
+
+ * bin/appliskel/: envd, getAppliPath.py, killCurrentPort, runAppli,
+ runConsole, runParam, runRemote.sh, runSession, runTests,
+ searchFreePort.sh:
+
+ Update copyright information
+
+2008-11-26 13:44 abd
+
+ * src/: Utils/Makefile.am, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
+ Utils/SALOME_Utils.hxx, Utils/SALOME_utilities.py,
+ Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.cxx,
+ Utils/Utils_Timer.hxx, Utils/duplicate.cxx,
+ Utils/Test/Makefile.am, Utils/Test/TestUtils.cxx,
+ Utils/Test/TestUtils.py, Utils/Test/UtilsTest.cxx,
+ Utils/Test/UtilsTest.hxx, win32pm/setup.py, win32pm/win32pm.c:
+
+ Update copyright information
+
+2008-11-26 13:40 abd
+
+ * src/: SALOMETraceCollector/Test/Makefile.am,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
+ UnitTests/UnitTests.cxx, UnitTests/UnitTests.py:
+
+ Update copyright information
+
+2008-11-26 13:37 abd
+
+ * src/: SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
+
+ Update copyright information
+
+2008-11-26 13:32 abd
+
+ * src/SALOMEDSClient/: Makefile.am, SALOMEDSClient.hxx,
+ SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient_AttributeString.hxx,
+ SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient_IParameters.hxx, SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
+ SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient_definitions.hxx:
+
+ Update copyright information
+
+2008-11-26 12:51 abd
+
+ * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx, SALOMEDS.hxx,
+ SALOMEDS_AttLong_i.cxx, SALOMEDS_AttLong_i.hxx,
+ SALOMEDS_AttReal_i.cxx, SALOMEDS_AttributeComment.cxx,
+ SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeComment_i.hxx, SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS_AttributeIOR.hxx, SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName.hxx,
+ SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS_AttributeOpened_i.cxx, SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS_AttributeParameter.cxx, SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS_AttributePythonObject_i.cxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeString.cxx, SALOMEDS_AttributeString.hxx,
+ SALOMEDS_AttributeString_i.cxx, SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
+ SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS_BasicAttribute_i.hxx, SALOMEDS_Callback_i.hxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator.hxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS_Defines.hxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_Driver_i.hxx, SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS_IParameters.cxx, SALOMEDS_SComponent.cxx,
+ SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.hxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_Server.cxx, SALOMEDS_Study.cxx, SALOMEDS_Study.hxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_TMPFile_i.cxx,
+ SALOMEDS_TMPFile_i.hxx, SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS_UseCaseIterator.hxx, SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS_UseCaseIterator_i.hxx, SALOMEDS_AttReal_i.hxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS_AttributePixMap.hxx, SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeTreeNode.hxx, SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_IParameters.hxx,
+ SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS_SComponent_i.cxx, SALOMEDS_StudyManager.hxx,
+ SALOME_DriverPy.py, Test/Makefile.am, Test/SALOMEDSTest.cxx,
+ Test/SALOMEDSTest.hxx, Test/SALOMEDSTest_AttributeComment.cxx,
+ Test/SALOMEDSTest_AttributeDrawable.cxx,
+ Test/SALOMEDSTest_AttributeExpandable.cxx,
+ Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ Test/SALOMEDSTest_AttributeFileType.cxx,
+ Test/SALOMEDSTest_AttributeFlags.cxx,
+ Test/SALOMEDSTest_AttributeGraphic.cxx,
+ Test/SALOMEDSTest_AttributeIOR.cxx,
+ Test/SALOMEDSTest_AttributeInteger.cxx,
+ Test/SALOMEDSTest_AttributeLocalID.cxx,
+ Test/SALOMEDSTest_AttributeName.cxx,
+ Test/SALOMEDSTest_AttributeOpened.cxx,
+ Test/SALOMEDSTest_AttributeParameter.cxx,
+ Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ Test/SALOMEDSTest_AttributePixMap.cxx,
+ Test/SALOMEDSTest_AttributePythonObject.cxx,
+ Test/SALOMEDSTest_AttributeReal.cxx,
+ Test/SALOMEDSTest_AttributeSelectable.cxx,
+ Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ Test/SALOMEDSTest_AttributeTarget.cxx,
+ Test/SALOMEDSTest_AttributeTextColor.cxx,
+ Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ Test/SALOMEDSTest_AttributeUserID.cxx,
+ Test/SALOMEDSTest_ChildIterator.cxx,
+ Test/SALOMEDSTest_SComponent.cxx,
+ Test/SALOMEDSTest_SComponentIterator.cxx,
+ Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
+ Test/SALOMEDSTest_StudyBuilder.cxx,
+ Test/SALOMEDSTest_StudyManager.cxx,
+ Test/SALOMEDSTest_UseCase.cxx, Test/TestSALOMEDS.cxx,
+ Test/TestSALOMEDS.py:
+
+ Update copyright information
+
+2008-11-26 12:39 abd
+
+ * src/: ParallelContainer/Makefile.am,
+ ParallelContainer/Parallel_Salome_file_i.cxx,
+ ParallelContainer/Parallel_Salome_file_i.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ Registry/Makefile.am, Registry/RegistryConnexion.cxx,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.cxx,
+ Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/ResourcesManager_Defs.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Update copyright information
+
+2008-11-26 12:35 abd
+
+ * src/: NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/SALOME_NamingService_defs.hxx,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py,
+ Notification/CosNotifyShorthands.h, Notification/Makefile.am,
+ Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Notification/SALOME_NOTIFICATION.hxx:
+
+ Update copyright information
+
+2008-11-26 12:32 abd
+
+ * src/: ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
+ ModuleGenerator/tests/AddComponent.idl,
+ ModuleGenerator/tests/SubComponent.idl,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
+
+ Update copyright information
+
+2008-11-26 12:28 abd
+
+ * src/: Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
+ Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
+ MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/SALOME_TestModuleCatalog.py,
+ ModuleCatalog/TestModuleCatalog.py:
+
+ Update copyright information
+
+2008-11-26 12:25 abd
+
+ * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
+ Launcher/Launcher.cxx, Launcher/Launcher.hxx,
+ Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
+ Launcher/SALOME_Launcher_Handler.cxx,
+ Launcher/SALOME_Launcher_Handler.hxx,
+ Launcher/SALOME_Launcher_Parser.cxx,
+ Launcher/SALOME_Launcher_Parser.hxx,
+ Launcher/SALOME_Launcher_defs.hxx,
+ LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestContainerManager.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA/Test/Makefile.am,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.am,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py:
+
+ Update copyright information
+
+2008-11-26 12:21 abd
+
+ * src/: HDFPersist/HDFOI.hxx, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFascii.hxx, HDFPersist/HDFattrClose.c,
+ HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
+ HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
+ HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
+ HDFPersist/HDFattribute.cc, HDFPersist/HDFattribute.hxx,
+ HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
+ HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
+ HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
+ HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
+ HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
+ HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
+ HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
+ KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
+ KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
+ KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
+ KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
+ KERNEL_PY/salome_version.py:
+
+ Update copyright information
+
+2008-11-26 12:13 abd
+
+ * src/: DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/calcium.h,
+ DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ DSC/DSC_User/Datastream/Calcium/version.h,
+ DSC/DSC_User/Datastream/Palm/Makefile.am,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ DSC/ParallelDSC/Makefile.am, DSC/ParallelDSC/ParallelDSC_i.cxx,
+ DSC/ParallelDSC/ParallelDSC_i.hxx, GenericObj/Makefile.am,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh:
+
+ Update copyright information
+
+2008-11-26 11:59 abd
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx, base_port.cxx,
+ base_port.hxx, port_factory.hxx, provides_port.cxx, Makefile.am,
+ Superv_Component_i.cxx, Superv_Component_i.hxx,
+ provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
+ uses_port.hxx, Basic/Makefile.am, Basic/basic_port_factory.cxx,
+ Basic/basic_port_factory.hxx, Basic/data_short_port_provides.cxx,
+ Basic/data_short_port_provides.hxx,
+ Basic/data_short_port_uses.cxx, Basic/data_short_port_uses.hxx,
+ Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
+ Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
+ Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
+ Datastream/DisplayPair.hxx, Datastream/FindKeyPredicate.hxx,
+ Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
+ Datastream/Makefile.am, Datastream/ProcessTimeIntervalTraits.hxx,
+ Datastream/fake.cc, Datastream/testAdjacentFunctor.cxx,
+ Datastream/testAdjacentPredicate.cxx:
+
+ Update copyright information
+
+2008-11-26 11:54 abd
+
+ * src/: DF/DF_Application.cxx, DF/DF_Application.hxx,
+ DF/DF_Attribute.cxx, DF/DF_Attribute.hxx,
+ DF/DF_ChildIterator.cxx, DF/DF_ChildIterator.hxx,
+ DF/DF_Container.cxx, DF/DF_Container.hxx, DF/DF_Document.cxx,
+ DF/DF_Document.hxx, DF/DF_Label.cxx, DF/DF_Label.hxx,
+ DF/DF_definitions.hxx, DF/Makefile.am, DF/testDF.cxx,
+ DSC/Makefile.am, DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ DSC/DSC_Basic/DSC_Basic.hxx, DSC/DSC_Basic/DSC_Callbacks.hxx,
+ DSC/DSC_Basic/DSC_i.cxx, DSC/DSC_Basic/DSC_i.hxx,
+ DSC/DSC_Basic/DSC_interface.cxx, DSC/DSC_Basic/DSC_interface.hxx,
+ DSC/DSC_Basic/Makefile.am, DSC/DSC_Basic/PortProperties_i.cxx,
+ DSC/DSC_Basic/PortProperties_i.hxx,
+ DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ DSC/DSC_Python/Makefile.am, DSC/DSC_Python/calcium.i,
+ DSC/DSC_Python/dsccalcium.py:
+
+ Update copyright information
+
+2008-11-26 11:50 abd
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ Container_init_python.cxx, SALOME_ComponentPy.py,
+ SALOME_Component_i.hxx, SALOME_Container.cxx,
+ SALOME_Container.py, SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx, SALOME_ContainerPy.py,
+ SALOME_Container_SignalsHandler.cxx, SALOME_Container_i.hxx,
+ SALOME_FileRef_i.cxx, SALOME_FileTransfer_i.cxx,
+ SALOME_FileTransfer_i.hxx, Salome_file_i.cxx, Salome_file_i.hxx,
+ Container_init_python.hxx, Makefile.am, SALOME_Container.hxx,
+ SALOME_FileRef_i.hxx, TestSalome_file.cxx:
+
+ Update copyright information
+
+2008-11-26 11:47 abd
+
+ * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.cxx,
+ Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Communication.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
+ Communication/libSALOME_Comm.i, Communication_SWIG/Makefile.am,
+ Communication_SWIG/libSALOME_Comm.i:
+
+ Update copyright information
+
+2008-11-26 11:26 abd
+
+ * src/Basics/: BasicsGenericDestructor.cxx,
+ BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
+ Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
+ Makefile.am, SALOME_Basics.hxx, Test/BasicMainTest.hxx,
+ Test/Makefile.am:
+
+ Update copyright information
+
+2008-11-26 11:21 abd
+
+ * salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ src/Makefile.am:
+
+ Update copyright information
+
+2008-11-26 11:03 abd
+
+ * salome_adm/unix/: Doxyfile, F77config.h.in, Makefile.am,
+ SALOMEconfig.ref.in, make_common_starter.am, DEPRECATED/Doxyfile,
+ DEPRECATED/F77config.h.in, DEPRECATED/config.h.in,
+ DEPRECATED/envScript.in, DEPRECATED/make_commence.in,
+ DEPRECATED/make_conclude.in, DEPRECATED/make_module.in,
+ DEPRECATED/make_omniorb.in:
+
+ Update copyright information
+
+2008-11-26 10:58 abd
+
+ * idl/Calcium_Ports.idl, idl/DSC_Engines.idl, idl/Logger.idl,
+ idl/Makefile.am, idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
+ salome_adm/Makefile.am:
+
+ Update copyright information
+
+2008-11-26 10:54 abd
+
+ * doc/: Makefile.am, txt2html.sh,
+ configuration_examples/example_prerequis.sh, salome/Makefile.am,
+ salome/tui/Makefile.am, salome/tui/pythfilter.py:
+
+ Update copyright information
+
+2008-11-26 10:53 abd
+
+ * bin/: Makefile.am, NSparam.py, addToKillList.py, appli_clean.sh,
+ appli_gen.py, appli_install.sh, createAppli.sh, envSalome.py,
+ killSalome.py, killSalomeWithPort.py, launchConfigureParser.py,
+ launchSalome.py, nameserver.py, orbmodule.py, runIDLparser.in,
+ runNS.py, runNS.sh, runSalome, runSalome.csh, runSalome.ksh,
+ runSalome.py, salomeConsole.py, salome_session.py,
+ salome_utils.py, server.py, setenv.py, showNS.py,
+ shutdownSalome.py, virtual_salome.py, waitContainers.py,
+ waitNS.py, waitNS.sh:
+
+ Update copyrights information
+
+2008-11-26 10:34 abd
+
+ * KERNEL_version.h.in, Makefile.am, build_configure,
+ clean_configure, configure.ac, DEPRECATED/Makefile.in,
+ DEPRECATED/configure.in.base, DEPRECATED/make_config.in:
+
+ Update copyrights information
+
+2008-11-26 08:50 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix bug with save/open study.
+
+2008-11-25 14:53 rnv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Dump Python extension
+
+2008-11-25 10:53 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] GEOM compatibility
+
+2008-11-25 10:50 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] Copy the swig'ed foo.dll into foo_d.pyd in order that python
+ can import them on windows. It works only for python in debug mode.
+ It will be improved in the future.
+
+2008-11-25 10:31 dmv
+
+ * idl/Logger.idl, src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx:
+
+ IPAL20326 SALOME_Logger_Server is not killed
+
+2008-11-24 13:39 ouv
+
+ * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
+
+ Dump Python extension
+
+2008-11-20 16:55 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] For other modules thna KERNEL, we need to replace the by /
+ to compile correctly the idl files at install stage
+
+2008-11-20 16:51 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] Initialize correctly SUBDIRS otherwise for the particuliar
+ case where SUBDIRS is declared in an enclosed if, the cmake compilation
+ fails ...
+
+2008-11-20 16:43 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] Install the adm_local/cmake_files
+
+2008-11-20 16:41 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] Use the NOGDI compilation flags on windows for 3 libraries
+
+2008-11-19 18:15 rnv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_GenericVariable.cxx,
+ SALOMEDSImpl_GenericVariable.hxx,
+ SALOMEDSImpl_ScalarVariable.cxx, SALOMEDSImpl_ScalarVariable.hxx,
+ SALOMEDSImpl_Study.cxx:
+
+ Now study declared as being modifyed after change variables.
+
+2008-11-18 11:01 vsr
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Fix problem with notifd process killing on SALOME session shutdowning.
+
+2008-11-17 16:34 rnv
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ ParseVariables() method added in the Study.
+
+2008-11-17 15:27 vsr
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ Fix problem with notifd process killing on SALOME session shutdowning.
+
+2008-11-17 13:11 abd
+
+ * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
+
+ BUG 0020048
+ Problem with compilation on Win32 Platform.
+ Removing of invalid import of symbols from executable.
+
+2008-11-17 12:57 abd
+
+ * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
+
+ BUG 0020048
+ Problem with compilation on Win32 Platform.
+ Removing of invalid import of symbols from executable.
+
+2008-11-14 12:43 vsr
+
+ * src/Logger/Makefile.am:
+
+ 0020047: [win32] Logger/Makefile.am patch
+
+2008-11-14 12:39 vsr
+
+ * src/ResourcesManager/Makefile.am:
+
+ 0020046: [win32] ResourcesManager/Makefile.am patch
+
+2008-11-14 09:10 rnv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl_Tool.hxx:
+
+ Dump Python extension.
+
+2008-11-13 14:05 ouv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx:
+
+ Dump Python extension
+
+2008-11-12 18:01 adam
+
+ * salome_adm/cmake_files/FindPYTHON.cmake:
+
+ Use PYTHON_EXECUTABLE variable instead of python ...
+
+2008-11-12 17:19 ouv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx, idl/SALOMEDS.idl:
+
+ Dump Python extension
+
+2008-11-07 16:48 rnv
+
+ * src/KERNEL_PY/salome_notebook.py:
+
+ isVariable() method added in the notebook.
+
+2008-11-06 11:26 prascle
+
+ * src/: Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
+
+ merge from tag mergeto_V4_1_0_maintainance_20081106
+
+2008-11-06 07:00 ptv
+
+ * configure.ac:
+
+ add runIDLparser, bacause in current version bin directory has runIDLparser.in file
+
+2008-11-05 14:14 rnv
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_GenericVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericVariable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ 1. Dump notebook variables in the Study script.
+
+ 2. Use a std::vector for storage notebook vasiables instead of a std::map.
+
+2008-11-04 15:55 ribes
+
+ * src/: Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
+
+ - Adding to CatalogResources to new fields:
+ batchQueue -> specify the batch queue
+ userCommands -> adds these commands to the Salomé generated batch script
+
+2008-11-01 13:51 abd
+
+ * src/Launcher/SALOME_Launcher.hxx:
+
+ Fix compilation problem on Win32 platform.
+ fix method semantics: const CORBA::Long -> CORBA::Long
+
+2008-10-31 15:05 ribes
+
+ * Makefile.am, configure.ac, bin/appli_clean.sh,
+ idl/SALOME_ContainerManager.idl, resources/Makefile.am,
+ src/Makefile.am, src/Basics/Basics_DirUtils.cxx,
+ src/Basics/Basics_Utils.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/testDF.cxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx:
+
+ - mergefrom_BR_For40_DSC_10081031
+
+2008-10-31 14:34 ribes
+
+ * configure.ac, bin/launchConfigureParser.py, bin/runSalome.py:
+
+ [no log message]
+
+2008-10-31 14:32 ribes
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ Launcher/Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - Adding support gcc-4.3.2
+ - Bug-- in ContainerManager
+ - Adding support for prun machines
+
+2008-10-30 11:09 vsr
+
+ * src/TestContainer/Makefile.am:
+
+ Fix problem with 'make distcheck' step
+
+2008-10-30 10:51 abd
+
+ * bin/runSalome.py:
+
+ BUG 0020024: a --gdb-session option to runSalome ...
+ possibility for execution of xterm with gdb during salome starting.
+
+ fix error during merging
+
+2008-10-30 10:21 abd
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ BUG 0020024: a --gdb-session option to runSalome ...
+ possibility for execution of xterm with gdb during salome starting.
+
+2008-10-29 15:45 abd
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ BUG 0020024: a --gdb-session option to runSalome ...
+ possibility for execution of xterm with gdb during salome starting.
+
+2008-10-29 11:33 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ MPIContainer/MPIContainer_i.cxx,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ take account of Kernel_Utils
+
+2008-10-29 10:28 adam
+
+ * salome_adm/cmake_files/am2cmake.py:
+
+ [E.A.] Improve the way that multilines are detected. It was
+ \
+ , now it is \s*
+ to fix a Makefile.am with a line with
+
+ i.e. 0 or more space after the
+
+2008-10-29 10:24 adam
+
+ * salome_adm/cmake_files/: FindPYTHON.cmake, am2cmake.py:
+
+ [E.A.] Fix the python2.5 problem only.
+
+2008-10-29 10:08 abd
+
+ * src/: Container/Makefile.am, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/Test/Makefile.am, SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/Test/Makefile.am, UnitTests/Makefile.am:
+
+ Fix linkage problem under GCC 4:
+ addition of libSalomeHDFPersist.so
+
+2008-10-29 10:05 abd
+
+ * configure.ac, salome_adm/unix/make_common_starter.am:
+
+ BUG 0020023: A contribution to compile KERNEL with cmake
+ This integration adds support of cross-platform cmake compilation for KERNEL module.
+ WARNING. current version supports Python 2.5 only
+
+2008-10-29 09:52 mnt
+
+ * configure.ac:
+
+ Changing version to 5.1.0
+
+2008-10-29 09:12 mnt
+
+ * configure.ac:
+
+ Changing version to 4.1.4
+
+2008-10-28 15:18 abd
+
+ * build_cmake, salome_adm/Makefile.am,
+ salome_adm/cmake_files/FindBOOST.cmake,
+ salome_adm/cmake_files/FindCPPUNIT.cmake,
+ salome_adm/cmake_files/FindHDF5.cmake,
+ salome_adm/cmake_files/FindKERNEL.cmake,
+ salome_adm/cmake_files/FindLIBXML2.cmake,
+ salome_adm/cmake_files/FindOMNIORB.cmake,
+ salome_adm/cmake_files/FindPLATFORM.cmake,
+ salome_adm/cmake_files/FindPTHREADS.cmake,
+ salome_adm/cmake_files/FindPYTHON.cmake,
+ salome_adm/cmake_files/FindSWIG.cmake,
+ salome_adm/cmake_files/Makefile.am,
+ salome_adm/cmake_files/am2cmake.py,
+ salome_adm/cmake_files/install_python_from_idl.cmake:
+
+ BUG 0020023: A contribution to compile KERNEL with cmake
+ This integration adds support of cross-platform cmake compilation for KERNEL module.
+ WARNING. current version supports Python 2.5 only
+
+2008-10-28 12:27 rnv
+
+ * src/: SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx:
+
+ Start Dump Python extension task.
+
+2008-10-28 12:24 rnv
+
+ * src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/salome_notebook.py,
+ idl/SALOMEDS.idl:
+
+ Start Dump Python extension task.
+
+2008-10-28 12:20 rnv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_GenericVariable.cxx,
+ SALOMEDSImpl_GenericVariable.hxx,
+ SALOMEDSImpl_ScalarVariable.cxx, SALOMEDSImpl_ScalarVariable.hxx,
+ SALOMEDSImpl_Study.cxx:
+
+ Start Dump Python extension task.
+
+2008-10-24 15:16 prascle
+
+ * configure.ac, bin/Makefile.am:
+
+ PR: problem in merge configure.ac and make distcheck
+
+2008-10-24 11:20 prascle
+
+ * bin/Makefile.am:
+
+ PR: repair make distcheck
+
+2008-10-24 08:01 prascle
+
+ * Makefile.am, configure.ac, bin/appli_clean.sh,
+ idl/SALOME_ContainerManager.idl, resources/Makefile.am,
+ src/Makefile.am, src/Launcher/BatchTest.cxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ merge from branch BR41_BS tag after_merge_V4_1_0_maintainance_20080908
+
+2008-10-22 15:23 ribes
+
+ * bin/Makefile.am, bin/NSparam.py, bin/addToKillList.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py, bin/runSalome.py,
+ bin/salome_session.py, bin/salome_utilities.py,
+ bin/salome_utils.py, bin/virtual_salome.py,
+ salome_adm/unix/Makefile.am, src/Makefile.am,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Basics/Basics_DirUtils.cxx, src/Basics/Basics_DirUtils.hxx,
+ src/Basics/Basics_Utils.cxx, src/Basics/Basics_Utils.hxx,
+ src/Basics/Makefile.am, src/Basics/SALOME_Basics.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/Salome_file_i.cxx, src/DF/DF_definitions.hxx,
+ src/DF/testDF.cxx, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_User/DSC_Exception.hxx,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFexception.hxx,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
+ src/KERNEL_PY/batchmode_salome.py, src/Launcher/BatchTest.cxx,
+ src/Launcher/BatchTest.hxx, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/Launcher/SALOME_Launcher_defs.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/AddComponent.idl,
+ src/ModuleGenerator/tests/SubComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService_defs.hxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/ResourcesManager_Defs.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/Makefile.am,
+ src/Utils/OpUtil.hxx, src/Utils/SALOME_Utils.hxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/win32pm/setup.py,
+ src/win32pm/win32pm.c:
+
+ - merge + bugs for gcc-4.3.2
+
+2008-10-15 15:15 vsr
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx, DF/testDF.cxx:
+
+ Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
+
+2008-10-15 15:10 vsr
+
+ * src/: Container/Salome_file_i.hxx, Container/TestSalome_file.cxx,
+ Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx:
+
+ Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
+
+2008-10-15 15:04 vsr
+
+ * src/Basics/: Basics_DirUtils.cxx, Basics_Utils.cxx:
+
+ Issue 0020007: integrate patch for compilation with gcc 4.3.2 (from E.Adam)
+
+2008-10-15 12:41 vsr
+
+ * src/Utils/Utils_SALOME_Exception.hxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 12:24 vsr
+
+ * src/TestContainer/: TestContainer.cxx, TestLogger.cxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 12:19 vsr
+
+ * src/TestContainer/: SALOME_TestComponent.hxx,
+ SALOME_TestComponent_i.hxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 12:07 vsr
+
+ * src/SALOMEDSClient/Makefile.am:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 11:56 vsr
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 11:52 vsr
+
+ * src/NOTIFICATION_SWIG/Makefile.am:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 11:46 vsr
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Client.cxx, SALOME_ModuleCatalog_impl.cxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 11:26 vsr
+
+ * src/Logger/: Makefile.am, SALOME_Logger_Server.cxx,
+ SALOME_Logger_Server_main.cxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 11:11 vsr
+
+ * src/: LifeCycleCORBA/TestContainerManager.cxx,
+ Basics/Basics_DirUtils.cxx, Basics/Basics_DirUtils.hxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 09:32 vsr
+
+ * src/Launcher/: Launcher.cxx, Makefile.am:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 09:27 vsr
+
+ * src/HDFPersist/Makefile.am:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 09:23 vsr
+
+ * src/GenericObj/Makefile.am:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-15 09:19 vsr
+
+ * src/DF/testDF.cxx:
+
+ Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
+
+2008-10-10 12:14 abd
+
+ * src/: TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/TestContainer.cxx,
+ TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.am,
+ Utils/OpUtil.cxx, Utils/OpUtil.hxx, Utils/SALOME_Utils.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Mutex.cxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx,
+ Utils/Utils_Timer.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 12:11 abd
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 12:07 abd
+
+ * src/: Registry/RegistryConnexion.cxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_Defines.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/Test/Makefile.am, SALOMEDS/Test/TestSALOMEDS.cxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:59 abd
+
+ * src/: NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService_defs.hxx,
+ NamingService/ServiceUnreachable.hxx,
+ Notification/SALOME_NOTIFICATION.hxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:56 abd
+
+ * src/: LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:53 abd
+
+ * src/: DSC/DSC_User/Basic/basic_port_factory.cxx,
+ DSC/DSC_User/Basic/basic_port_factory.hxx,
+ DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFconvert.cc, HDFPersist/HDFconvert.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFinternalObject.cc,
+ Launcher/Launcher.cxx, Launcher/Makefile.am:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:49 abd
+
+ * src/: Communication/SALOMEMultiComm.cxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Communication.hxx,
+ Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/Salome_file_i.cxx, DF/DF_definitions.hxx,
+ DF/testDF.cxx, DSC/DSC_Basic/DSC_Basic.hxx,
+ DSC/DSC_User/DSC_Exception.hxx,
+ DSC/DSC_User/Superv_Component_i.cxx,
+ DSC/DSC_User/Superv_Component_i.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:40 abd
+
+ * src/Basics/: BasicsGenericDestructor.cxx,
+ BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
+ Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
+ Makefile.am, SALOME_Basics.hxx:
+
+ Merging from V4_1_0_maintainance for porting on Win32 Platform
+
+2008-10-10 11:14 abd
+
+ * src/Basics/Basics_DirUtils.cxx:
+
+ Fix win32 compilation problem
+
+2008-10-09 19:32 caremoli
+
+ * src/Container/: Container_i.cxx, SALOME_Container.py,
+ SALOME_ContainerPy.py:
+
+ CCAR: remove ambiguous prints and catch exceptions on destroy components
+
+2008-10-09 12:43 abd
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Remove temporary directory if it becomes empty after deleting of tmp script file
+
+2008-10-09 12:39 abd
+
+ * src/Basics/: Basics_DirUtils.cxx, Basics_DirUtils.hxx:
+
+ Implementations of common functions in Kernel_Utils namespace:
+ -GetDirByPath: parse in path string a valid directory name
+ -IsEmptyDir: detect of empty directory status
+
+2008-10-08 17:19 prascle
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ PR: This one must no be used very often...
+
+2008-10-08 17:13 prascle
+
+ * src/Basics/Basics_DirUtils.cxx:
+
+ PR: debug from A. BORODIN
+
+2008-10-07 20:08 caremoli
+
+ * src/: DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ NamingService/SALOME_NamingService_defs.hxx:
+
+ CCAR: small bugs after big changes in KERNEL
+
+2008-10-07 13:26 abd
+
+ * src/: Container/Component_i.cxx, HDFPersist/HDFinternalObject.cc,
+ Launcher/Launcher.cxx, ResourcesManager/ResourcesManager.cxx:
+
+ Fix compilation errors on Win32 platform
+
+2008-10-07 13:22 abd
+
+ * src/: Basics/Basics_DirUtils.cxx,
+ Communication/SALOMEMultiComm.cxx:
+
+ Fix compilation errors on Win32 platform
+
+2008-10-06 10:08 prascle
+
+ * src/Makefile.am:
+
+ PR: Needed by Bernard Secher. to check if any problem detected.
+
+2008-10-03 14:38 vsv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
+
+ Merge with VISU 2008
+
+2008-10-03 12:42 abd
+
+ * src/: Utils/Makefile.am, Utils/OpUtil.hxx,
+ Utils/SALOME_Utils.hxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Mutex.cxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx,
+ Utils/Utils_Timer.hxx, Notification/SALOME_NOTIFICATION.hxx,
+ DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 12:36 abd
+
+ * src/: TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/TestContainer.cxx,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 12:26 abd
+
+ * src/: SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMELocalTrace/utilities.h,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 12:25 abd
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+ Using std:string instead char* for fix bug of std::string::c_str() on local std::string object
+
+2008-10-03 12:22 abd
+
+ * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_Defines.hxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_Server.cxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, Test/Makefile.am, Test/TestSALOMEDS.cxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 12:18 abd
+
+ * src/: ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
+ Registry/RegistryService.hxx, Registry/SALOME_Registry.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/ResourcesManager_Defs.hxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 12:07 abd
+
+ * src/NamingService/: Makefile.am,
+ NamingService_WaitForServerReadiness.cxx,
+ SALOME_NamingService.hxx, SALOME_NamingService_defs.hxx,
+ ServiceUnreachable.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:46 abd
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:34 abd
+
+ * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
+ Launcher/Launcher.cxx, Launcher/Launcher.hxx,
+ Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
+ Launcher/SALOME_Launcher_defs.hxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, MPIContainer/MPIContainer_i.cxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:28 abd
+
+ * src/HDFPersist/: HDFascii.cc, HDFascii.hxx, HDFattribute.hxx,
+ HDFcontainerObject.hxx, HDFconvert.cc, HDFconvert.hxx,
+ HDFdataset.hxx, HDFexception.hxx, HDFexplorer.hxx, HDFexport.hxx,
+ HDFfile.cc, HDFfile.hxx, HDFgroup.hxx, HDFinternalObject.cc,
+ HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:23 abd
+
+ * src/: DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:15 abd
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx, Superv_Component_i.hxx,
+ Basic/basic_port_factory.cxx, Basic/basic_port_factory.hxx,
+ Datastream/DataIdFilter.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+ Removed "using namespace std" from header files.
+
+2008-10-03 11:12 abd
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/Salome_file_i.cxx, DF/DF_definitions.hxx,
+ DF/testDF.cxx, DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/DSC_Basic.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+ Using Basics instead Utils library.
+
+2008-10-03 11:08 abd
+
+ * src/Communication/: SALOMEMultiComm.cxx, SALOME_Comm_i.cxx,
+ SALOME_Comm_i.hxx, SALOME_Communication.hxx:
+
+ Win32 Porting.
+ Correction of Export/Import defines for Win32 platform.
+ Using WIN32 standard define instead WNT define of OpenCascade library.
+
+2008-10-03 10:59 abd
+
+ * src/Basics/: BasicsGenericDestructor.cxx,
+ BasicsGenericDestructor.hxx, Basics_DirUtils.cxx,
+ Basics_DirUtils.hxx, Basics_Utils.cxx, Basics_Utils.hxx,
+ Makefile.am, SALOME_Basics.hxx:
+
+ Win32 Porting.
+ Moved common functionality (independent on CORBA) from Utils package (dependent on CORBA) to Basics package and introduced Kernel_Utils namespace for use it
+
+2008-10-03 10:52 abd
+
+ * src/: Makefile.am, win32pm/setup.py, win32pm/win32pm.c:
+
+ Win32 Porting.
+ Adding of win32pm package for support of process management by PIDs on Win32 platform
+
+2008-10-03 10:50 abd
+
+ * bin/: Makefile.am, NSparam.py, addToKillList.py,
+ killSalomeWithPort.py, runSalome.py, salome_session.py,
+ salome_utilities.py, salome_utils.py:
+
+ Win32 Porting
+ Renaming of salome_utilities.py to salome_utils.py because it conflicts in name with SALOME_utilities.py from Utils package (Win32 python is not case sensitive for file system)
+
+2008-10-03 10:41 abd
+
+ * bin/killSalome.py:
+
+ Win32 Porting
+ Replace symbol 'd' by "####" because first conflicts with other symbols in directory path on Win32 system
+
+2008-10-01 13:57 secher
+
+ * src/Makefile.am:
+
+ who have commented this lines?
+
+2008-10-01 05:35 vsr
+
+ * src/HDFPersist/: HDFattrWrite.c:
+
+ Issue 0019992: Compile KERNEL in -Werror mode
+
+2008-09-30 13:31 vsr
+
+ * src/ResourcesManager/: ResourcesManager.cxx:
+
+ Issue 0019990: Compile KERNEL in -Werror mode
+
+2008-09-29 11:29 secher
+
+ * bin/shutdownSalome.py:
+
+ correct conflict
+
+2008-09-26 17:16 caremoli
+
+ * src/: Container/Component_i.cxx,
+ Container/SALOME_Component_i.hxx, DSC/DSC_Basic/DSC_i.cxx,
+ DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_User/Superv_Component_i.cxx,
+ DSC/DSC_User/Superv_Component_i.hxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx:
+
+ CCAR :
+ INTERFACE CHANGE : add a boolean parameter regist with default value true to one Component constructor
+
+ It was needed to avoid calling registry two times for a python superv_component
+ Registry was called in the python constructor and in the corba proxy (class PySupervCompo)
+ that is used to implement DSC ports for python component.
+ As regist value is true by default there is no impact on other parts of KERNEL or of modules.
+
+2008-09-26 17:03 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: catch CORBA::Exception in shutdownServers when trying to _narrow the container
+ (_narrow can throw a CORBA::TRANSIENT in some cases)
+ shutdown did not go to the end when a container was killed before without deregistering
+ in naming service
+
+2008-09-26 16:57 caremoli
+
+ * src/ResourcesManager/: Makefile.am,
+ SALOME_ResourcesCatalog_Handler.cxx, SALOME_ResourcesManager.cxx:
+
+ CCAR: initialize isMPI and nb_component_nodes in GetMachineParameters
+ add an entry with the real machine name when name is "localhost"
+
+2008-09-26 16:49 caremoli
+
+ * src/: Communication_SWIG/libSALOME_Comm.i,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ NOTIFICATION_SWIG/NOTIFICATION.i:
+
+ CCAR: add autodocumentation to swig modules (%feature("autodoc","1"))
+ et remove problems with overloaded methods (typecheck typemap with precedence)
+
+2008-09-26 09:54 caremoli
+
+ * src/ModuleGenerator/: IDLparser.py, testIDLparser.in,
+ tests/AddComponent.idl, tests/SubComponent.idl, tests/test1.sh,
+ tests/test1b.sh, tests/test2.sh, tests/test3.sh, tests/test4.sh,
+ tests/test5.sh:
+
+ CCAR: update IDLparser.py with developments for YACS (mainly, DataTypes description
+ and new Superv_Component interface for SALOME components)
+ Not all definitions are converted to DataTypes YACS, only local definitions (main file)
+ that are :
+ - unbounded sequences
+ - non recursive structs (and non forward ones also)
+ - interfaces that are not derivation from SALOME components
+
+ The tests have been updated :
+ - add some idl files in tests to be able to run tests only in KERNEL_BUILD
+ - adjust some paths (very old SALOME 1 ??) to run with KERNEL only
+
+2008-09-26 09:42 caremoli
+
+ * bin/virtual_salome.py:
+
+ CCAR: add idl/salome directory in SALOME application generation
+
+2008-09-25 13:32 vsr
+
+ * src/KERNEL_PY/: batchmode_salome.py:
+
+ 0019985: comment print myStudyId in batchmode_salome.py
+
+2008-09-25 13:14 vsr
+
+ * salome_adm/unix/: Makefile.am:
+
+ 0019984: add -f option to salome_adm/unix/Makefile.am
+
+2008-09-19 19:17 caremoli
+
+ * bin/virtual_salome.py:
+
+ CCAR: in Salome application generation, try to detect the python version
+ used for modules and application installation independently from the version
+ of the python interpreter used.
+
+2008-09-18 13:48 mkr
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ TestRecorder support.
+
+2008-09-18 05:12 vsr
+
+ * doc/salome/tui/Makefile.am:
+
+ Implement 'make dist' and 'make distcheck' steps
+
+2008-09-15 13:39 akl
+
+ * src/: Communication/MatrixClient.hxx,
+ Communication/MultiCommException.hxx,
+ Communication/ReceiverFactory.hxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.hxx, Communication/SenderFactory.hxx,
+ Container/Container_init_python.hxx,
+ Container/SALOME_Component_i.hxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.hxx, Container/Salome_file_i.hxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ DSC/DSC_Basic/DSC_Callbacks.hxx, DSC/DSC_Basic/DSC_i.hxx,
+ DSC/DSC_Basic/PortProperties_i.hxx, DSC/DSC_User/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ DSC/DSC_User/Datastream/Calcium/calcium.h,
+ DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ NOTIFICATION_SWIG/Makefile.am, Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
+ SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx, Utils/OpUtil.hxx,
+ Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Mutex.cxx:
+
+ Integration of 0019971: A patch for cmake compilation.
+
+2008-09-15 12:39 secher
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ conflict not detected by tkcvs!!!!
+
+2008-09-11 05:33 vsr
+
+ * salome_adm/unix/config_files/check_htmlgen.m4:
+
+ Implement 'make dist' and 'make distcheck' steps support
+
+2008-09-09 15:53 vsv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ [no log message]
+
+2008-09-09 15:02 secher
+
+ * src/: Launcher/Launcher.cxx,
+ ResourcesManager/ResourcesManager.cxx:
+
+ manage messages
+
+2008-09-08 16:28 secher
+
+ * Makefile.am, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
+ bin/runSalome.py, bin/salome_session.py, bin/salome_utilities.py,
+ bin/setenv.py, idl/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.hxx,
+ src/HDFPersist/HDFobjectIdentify.c, src/HDFPersist/hdfi.h,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/Logger/SALOME_Trace.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Test/UtilsTest.cxx:
+
+ after merge with V4_1_0_maintainance
+
+2008-09-08 08:55 vsr
+
+ * src/ResourcesManager/: ResourcesManager.cxx:
+
+ Remove debug output from terminal. Avoid using "utilities.h" in standalone (non-CORBA) classes (requested by B.Sécher via mail)
+
+2008-09-08 08:35 vsr
+
+ * src/Launcher/: Launcher.cxx, SALOME_LauncherServer.cxx:
+
+ Remove debug output from terminal. Avoid using "utilities.h" in standalone (non-CORBA) classes (requested by B.Sécher via mail)
+
+2008-09-05 13:27 vsr
+
+ * src/: ModuleGenerator/Makefile.am, NOTIFICATION_SWIG/Makefile.am:
+
+ Improve build procedure to support 'make dist' and 'make distcheck' steps
+
+2008-09-05 13:24 vsr
+
+ * doc/salome/tui/Makefile.am, idl/Makefile.am,
+ salome_adm/unix/config_files/Makefile.am, src/Makefile.am,
+ src/Communication_SWIG/Makefile.am,
+ src/DSC/DSC_Python/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am:
+
+ Improve build procedure to support 'make dist' and 'make distcheck' steps
+
+2008-09-05 13:21 vsr
+
+ * doc/: Makefile.am, salome/Makefile.am:
+
+ Improve build procedure to support 'make dist' and 'make distcheck' steps
+
+2008-09-05 13:06 vsr
+
+ * src/HDFPersist/HDFobject.hxx:
+
+ Issue 0019963 : replace <HDFexport.hxx> byq "HDFexport.hxx"
+
+2008-09-05 13:03 vsr
+
+ * src/HDFPersist/: HDFexception.hxx, HDFobject.hxx:
+
+ Issue 0019963 : replace <HDFexport.hxx> by "HDFexport.hxx"
+
+2008-09-05 08:26 vsr
+
+ * src/Communication/: Receiver.cxx, libSALOME_Comm.i:
+
+ Remove obsolete files
+
+2008-09-05 08:23 vsr
+
+ * salome_adm/unix/config_files/: ac_cc_warnings.m4,
+ check_Salome.m4, check_java.m4:
+
+ Remove obsolete files
+
+2008-09-05 08:20 vsr
+
+ * src/: SALOMEDS/Makefile.am, SALOMEDS/README_attributes,
+ SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx, Utils/SalomeString.hxx,
+ Utils/Utils_SignalsHandler.h,
+ ModuleCatalog/SALOME_TestModuleCatalog.py:
+
+ Remove obsolete files
+
+2008-09-04 16:10 vsr
+
+ * resources/Makefile.am:
+
+ Remove obsolete files
+
+2008-09-04 15:45 vsr
+
+ * configure.ac:
+
+ Remove obsolete files
+
+2008-09-04 15:43 abd
+
+ * src/: Launcher/BatchTest.cxx, Launcher/BatchTest.hxx,
+ Launcher/Launcher.cxx, Launcher/Launcher.hxx,
+ Launcher/Makefile.am, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_Launcher_defs.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ Utils/Utils_ExceptHandlers.hxx:
+
+ Porting functionality on Win32 Platform
+
+2008-09-04 13:30 vsr
+
+ * salome_adm/unix/: Doxyfile, F77config.h.in, sstream.in:
+
+ Remove obsolete files
+
+2008-09-04 13:07 vsr
+
+ * resources/: Tools_en.xml, Tools_fr.xml, config:
+
+ Remove obsolete files
+
+2008-09-04 10:15 vsr
+
+ * bin/Makefile.am, bin/runIDLparser, bin/runIDLparser.in,
+ bin/salome_utilities.py, configure.ac:
+
+ Improve build procedure to support 'make dist' and 'make distcheck' steps
+
+2008-09-02 14:38 ribes
+
+ * Makefile.am, bin/killSalome.py, bin/runSalome.py, bin/setenv.py,
+ idl/Makefile.am, salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/hdfi.h, src/Launcher/Launcher.cxx,
+ src/Launcher/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/Logger/SALOME_Trace.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Registry/RegistryService.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Test/UtilsTest.cxx:
+
+ - mergefrom_V4_1_0_maintainance_20080901
+
+2008-08-29 08:33 dmv
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Bug IPAL19893 4.x: debug information is in terminal
+
+2008-08-28 11:39 abd
+
+ * src/ResourcesManager/ResourcesManager_Defs.hxx:
+
+ Fix compilation problems on Win32 platform
+
+2008-08-28 11:18 abd
+
+ * bin/NSparam.py, bin/addToKillList.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/runSalome.py,
+ bin/salome_session.py, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/Salome_file_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMELocalTrace/utilities.h, src/Utils/OpUtil.cxx,
+ src/Utils/OpUtil.hxx, bin/Makefile.am, bin/salome_utils.py:
+
+ Fix compilation problems on Win32 platform
+
+2008-08-26 12:53 dmv
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Bug IPAL19893 4.x: debug information is in terminal.
+
+2008-08-25 16:56 vsv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
+
+ [no log message]
+
+2008-08-15 11:52 dmv
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Bug IPAL19893 4.x: debug information is in terminal.
+
+2008-08-15 11:42 dmv
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ Rollback a part of integration to BR_QT4_Dev2 11.08.2008:
+ IPAL 19893: debug information is in terminal.
+
+2008-08-15 11:24 dmv
+
+ * bin/: envSalome.py, setenv.py:
+
+ Rollback a part of integration to BR_QT4_Dev2 11.08.2008:
+ Bug IPAL20202 Qt4 porting: it is impossible to start application with "-t" option.
+
+2008-08-12 12:43 dmv
+
+ * bin/setenv.py:
+
+ 0019954: Pb in setenv.py
+
+2008-08-12 12:39 dmv
+
+ * bin/setenv.py:
+
+ 0019954: Pb in setenv.py
+
+2008-08-11 12:16 dmv
+
+ * src/: Launcher/SALOME_LauncherServer.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ Bug IPAL19893 4.x: debug information is in terminal.
+
+2008-08-11 10:39 dmv
+
+ * bin/: envSalome.py, setenv.py:
+
+ Bug IPAL20202 Qt4 porting: it is impossible to start application with "-t" option.
+
+2008-08-08 09:18 abd
+
+ * src/win32pm/: setup.py, win32pm.c:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-08 09:11 abd
+
+ * src/: Container/Container_i.cxx, Container/SALOME_Container.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-08 09:07 abd
+
+ * src/: SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, Utils/OpUtil.cxx, Utils/OpUtil.hxx:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-08 08:53 abd
+
+ * src/SALOMEDS/: SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_StudyManager_i.cxx:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-08 08:49 abd
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NamingService/SALOME_NamingService.hxx:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-08 08:41 abd
+
+ * src/HDFPersist/: HDFascii.cc, HDFascii.hxx, HDFattribute.hxx,
+ HDFcontainerObject.hxx, HDFconvert.hxx, HDFdataset.hxx,
+ HDFexception.hxx, HDFexplorer.hxx, HDFexport.hxx, HDFfile.hxx,
+ HDFgroup.hxx, HDFinternalObject.hxx, HDFobject.cc, HDFobject.hxx:
+
+ Merging with BR_WPdev_For_5_0
+
+2008-08-04 14:54 abd
+
+ * src/win32pm/: setup.py, win32pm.c:
+
+ Add win32pm package to the KERNEL sources
+
+2008-08-01 09:21 vsr
+
+ * salome_adm/unix/config_files/: check_cas.m4:
+
+ Fix error in check CASCADE procedure (in AC_TRY_LINK)
+
+2008-07-31 06:01 vsr
+
+ * bin/: runSalome.py:
+
+ Fix issue 0019952: problem with symbolic link creation
+
+2008-07-31 05:47 vsr
+
+ * bin/: killSalome.py:
+
+ Fix pb with killSalome script: exception is raised at os.listdir() if /tmp/logs/${USER} directory does not exist.
+
+2008-07-30 14:05 ouv
+
+ * bin/setenv.py:
+
+ Feature 0016551: EDF PAL 501: To add a second trihedron always visible and with constant size
+
+2008-07-29 12:04 vsr
+
+ * Makefile.am, bin/killSalome.py, bin/nameserver.py, bin/runNS.py,
+ idl/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/hdfi.h, src/Launcher/Launcher.cxx,
+ src/Launcher/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/Logger/SALOME_Trace.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Registry/RegistryService.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Test/UtilsTest.cxx:
+
+ merge from V4_1_0_maintainance branch (from tag mergeto_BR_QT4_Dev2_29Jul08)
+
+2008-07-28 09:45 dmv
+
+ * src/Launcher/: Launcher.cxx, Makefile.am:
+
+ Bug IPAL19893 4.x: debug information is in terminal.
+
+2008-07-21 14:42 dmv
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Bug IPAL19893 4.x: debug information is in terminal.
+
+2008-07-18 15:07 ribes
+
+ * src/: Container/Salome_file_i.hxx, Container/TestSalome_file.cxx,
+ DF/testDF.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx:
+
+ - Patch for GCC 4.3
+
+2008-07-18 14:58 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ - Use _DEBUG and not _MYDEBUG
+
+2008-07-18 11:16 ribes
+
+ * configure.ac, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
+ bin/runSalome.py, bin/salome_session.py, bin/salome_utilities.py,
+ bin/setenv.py, bin/shutdownSalome.py,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
+ salome_adm/unix/Makefile.am,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/Launcher/Launcher.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
+
+ - Boucherie
+
+2008-07-18 10:36 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ - Replace MYDEBUG by DEBUG
+
+2008-07-17 13:09 jfa
+
+ * Makefile.am, idl/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/Salome_file_i.cxx, src/DF/testDF.cxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/HDFPersist/HDFfile.cc, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/hdfi.h,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/Logger/SALOME_Trace.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Registry/RegistryService.cxx, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Test/UtilsTest.cxx:
+
+ Bug 0019869: Compile KERNEL in Werror mode. Integrating KERNEL_SRC_20080710.patch.
+
+2008-07-17 08:28 abd
+
+ * src/: Container/Container_i.cxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/Salome_file_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.cxx, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFascii.hxx, HDFPersist/HDFattribute.hxx,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.hxx,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFexception.hxx,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFexport.hxx,
+ HDFPersist/HDFfile.hxx, HDFPersist/HDFgroup.hxx,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.cc,
+ HDFPersist/HDFobject.hxx, Launcher/BatchLight_BatchManager.cxx,
+ Launcher/BatchLight_BatchManager_PBS.cxx,
+ Launcher/BatchLight_BatchManager_SLURM.cxx,
+ Launcher/BatchLight_Job.cxx, Launcher/SALOME_Launcher.cxx,
+ Launcher/SALOME_Launcher.hxx, Launcher/SALOME_LauncherServer.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, Utils/OpUtil.cxx, Utils/OpUtil.hxx:
+
+ Executable version on Windows Platform
+
+2008-07-09 06:44 vsr
+
+ * bin/: killSalome.py, nameserver.py, runNS.py:
+
+ Issue 0019872: fix pb of killing SALOME processes (files in /tmp/logs/${USER} directory are removed unconditionally).
+
+2008-07-08 13:20 vsr
+
+ * salome_adm/unix/Makefile.am:
+
+ Improve Makefile: regenerate SALOMEconfig.h file when SALOMEconfig.ref.in is changed
+
+2008-07-08 09:44 vsr
+
+ * configure.ac:
+
+ improve configure.ac : XVERSION
+
+2008-07-08 09:42 vsr
+
+ * configure.ac, src/KERNEL_PY/salome_test.py:
+
+ Merge from BR_QT4_Dev1
+
+2008-07-08 08:25 caremoli
+
+ *
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx:
+
+ CCAR: remove wakeupWaiting in CalciumGenericProvidesPort. It's already done in disconnect
+
+2008-07-08 05:26 vsr
+
+ * configure.ac:
+
+ Fix pb of reconfigure (error on re-generating top-level Makefile)
+
+2008-07-07 14:51 caremoli
+
+ * src/DSC/DSC_Python/calcium.i:
+
+ CCAR: improve python wrapping for DSC components : add is_connected and
+ convert CORBA C++ exception to CORBA python exception
+
+2008-07-07 14:39 caremoli
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ CCAR: restore previous behaviour : if a component has no catalog but a python
+ module or a dynamic lib is conforming accept it.
+
+2008-07-07 12:31 vsr
+
+ * bin/salome_utilities.py:
+
+ Issue 0019916: avoid deprecation warning
+
+2008-07-07 12:19 vsr
+
+ * bin/: addToKillList.py, killSalome.py, killSalomeWithPort.py,
+ salome_utilities.py:
+
+ * Issue 0019872: use dot-prefixed pidict files
+
+2008-07-07 11:50 dmv
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Bug IPAL18631 REGRESS of logger - nothing apperared in log file in the IAPP-002 test scenario checkpoints
+
+2008-07-07 11:11 dmv
+
+ * src/ResourcesManager/ResourcesManager.cxx:
+
+ Bug IPAL18631 REGRESS of logger - nothing apperared in log file in the IAPP-002 test scenario checkpoints
+
+2008-07-07 09:55 vsr
+
+ * bin/: NSparam.py, addToKillList.py, envSalome.py, killSalome.py,
+ killSalomeWithPort.py, runSalome.py, salome_session.py,
+ salome_utilities.py, setenv.py:
+
+ * Issue 0019872: use dot-prefixed pidict files
+ * Improve other SALOME scripts
+
+2008-07-03 09:25 vsr
+
+ * configure.ac, bin/Makefile.am:
+
+ Fix a bug of configure step: if scripts sources are changed in bin directory they are not installed by 'make install' step; instead their copies in a build directory are taken.
+
+2008-07-02 12:58 vsr
+
+ * bin/salome_utilities.py:
+
+ Improve SALOME logger: customize log file name (add port, user and host ids) to avoid problems with using the same log file name by different SALOME sessions.
+
+2008-07-02 12:58 vsr
+
+ * bin/Makefile.am:
+
+ Improve SALOME logger: customize log file name (add port, user and host ids) to avoid problems with using the same log file name by different SALOME sessions (add missing salome_utilities.py script to the Makefile).
+
+2008-06-30 16:08 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/: CalciumCxxInterface.hxx,
+ CalciumInterface.hxx, CalciumPortTraits.hxx, Copy2CorbaSpace.hxx:
+
+
+ CORRECTIONS API C++ UTILISATEUR
+
+2008-06-30 16:03 fayolle
+
+ *
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx:
+
+ [no log message]
+
+2008-06-27 16:03 secher
+
+ * src/: Launcher/BatchTest.cxx, Launcher/Launcher.cxx,
+ Launcher/SALOME_Launcher.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ add Sun Grid Engine batch manager
+
+2008-06-23 09:52 secher
+
+ * src/: Launcher/BatchTest.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ a few little debugging
+
+2008-06-19 12:42 dmv
+
+ * src/SALOMELocalTrace/: LocalTraceBufferPool.hxx, utilities.h:
+
+ IPAL 18631 Remove Extra Messages from the Terminal in case of Release Mode
+
+2008-06-19 11:12 vsr
+
+ * bin/: runSalome.py, salome_utilities.py:
+
+ Improve SALOME logger: customize log file name (add port, user and host ids) to avoid problems with using the same log file name by different SALOME sessions.
+
+2008-06-08 15:18 caremoli
+
+ * bin/shutdownSalome.py, src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
+
+ CCAR: solve some problems during shutdown
+ - singletons are deleted at exit (atexit function is called at the beginning of programs)
+ but order is important. Trace singleton must be destroyed last because MESSAGE
+ and others are called in destructor of other singletons.
+ So I have enforced local trace initialization in ATEXIT_ class from Utils directory
+
+ - Improve Registry shutdown (called _remove_ref to delete RegistryService object)
+ - add a delay between shutdown servers and kill omninames in shutdownSalome.py
+
+2008-06-06 19:25 caremoli
+
+ * src/Basics/BasicsGenericDestructor.cxx:
+
+ CCAR: correction of DESTRUCTOR_OF in the end of Registry Server (seems to recurse ??)
+
+2008-06-06 17:49 caremoli
+
+ * src/Container/: SALOME_ComponentPy.py, SALOME_Container.py:
+
+ CCAR: remove thrown exceptions in shutdown servers with python components
+
+2008-06-06 15:57 caremoli
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerPy.py,
+ DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ NamingService/SALOME_NamingServicePy.py:
+
+ CCAR: some corrections in :
+ - disconnection of CALCIUM ports
+ - shutdown of Python container
+ - shutdown of C++ container
+ - launching of standalone component
+
+2008-06-06 13:14 vsr
+
+ * bin/nameserver.py:
+
+ Issue 19871: add missing path to omniNameErrors.log file
+
+2008-06-05 13:47 secher
+
+ * configure.ac, bin/runSalome.py, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_ModuleCatalog.idl,
+ salome_adm/unix/config_files/check_lsf.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ after merge with V4_1_3rc1
+
+2008-06-05 10:18 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: Patch from Bernard Secher
+
+2008-06-04 18:48 prascle
+
+ * bin/nameserver.py, bin/orbmodule.py, bin/runSalome.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ PR: use of verbose test for Python prints
+
+2008-06-04 12:43 secher
+
+ * Makefile.am, configure.ac, resources/Makefile.am,
+ src/Makefile.am, src/Launcher/Makefile.am,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx:
+
+ add --with-onlylauncher configure option to build kernel with only Batch, ResourceManager and Launcher
+
+2008-06-03 15:25 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ improvement of API launcher
+
+2008-06-03 10:39 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Issue 0019776: fix pb of running SALOME after installing modules in 'without GUI' mode.
+
+2008-06-02 08:55 mnt
+
+ * configure.ac:
+
+ Changing version to 4.1.3
+
+2008-06-01 18:50 caremoli
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/SALOME_Component_i.hxx, DSC/DSC_Basic/DSC_i.cxx,
+ DSC/DSC_Basic/DSC_i.hxx, DSC/DSC_User/Superv_Component_i.cxx,
+ DSC/DSC_User/Superv_Component_i.hxx,
+ DSC/DSC_User/Datastream/Calcium/Calcium.cxx:
+
+ CCAR: add an experimental feature : standalone component
+ A standalone component is implemented in an executable that is launched
+ by the container. The create_component_instance has been modified : after
+ trying to load a shared lib or a python module, it tries to launch the
+ executable component.exe.
+
+ This development is between tags CCARexeccompoStart and CCARexeccompoEnd
+
+2008-05-30 17:03 caremoli
+
+ * bin/runSalome.py:
+
+ CCAR: revert setting PYTHONINSPECT to the end of runSalome (must not be set
+ when launching servers)
+
+2008-05-30 11:02 caremoli
+
+ * idl/SALOME_ModuleCatalog.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ CCAR: add traces to CALCIUM ports, some debug in ModuleCatalog
+ add CEXE option to component catalog to be able to specify a specific container
+ executable for special component
+ some debug in python container
+
+2008-05-29 14:15 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_Launcher_Handler.cxx,
+ src/Launcher/SALOME_Launcher_Handler.hxx,
+ src/Launcher/SALOME_Launcher_Parser.cxx,
+ src/Launcher/SALOME_Launcher_Parser.hxx:
+
+ first version of launching executable from xml file
+
+2008-05-29 12:13 prascle
+
+ * bin/config_appli.xml, bin/shutdownSalome.py,
+ idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/BatchTest.cxx, src/Launcher/BatchTest.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
+ src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ merge from branch BR_For40_DSC tag mergeto_V4_1_0_maintainance_29may08
+
+2008-05-28 14:30 ribes
+
+ * src/Launcher/: BatchLight_BatchTest.cxx,
+ BatchLight_BatchTest.hxx, BatchTest.cxx, BatchTest.hxx,
+ Makefile.am, SALOME_Launcher.cxx, SALOME_Launcher.hxx:
+
+ - BatchLight_BatchTest -> BatchTest
+
+2008-05-28 09:51 ribes
+
+ * bin/config_appli.xml, bin/shutdownSalome.py,
+ idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
+ src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/ResourcesManager.cxx,
+ src/ResourcesManager/ResourcesManager.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ - New Launcher with some patches for EDF PBS configuration
+ - Batch resources are now in a different list
+
+2008-05-23 16:19 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ - Bu when using SALOME_BATCH
+
+2008-05-23 09:25 secher
+
+ * bin/shutdownSalome.py, src/Launcher/Launcher.cxx:
+
+ use of new killing method
+
+2008-05-22 17:27 caremoli
+
+ * bin/runSalome.py, salome_adm/unix/config_files/check_lsf.m4,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/NOTIFICATION_SWIG/Makefile.am:
+
+ CCAR: small modifications on LSF Batch class and on --pinter arg
+
+2008-05-22 11:22 secher
+
+ * configure.ac, bin/setenv.py, bin/virtual_salome.py,
+ doc/salome/salome_application.dox, idl/SALOME_Session.idl,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumE.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ merging with V4_1_0_maintainenance
+
+2008-05-22 10:23 jfa
+
+ * salome_adm/unix/config_files/check_withihm.m4:
+
+ Implement --with[out]-gui option for SMESH plugins.
+
+2008-05-21 18:34 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/calciumf.c:
+
+ [no log message]
+
+2008-05-21 18:30 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Copy2UserSpace.hxx,
+ calciumf.c:
+
+ [no log message]
+
+2008-05-21 16:58 fayolle
+
+ * src/DSC/DSC_User/Datastream/: Calcium/Calcium.c,
+ Calcium/CalciumCxxInterface.hxx,
+ Calcium/CalciumGenericProvidesPort.hxx,
+ Calcium/CalciumInterface.hxx, Calcium/CalciumPortTraits.hxx,
+ Calcium/Copy2CorbaSpace.hxx, Calcium/Copy2UserSpace.hxx,
+ Calcium/Makefile.am, Calcium/calcium.h, Calcium/calciumE.h,
+ CorbaTypeManipulator.hxx:
+
+ [no log message]
+
+2008-05-21 16:00 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Launcher/Launcher.cxx,
+ src/Launcher/Launcher.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ management of batch parameters like walltime, maxramsize and batch directory
+
+2008-05-20 12:10 ribes
+
+ * src/Launcher/: BatchLight_BatchManager.cxx,
+ BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
+ BatchLight_BatchTest.cxx, BatchLight_BatchTest.hxx,
+ BatchLight_Job.cxx, BatchLight_Job.hxx:
+
+ - Adding home to PBS command file
+
+2008-05-20 11:24 ribes
+
+ * src/Launcher/: BatchLight_BatchTest.cxx,
+ BatchLight_BatchTest.hxx:
+
+ - Bug--, set home to the PBS file
+
+2008-05-20 10:15 jfa
+
+ * idl/SALOME_Session.idl:
+
+ NPAL19734: Missing method in SALOME_Session.idl
+
+2008-05-15 16:26 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ - Separate batch test from CORBA method submitSalomeJob
+ - Add testBatch to Launcher
+
+2008-05-15 14:36 vsr
+
+ * src/SALOMEDS/Test/Makefile.am:
+
+ Fix a compilation pb on SL4.2
+
+2008-05-14 17:05 mnt
+
+ * configure.ac:
+
+ Update Salome version to 3.2.10
+
+2008-05-14 16:55 ribes
+
+ * configure.ac, bin/setenv.py, bin/virtual_salome.py,
+ doc/salome/salome_application.dox,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ Merger branche V4_1_0_maintainance
+
+2008-05-14 16:14 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Handler.hxx, SALOME_ResourcesManager.cxx,
+ SALOME_ResourcesManager.hxx:
+
+ Patch for bach clusters
+
+2008-05-14 15:42 secher
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/Launcher.cxx, src/Launcher/Launcher.hxx,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx:
+
+ first version of launcher with use of inified batchmanager
+
+2008-05-13 15:17 vsr
+
+ * configure.ac:
+
+ Change version to 3.2.10
+
+2008-05-08 10:42 abd
+
+ * src/: Container/Container_i.cxx, Launcher/BatchLight_Job.cxx,
+ Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ Utils/OpUtil.cxx, Utils/OpUtil.hxx:
+
+ Correct compilation under Win32 platform
+
+2008-04-28 15:41 mnt
+
+ * configure.ac:
+
+ Changing version number to 5.0.0
+
+2008-04-28 08:18 abd
+
+ * configure.ac, bin/Makefile.am, bin/appli_clean.sh,
+ bin/appli_gen.py, bin/appli_install.sh,
+ bin/launchConfigureParser.py, bin/runSalome.py,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx, src/DF/Makefile.am,
+ src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/KERNEL_PY/Makefile.am,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/Test/Makefile.am, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/TestContainer/Makefile.am, src/Utils/Makefile.am,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Test/Makefile.am:
+
+ Correct compilation on Linux
+
+2008-04-25 15:43 secher
+
+ * src/Launcher/: Launcher.cxx, Makefile.am, MpiImpl.cxx,
+ MpiImpl.hxx:
+
+ add new classes in batch manager to emulate PBS and LSF clients
+
+2008-04-25 11:49 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ Bug IPAL19426, fixed methods Save/Load
+
+2008-04-25 10:03 vsr
+
+ * configure.ac:
+
+ Change version number : 5.0.0
+
+2008-04-24 12:55 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ BugID: IPAL19426 Fixed methods Save/Load
+
+2008-04-24 12:04 secher
+
+ * src/: Launcher/BatchLight_BatchManager.cxx,
+ Launcher/BatchLight_BatchManager.hxx,
+ Launcher/BatchLight_BatchManager_PBS.cxx,
+ Launcher/BatchLight_BatchManager_PBS.hxx,
+ Launcher/BatchLight_BatchManager_SLURM.cxx,
+ Launcher/BatchLight_BatchManager_SLURM.hxx,
+ Launcher/BatchLight_Job.cxx, Launcher/BatchLight_Job.hxx,
+ Launcher/Launcher.cxx, Launcher/Launcher.hxx,
+ Launcher/Makefile.am, Launcher/MpiImpl.cxx, Launcher/MpiImpl.hxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
+
+ move buildSalomeCouplingScript from BatchLigth classes to Launcher
+
+2008-04-21 13:24 abd
+
+ * src/: HDFPersist/HDFascii.cc,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Fix run-time errors during debug of Windows version
+
+2008-04-21 13:23 abd
+
+ * src/DSC/DSC_Basic/ConnectionManager_i.cxx:
+
+ Windows version debug
+
+2008-04-21 13:22 abd
+
+ * src/DF/DF_Attribute.cxx:
+
+ Infinite circle during work on windows version
+
+2008-04-18 16:11 prascle
+
+ * doc/salome/salome_application.dox:
+
+ PR: some doc corrections
+
+2008-04-18 12:00 secher
+
+ * src/Launcher/: BatchLight_BatchManager.cxx,
+ BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
+ BatchLight_BatchManager_PBS.hxx,
+ BatchLight_BatchManager_SLURM.cxx,
+ BatchLight_BatchManager_SLURM.hxx, BatchLight_Job.cxx,
+ BatchLight_Job.hxx, Launcher.cxx, Launcher.hxx, Makefile.am,
+ MpiImpl.cxx, MpiImpl.hxx, SALOME_Launcher.cxx,
+ SALOME_Launcher.hxx:
+
+ create a pure c++ launcher implementation
+
+2008-04-17 10:03 secher
+
+ * src/: Container/Makefile.am,
+ Container/SALOME_ContainerManager.cxx,
+ LifeCycleCORBA/TestContainerManager.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/ResourcesManager.cxx,
+ ResourcesManager/ResourcesManager.hxx,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ create a pure c++ resourcesManager implementation
+
+2008-04-17 00:46 prascle
+
+ * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
+ SALOME_LifeCycleCORBA.hxx:
+
+ PR: bug 18556
+
+2008-04-16 14:51 mnt
+
+ * src/KERNEL_PY/salome_shared_modules.py:
+
+ Update for install Salome libraries to lib folder instead of lib64 on 64-bit platform
+
+2008-04-16 14:49 mnt
+
+ * salome_adm/unix/config_files/ac_linker_options.m4:
+
+ Update for install Salome libraries to lib folder instead of lib 64 on 64-bit platform
+
+2008-04-16 14:46 mnt
+
+ * bin/: setenv.py, virtual_salome.py:
+
+ Update for install Salome libraries on 64-bit platform to lib folder instead of lib64
+
+2008-04-16 10:05 mnt
+
+ * configure.ac:
+
+ Changing version to 4.1.2
+
+2008-04-15 19:02 caremoli
+
+ * bin/appliskel/runRemote.sh, resources/KERNELCatalog.xml.in,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/Salome_file_i.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am:
+
+ CCAR: update from maintenance branch
+
+2008-04-11 15:40 secher
+
+ * bin/config_appli.xml, src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ move building command to launch containers from resources manager to containers manager
+
+2008-04-04 14:22 ouv
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Roll back to revision 1.7.8.1
+
+2008-04-04 12:38 abd
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ first executable version
+
+2008-04-04 12:30 abd
+
+ * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFconvert.hxx,
+ HDFPersist/HDFexport.hxx, HDFPersist/HDFobject.cc,
+ Launcher/BatchLight_BatchManager.cxx,
+ Launcher/BatchLight_BatchManager_PBS.cxx,
+ Launcher/BatchLight_BatchManager_SLURM.cxx,
+ Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx,
+ Launcher/SALOME_LauncherServer.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Defines.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx:
+
+ first executable version
+
+2008-04-04 12:26 abd
+
+ * src/: Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/Salome_file_i.cxx, DF/DF_Label.hxx:
+
+ first executable version
+
+2008-04-02 10:50 ouv
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Bug IPAL19413 - Qt4 porting: import salome_test fails
+
+2008-04-01 10:50 caremoli
+
+ * src/: Container/Salome_file_i.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ CCAR: remove some traces
+
+2008-03-28 09:10 caremoli
+
+ * bin/appliskel/runRemote.sh, resources/KERNELCatalog.xml.in,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ CCAR: change computer name in container log file name
+ add exception catch in calcium interface
+ add calcium types in catalog
+ change specification of working dir in resources manager and runRemote.sh
+
+2008-03-07 12:05 jfa
+
+ * src/SALOMEDSImpl/Test/Makefile.am:
+
+ Join delta from tag V4_1_1 till tag mergeto_V4_1_0_maintainance_07Mar2008.
+
+2008-03-07 08:43 jfa
+
+ * COPYING, Makefile.am, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ bin/Makefile.am, bin/NSparam.py, bin/addToKillList.py,
+ bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
+ bin/config_appli.xml, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runNS.py, bin/runSalome, bin/runSalome.csh,
+ bin/runSalome.ksh, bin/runSalome.py, bin/salomeConsole.py,
+ bin/salome_session.py, bin/server.py, bin/setenv.py,
+ bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/getAppliPath.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
+ doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/README.cluster-CCRT, doc/SALOME_Application.txt, doc/rst.css,
+ doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/version.texi,
+ doc/salome/tui/Makefile.am, idl/Calcium_Ports.idl,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
+ idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
+ resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/unix/Doxyfile,
+ salome_adm/unix/F77config.h.in, salome_adm/unix/Makefile.am,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/pythonbe.py, salome_adm/unix/sstream.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/Makefile.am, src/Communication/Makefile.am,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/DSC.dox, src/DSC/Makefile.am,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.cc,
+ src/HDFPersist/HDFgroup.hxx, src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
+ src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/Makefile.am,
+ src/HDFPersist/test1.c, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
+ src/Launcher/MpiImpl.hxx, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/Test/Makefile.am, src/MPIContainer/Makefile.am,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
+ src/Utils/Makefile.am, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SALOME_utilities.py,
+ src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am:
+
+ Join modifications from BR_Dev_For_4_0 tag V4_1_1.
+
+2008-03-05 12:07 mnt
+
+ * src/SALOMEDSImpl/Test/Makefile.am:
+
+ Small update for SL4.2
+
+2008-03-03 12:00 caremoli
+
+ * src/ParallelContainer/: SALOME_ParallelContainer_i.cxx,
+ SALOME_ParallelContainer_i.hxx:
+
+ CCAR: add workingdir and logfilename in parallel container
+
+2008-03-03 11:57 caremoli
+
+ * src/Container/Component_i.cxx:
+
+ CCAR: correct small problem on deleting connection and notification objects
+
+2008-02-28 16:42 ribes
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Parser.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx:
+
+ - Add HostName to resource's informations
+
+2008-02-28 16:40 ribes
+
+ * src/Launcher/: BatchLight_BatchTest.cxx,
+ BatchLight_BatchTest.hxx, Makefile.am, SALOME_Launcher.cxx,
+ SALOME_Launcher.hxx:
+
+ - Adding a test for batch machine before launching a job
+
+2008-02-26 10:33 vsr
+
+ * src/ParallelContainer/: SALOME_ParallelContainer_i.cxx,
+ SALOME_ParallelContainer_i.hxx:
+
+ Integrate patch from for Parallel Container
+
+2008-02-21 17:12 prascle
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumCxxInterface.hxx:
+
+ PR: missing in merge
+
+2008-02-21 14:31 jfa
+
+ * src/Container/Component_i.cxx:
+
+ patchComponent.dat by Christian CAREMOLI. Problem with delete of SalomeApp_Engine.
+
+2008-02-21 14:16 jfa
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ bin/appliskel/runRemote.sh, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/DSC/DSC_Basic/DSC_i.cxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.hxx:
+
+ diff_KERNEL_SRC_BR_Dev_For_4_0__BR_For40_DSC.tgz. For a correct use of YACS in a distributed environment.
+
+2008-02-20 13:49 prascle
+
+ * src/Launcher/BatchLight_BatchManager_SLURM.cxx:
+
+ PR: merge from BR_Dev_For_4_0
+
+2008-02-20 12:27 prascle
+
+ * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
+
+ PR: merge from BR_Dev_For_4_0
+
+2008-02-20 11:40 prascle
+
+ * salome_adm/unix/config_files/check_libxml.m4:
+
+ PR: merge from BR_Dev_For_4_0
+
+2008-02-20 11:29 prascle
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ PR: merge from BR_Dev_For_4_0
+
+2008-02-19 18:35 prascle
+
+ * salome_adm/unix/config_files/: check_opengl.m4, check_qt.m4:
+
+ PR: no more use
+
+2008-02-19 18:17 prascle
+
+ * configure.ac:
+
+ PR:
+
+2008-02-19 17:34 prascle
+
+ * src/Container/SALOME_Container.cxx:
+
+ PR: from BR_Dev_For_4_0: superv container exit
+
+2008-02-19 14:58 prascle
+
+ * src/Container/SALOME_Container.cxx:
+
+ PR: debug for supervcontainer exit
+
+2008-02-19 11:11 caremoli
+
+ * bin/appliskel/runRemote.sh, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl,
+ salome_adm/unix/SALOMEconfig.ref.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ CCAR: add attributes to Container (logfilename, workingdir)
+ - now SALOME Launcher put the Container in a working directory that can be set by the user
+ through machineParameters (member workindir)
+ - add complex, logical and strings to Datastream/Calcium DSC ports python interface
+
+2008-02-19 09:06 ribes
+
+ * src/Launcher/BatchLight_BatchManager_PBS.cxx:
+
+ - Only one log file for PBS jobs
+
+2008-02-18 16:49 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/Calcium.c:
+
+ [no log message]
+
+2008-02-18 11:30 ribes
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx:
+
+ - Adding walltime and mem options to PBS batch
+
+2008-02-18 10:44 caremoli
+
+ * src/DSC/DSC_User/: Superv_Component_i.cxx,
+ Superv_Component_i.hxx, Basic/data_short_port_provides.hxx,
+ Datastream/GenericPort.hxx, Datastream/GenericUsesPort.hxx,
+ Datastream/Calcium/Calcium.cxx,
+ Datastream/Calcium/CalciumProvidesPort.hxx,
+ Datastream/Calcium/calcium_integer_port_uses.hxx,
+ Datastream/Palm/PalmCouplingPolicy.hxx:
+
+ CCAR: remove memory leaks
+
+2008-02-18 10:42 caremoli
+
+ * src/DSC/DSC_Basic/: DSC_interface.cxx, DSC_interface.hxx:
+
+ CCAR: remove memeory leaks
+
+2008-02-18 10:39 caremoli
+
+ * src/NamingService/: NamingService_WaitForServerReadiness.cxx,
+ Test/NamingServiceTest.cxx:
+
+ CCAR: cleaner management of getIORaddr return value
+
+2008-02-18 10:38 caremoli
+
+ * src/: Logger/SALOME_Logger_Server.hxx,
+ NOTIFICATION_SWIG/Makefile.am:
+
+ CCAR: remove warnings in compilation (already defined PACKAGE_xxx)
+
+2008-02-18 10:36 caremoli
+
+ * src/: Notification/CosNotifyShorthands.h,
+ Notification/Makefile.am, SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ CCAR: remove warnings in compilation on already defined variables
+
+2008-02-18 10:35 caremoli
+
+ * salome_adm/unix/SALOMEconfig.ref.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.hxx:
+
+ CCAR: undefine some variables : PACKAGE_NAME, PACKAGE_XXX to remove warnings in compilation
+
+2008-02-15 17:48 fayolle
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Copy2UserSpace.hxx,
+ calciumf.c:
+
+ [no log message]
+
+2008-02-15 11:01 ribes
+
+ * src/Launcher/BatchLight_BatchManager_PBS.cxx:
+
+ - Patch for qsub expand env variables problems
+
+2008-02-14 14:29 ribes
+
+ * bin/runSalome.py, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx:
+
+ - Patch PBS sh file
+ - cout to cerr for debug messages
+
+2008-02-13 16:20 fayolle
+
+ * src/DSC/DSC_User/: Superv_Component_i.hxx,
+ Datastream/CorbaTypeManipulator.hxx,
+ Datastream/CouplingPolicy.hxx, Datastream/GenericPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/Calcium/Calcium.c,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/CalciumCxxInterface.hxx,
+ Datastream/Calcium/CalciumInterface.hxx,
+ Datastream/Calcium/CalciumPortTraits.hxx,
+ Datastream/Calcium/Copy2CorbaSpace.hxx,
+ Datastream/Calcium/Copy2UserSpace.hxx,
+ Datastream/Calcium/Makefile.am:
+
+ [no log message]
+
+2008-02-13 16:05 ribes
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx:
+
+ - Add some features for PBS
+
+2008-02-13 14:50 caremoli
+
+ * src/DSC/DSC_Python/: calcium.i, dsccalcium.py:
+
+ CCAR: add methods to transfer files (6) to Python wrapping for DSC component
+
+2008-02-13 12:13 secher
+
+ * src/Launcher/BatchLight_BatchManager_SLURM.cxx:
+
+ porting on platine CCRT machine
+
+2008-02-11 16:03 prascle
+
+ * configure.ac, bin/Makefile.am, bin/appli_clean.sh,
+ bin/appli_gen.py, bin/appli_install.sh,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/getAppliPath.py, bin/appliskel/killCurrentPort,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/setAppliPath.sh,
+ doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
+ idl/Makefile.am, salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ src/Communication_SWIG/Makefile.am,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerPy.py, src/DF/Makefile.am,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/KERNEL_PY/Makefile.am, src/Launcher/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSImpl/Makefile.am, src/TestContainer/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Test/Makefile.am:
+
+ merge from BR_For40_DSC 11 feb 08
+
+2008-02-11 09:38 caremoli
+
+ * salome_adm/unix/config_files/check_omniorb.m4,
+ src/Container/Container_i.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.cxx,
+ src/Container/SALOME_ContainerPy.py:
+
+ CCAR: some debugs and more correct handle of maps in container
+
+2008-02-11 09:31 prascle
+
+ * bin/appliskel/getAppliPath.py:
+
+ PR: missing commit
+
+2008-02-06 15:07 mnt
+
+ * configure.ac:
+
+ Changing version to 4.1.1
+
+2008-02-06 15:05 secher
+
+ * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
+
+ porting on intel 64 bits processor (platine on CCRT)
+
+2008-02-05 14:32 prascle
+
+ * bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
+ bin/setenv.py, bin/virtual_salome.py,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/setAppliPath.sh,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ src/KERNEL_PY/salome_shared_modules.py:
+
+ PR: Appli and lib
+
+2008-02-04 11:27 caremoli
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ CCAR: remove -p option to omniidl for python (no more need)
+
+2008-02-04 11:25 caremoli
+
+ * configure.ac, bin/Makefile.am, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/Makefile.am,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ src/Communication_SWIG/Makefile.am, src/Container/Makefile.am,
+ src/DF/Makefile.am, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_Python/calcium.i, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/KERNEL_PY/Makefile.am, src/Launcher/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/ModuleCatalog/Makefile.am, src/NOTIFICATION_SWIG/Makefile.am,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSImpl/Makefile.am, src/TestContainer/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Test/Makefile.am:
+
+ CCAR: modifications for make dist and make distcheck
+ - change package name from salome to SalomeKer
+ - add EXTRA_DIST for SWIG targets
+ - change calcium.i to make it conditionnaly compilable (numpy)
+ - add -R option for libtool (hdf and omniorb)
+ - add optional product (numpy) in configure.ac
+ - add mandatory product (omniORBpy) in configure.ac
+ - add DESTDIR target in make install
+ - change @PACKAGE@ in salome in most places
+ - split install doc in 2 phases
+
+2008-02-04 09:34 prascle
+
+ * salome_adm/unix/config_files/check_libxml.m4:
+
+ PR: a bug in the last correction, sorry
+
+2008-02-03 22:27 prascle
+
+ * salome_adm/unix/config_files/check_libxml.m4:
+
+ PR: always the same bug...
+
+2008-02-01 09:59 akl
+
+ * salome_adm/unix/config_files/: Makefile.am, check_opengl.m4,
+ check_qt.m4:
+
+ To remove obsolete scripts.
+
+2008-01-30 16:58 vsr
+
+ * clean_configure, configure.ac, bin/Makefile.am, bin/NSparam.py,
+ bin/addToKillList.py, bin/appli_gen.py, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/nameserver.py,
+ bin/orbmodule.py, bin/runNS.py, bin/runSalome, bin/runSalome.csh,
+ bin/runSalome.ksh, bin/runSalome.py, bin/server.py,
+ bin/setenv.py, bin/shutdownSalome.py, bin/virtual_salome.py,
+ bin/waitContainers.py, bin/waitNS.py, bin/waitNS.sh,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runRemote.sh, doc/Makefile.am,
+ doc/salome/Makefile.am, doc/salome/batch.dox,
+ doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, doc/salome/tui/Makefile.am,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.xml, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
+ resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/production.m4, src/Makefile.am,
+ src/Communication/SALOME_Communication.hxx,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/Container/TestSalome_file.cxx, src/DF/DF_Application.cxx,
+ src/DF/DF_Application.hxx, src/DF/DF_Attribute.cxx,
+ src/DF/DF_Attribute.hxx, src/DF/DF_ChildIterator.cxx,
+ src/DF/DF_ChildIterator.hxx, src/DF/DF_Container.cxx,
+ src/DF/DF_Container.hxx, src/DF/DF_Document.cxx,
+ src/DF/DF_Document.hxx, src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/DSC.dox, src/DSC/Makefile.am,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/DSC/DSC_Python/dsccalcium.py, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFexport.hxx, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
+ src/HDFPersist/Makefile.am, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/TestNamingService.py,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TestContainer/Makefile.am, src/UnitTests/UnitTests.py,
+ src/Utils/Utils_ORB_INIT.cxx:
+
+ Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
+
+2008-01-28 23:03 prascle
+
+ * bin/appli_gen.py, bin/orbmodule.py, bin/server.py,
+ idl/Makefile.am, idl/SALOME_Component.idl,
+ idl/SALOME_ModuleCatalog.idl, resources/CatalogResources.xml.in,
+ resources/KERNELCatalog.xml.in, salome_adm/unix/Makefile.am,
+ salome_adm/unix/pythonbe.py, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/DF/DF_definitions.hxx, src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/KERNEL_PY/salome_study.py,
+ src/Launcher/BatchLight_BatchManager.cxx,
+ src/Launcher/BatchLight_BatchManager.hxx,
+ src/Launcher/BatchLight_BatchManager_PBS.cxx,
+ src/Launcher/BatchLight_BatchManager_PBS.hxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.cxx,
+ src/Launcher/BatchLight_BatchManager_SLURM.hxx,
+ src/Launcher/BatchLight_Job.cxx, src/Launcher/BatchLight_Job.hxx,
+ src/Launcher/Makefile.am, src/Launcher/MpiImpl.cxx,
+ src/Launcher/MpiImpl.hxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxy_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.cxx:
+
+ merge from BR_For40_DSC 28 jan 08
+
+2008-01-28 15:24 caremoli
+
+ * src/Launcher/: BatchLight_BatchManager.cxx,
+ BatchLight_BatchManager.hxx, BatchLight_BatchManager_PBS.cxx,
+ BatchLight_BatchManager_PBS.hxx,
+ BatchLight_BatchManager_SLURM.cxx,
+ BatchLight_BatchManager_SLURM.hxx, BatchLight_Job.cxx,
+ BatchLight_Job.hxx, Makefile.am, MpiImpl.cxx, MpiImpl.hxx:
+
+ CCAR: move BatchLight classes from Batch to Launcher (dependency loop)
+
+2008-01-28 11:21 caremoli
+
+ * idl/Makefile.am:
+
+ CCAR: dummy rule for parallel make
+
+2008-01-28 11:16 caremoli
+
+ * idl/Makefile.am:
+
+ CCAR: remove circular dependency in idls
+
+2008-01-28 10:42 caremoli
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx,
+ SALOME_ModuleCatalog_impl.hxx:
+
+ CCAR: change the datastream types management (use string now as the dataflow types)
+ change the implementation type management (use an enum now : either SO, PY or EXE)
+ and adds an implementation name that will be used with EXE implementation type as
+ the executable name
+
+2008-01-28 10:38 caremoli
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ CCAR: correct way to handle String_member as an in argument (use in() method)
+
+2008-01-28 10:36 caremoli
+
+ * resources/KERNELCatalog.xml.in:
+
+ CCAR: add a datastream type to the catalog
+
+2008-01-28 10:35 caremoli
+
+ * idl/SALOME_ModuleCatalog.idl:
+
+ CCAR: change datastream type management (now same as dataflow types=string)
+ and implementation type (now an enum EXE, SO, PY)
+
+2008-01-21 10:18 ribes
+
+ * src/ParallelContainer/: Makefile.am,
+ SALOME_ParallelContainerProxyDummy.cxx,
+ SALOME_ParallelContainerProxyMpi.cxx,
+ SALOME_ParallelContainerProxy_i.cxx,
+ SALOME_ParallelContainerProxy_i.hxx:
+
+ - Shutdown Parallel proxy
+
+2008-01-18 16:19 ribes
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - Add an exception if parallelLib is not correct
+
+2008-01-18 12:16 caremoli
+
+ * bin/appli_gen.py, resources/CatalogResources.xml.in,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ CCAR: add localhost in default CatalogResources.xml catalog
+
+2008-01-18 10:20 ribes
+
+ * idl/Makefile.am, src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Adapt code to the new PaCO++ version
+ - Remove Parallel Idl compilation when PaCO++ is used
+
+2008-01-17 14:12 caremoli
+
+ * bin/waitNS.sh, idl/Makefile.am:
+
+ CCAR: update from dev branch
+
+2008-01-17 10:44 caremoli
+
+ * bin/orbmodule.py, bin/server.py,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ CCAR: minor modifications to run NamingService tests under valgrind
+
+2008-01-16 15:06 caremoli
+
+ * salome_adm/unix/: Makefile.am, pythonbe.py:
+
+ CCAR: remove pythonbe.py (no more used)
+
+2008-01-16 12:49 vsr
+
+ * idl/Makefile.am:
+
+ Avoid problem with parallel compilation (without workaround)
+
+2008-01-16 11:37 caremoli
+
+ * src/Utils/Utils_ORB_INIT.cxx:
+
+ CCAR: improve WARNING
+
+2008-01-16 11:29 caremoli
+
+ * src/Container/SALOME_Container.py:
+
+ CCAR: remove prints
+
+2008-01-16 09:37 caremoli
+
+ * src/Container/SALOME_Container.cxx:
+
+ CCAR: go back on using ORB_INIT wrapping
+
+2008-01-16 09:26 caremoli
+
+ * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.cxx:
+
+ CCAR: remove orb destroy and delete servant at exit
+
+2008-01-16 09:24 caremoli
+
+ * bin/Makefile.am, bin/setenv.py, bin/waitNS.sh,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl:
+
+ CCAR: update from BR_Dev_For_4_0 branch
+
+2008-01-16 09:19 caremoli
+
+ * src/ParallelContainer/Parallel_Salome_file_i.cxx:
+
+ CCAR: remove memeory leak
+
+2008-01-16 09:18 caremoli
+
+ * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
+
+ CCAR: remove memory leak
+
+2008-01-16 09:17 caremoli
+
+ * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ NamingService/NamingService_WaitForServerReadiness.cxx:
+
+ CCAR: remove memory leaks
+
+2008-01-16 09:08 caremoli
+
+ * src/KERNEL_PY/salome_study.py:
+
+ CCAR: update dump study in salome_study.py
+
+2008-01-16 09:07 caremoli
+
+ * src/DF/DF_definitions.hxx:
+
+ CCAR: remove obsolete include
+
+2008-01-16 09:05 caremoli
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ SALOME_ComponentPy.py, SALOME_Component_i.hxx,
+ SALOME_Container.cxx, SALOME_Container.py,
+ SALOME_ContainerManager.cxx, SALOME_ContainerManager.hxx,
+ SALOME_Container_i.hxx, Salome_file_i.cxx, Salome_file_i.hxx:
+
+ CCAR: remove memory leak and update from BR_Dev_For_4_0 branch
+
+2008-01-16 08:45 caremoli
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ Launcher/SALOME_Launcher.cxx, Launcher/SALOME_Launcher.hxx:
+
+ CCAR: update from BR_Dev_For_4_0 branch
+
+2008-01-15 16:25 secher
+
+ * bin/waitNS.sh:
+
+ test on ccrt
+
+2008-01-11 16:13 secher
+
+ * bin/Makefile.am:
+
+ debug of batch cases
+
+2008-01-11 15:55 secher
+
+ * bin/waitNS.sh:
+
+ debug of batch cases
+
+2008-01-11 15:52 mzn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fix for bug NPAL18499 (EDF 641 STUDY : Performance problem).
+
+2008-01-11 15:50 secher
+
+ * bin/waitNS.sh:
+
+ debug of batch cases
+
+2008-01-11 12:03 secher
+
+ * bin/: setenv.py:
+
+ debug of batch cases
+
+2008-01-09 13:39 jfa
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ NPAL18505: shutdownServers() function don't work if we have distributed containers.
+
+2008-01-08 14:04 caremoli
+
+ * src/LifeCycleCORBA/TestContainerManager.cxx, configure.ac:
+
+ CCAR: update from dev branch
+
+2007-12-29 13:38 vsr
+
+ * configure.ac:
+
+ Make libxml2 a mandatory pre-requisite (it is required for ModuleCatalog and ResourcesManager packages compilation!
+
+2007-12-17 09:42 secher
+
+ * src/LifeCycleCORBA/TestContainerManager.cxx:
+
+ debug when SupervContainer is launched
+
+2007-12-06 14:40 caremoli
+
+ * idl/Makefile.am:
+
+ CCAR: update from main dev branch
+
+2007-11-30 10:08 jfa
+
+ * idl/Makefile.am:
+
+ Merge from BR_For40_DSC.
+
+2007-11-28 10:41 caremoli
+
+ * salome_adm/unix/config_files/production.m4, src/DF/DF_Label.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx:
+
+ CCAR: merge from development branch BR_Dev_For_4_0
+
+2007-11-26 15:21 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ Fixed bug in method getTitle
+
+2007-11-26 10:13 caremoli
+
+ * idl/Makefile.am:
+
+ CCAR: add *DynSk*.cc in Makefile.am (Any TypeCodes)
+
+2007-11-26 09:38 jfa
+
+ * doc/salome/Makefile.am, doc/salome/batch.dox,
+ idl/DSC_Engines.idl, idl/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ Merge from BR_For40_DSC
+
+2007-11-24 13:17 jfa
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ Fix bug 17587 (restore fix for NPAL15643): Study, containing PYHELLO object, isn't saved.
+
+2007-11-23 16:02 srn
+
+ * src/DF/DF_Label.cxx:
+
+ Added calls of virtual callback methods of DF_Attribute on attribute addiotion: AfterAddition and on forget: BeforeForget
+
+2007-11-23 15:45 caremoli
+
+ * idl/DSC_Engines.idl, idl/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ CCAR: several debugs in DSC ports and launcher
+ - better disconnect for DSC ports when a container has gone (all files in DSC directory and DSC_Engines.idl)
+ - catch SALOME_Exception in YACS : need the typecode in IDL lib (add SALOME_ExceptionDynSK.cc in Makefile.am)
+ - remove existing entry in naming service on StartContainer (SALOME_ContainerManager.cxx) : risk of unconsistency
+ - catch CORBA SystemException in FindNext : unable to start containers when component instances exist and when container
+ has gone
+ - remove exit in ShutdownWithExit : right way to stop servers is to call orb->shutdown(0) in a CORBA method, call orb->destroy()
+ in the main thread after orb->run() and to have called _remove_ref on main servants (SALOME_ContainerManager.cxx,
+ SALOME_Launcher.cxx, SALOME_LauncherServer.cxx).
+ - remove memory leaks : use valgrind on Launcher and ConnectionManagerServer; several small modifications in many files.
+
+2007-11-23 14:54 vsr
+
+ * salome_adm/unix/config_files/production.m4:
+
+ Remove -O compiler option (optimization) for compilation of SALOME modules in debug mode
+
+2007-11-23 08:59 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_AttributeUserID.cxx:
+
+ Enlarged a buffer size for building an Attribute type
+
+2007-11-20 14:44 caremoli
+
+ * configure.ac, bin/NSparam.py, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am:
+
+ CCAR: merge from BR_Dev_For_4_0 (20/12/07)
+
+2007-11-20 14:11 ribes
+
+ * doc/salome/Makefile.am:
+
+ batch doxygen file Makefile.am
+
+2007-11-20 14:09 ribes
+
+ * doc/salome/batch.dox:
+
+ batch doxygen file
+
+2007-11-20 12:23 jfa
+
+ * doc/salome/Makefile.am:
+
+ Fix 'make dist' error.
+
+2007-11-20 10:54 prascle
+
+ * bin/NSparam.py:
+
+ PR: file omniORBconfig has now several lines, NSPORT was wrong
+
+2007-11-19 09:46 jfa
+
+ * doc/salome/Makefile.am:
+
+ Fix compilation pb.
+
+2007-11-16 16:58 mnt
+
+ * doc/salome/tui/Makefile.am:
+
+ Correction of problem coping
+
+2007-11-16 14:14 jfa
+
+ * doc/salome/install.dox, doc/salome/kernel_resources.dox,
+ doc/salome/kernel_services.dox, doc/salome/main.dox,
+ doc/salome/salome_application.dox, doc/salome/salome_file.dox,
+ doc/salome/unittests.dox, src/DSC/DSC.dox:
+
+ Patch from Paul RASCLE
+
+2007-11-16 14:04 mnt
+
+ * configure.ac:
+
+ Changing version to 4.1.0
+
+2007-11-16 10:45 jfa
+
+ * bin/appli_gen.py, bin/launchConfigureParser.py, bin/runSalome.py,
+ doc/Makefile.am, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOME_ModuleCatalog.idl, resources/KERNELCatalog.xml.in,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ src/Communication/SALOME_Communication.hxx, src/DSC/Makefile.am,
+ src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/Test/Makefile.am:
+
+ A patch from Paul RASCLE for: kernel documentation with doxygen, modification on Catalog for YACS, modifications on DSC, remove some prints, some mistakes on check_omniorb & check_swig.
+
+2007-11-16 09:10 mnt
+
+ * configure.ac:
+
+ Change version to 3.2.8
+
+2007-11-12 14:10 ribes
+
+ * doc/salome/: Makefile.am, main.dox, salome_file.dox:
+
+ - Adding documentation for Salome_file
+
+2007-11-09 19:03 caremoli
+
+ * configure.ac, bin/launchConfigureParser.py, bin/runSalome.py,
+ bin/setenv.py, idl/DSC_Engines.idl, idl/SALOMEDS.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
+ resources/Makefile.am, src/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/DF/DF_Application.cxx, src/DF/DF_Application.hxx,
+ src/DF/DF_Attribute.cxx, src/DF/DF_Attribute.hxx,
+ src/DF/DF_ChildIterator.cxx, src/DF/DF_ChildIterator.hxx,
+ src/DF/DF_Container.cxx, src/DF/DF_Container.hxx,
+ src/DF/DF_Document.cxx, src/DF/DF_Document.hxx,
+ src/DF/DF_Label.cxx, src/DF/DF_Label.hxx,
+ src/DF/DF_definitions.hxx, src/DF/Makefile.am, src/DF/testDF.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/HDFPersist/HDFascii.cc, src/Launcher/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/Utils/Utils_ORB_INIT.cxx:
+
+ CCAR: merge from branch BR_Dev_For_4_0 tag V4_1_0rc1
+
+2007-11-09 12:10 ribes
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ - Bug when you compile in debug mode...
+
+2007-11-08 19:44 caremoli
+
+ * bin/runSalome.py:
+
+ CCAR: remove superfluous prints
+
+2007-11-08 19:31 caremoli
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ CCAR: minor bugs
+
+2007-11-08 18:54 caremoli
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Client.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_Server.cxx,
+ SALOME_ModuleCatalog_impl.cxx, SALOME_ModuleCatalog_impl.hxx:
+
+ CCAR: add types to component catalogs and corba interface to ModulCatalog to get them
+
+2007-11-08 18:38 caremoli
+
+ * src/DSC/DSC_Python/Makefile.am, src/DSC/DSC_Python/calcium.i,
+ doc/salome/tui/Makefile.am, idl/SALOME_ModuleCatalog.idl,
+ resources/KERNELCatalog.xml.in,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_swig.m4:
+
+ CCAR: add numpy API to Datastream DSC ports
+
+2007-11-08 12:17 mkr
+
+ * idl/DSC_Engines.idl, idl/SALOMEDS.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/Utils/Utils_ORB_INIT.cxx:
+
+ IMP NPAL13547: Checkbox to kill SALOME completely.
+
+2007-11-08 11:36 ribes
+
+ * bin/appli_gen.py:
+
+ - Patch if there is no gui modules
+
+2007-11-06 10:59 ribes
+
+ * src/DSC/DSC.dox:
+
+ - Adding doxygen infos on DSC.
+
+2007-11-02 09:54 srn
+
+ * src/DF/DF_Label.cxx:
+
+ Fixed bug in method FindChild
+
+2007-11-02 09:51 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx:
+
+ Optimized method GetSObject
+
+2007-11-02 09:10 jfa
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Remove traces
+
+2007-11-02 08:58 srn
+
+ * src/SALOMEDS/Test/Makefile.am:
+
+ Added @BOOST_CPPFLAGS@
+
+2007-11-01 13:49 jfa
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Fix pb. with loading of last module (in list).
+
+2007-11-01 12:48 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Optimized GetSObject method
+
+2007-11-01 12:39 srn
+
+ * src/DF/DF_Label.cxx:
+
+ Optimized FindChild method
+
+2007-11-01 12:39 srn
+
+ * bin/setenv.py:
+
+ Modified to assign CSF_PluginDefaults only for GEOM
+
+2007-11-01 10:46 srn
+
+ * bin/setenv.py:
+
+ Placed a definition of CSF_PluginDefaults into GEOM
+
+2007-11-01 10:45 srn
+
+ * resources/Makefile.am:
+
+ Removed addition of Plugin to resources
+
+2007-11-01 10:42 srn
+
+ * src/SALOMEDSImpl/Makefile.am:
+
+ Added @BOOST_CPPFLAGS@
+
+2007-11-01 10:41 srn
+
+ * src/: TOOLSDS/SALOMEDS_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ Added #include <unistd.h>
+
+2007-11-01 10:08 srn
+
+ * src/DF/DF_Label.cxx:
+
+ Optimized method FindChild
+
+2007-11-01 10:07 srn
+
+ * src/DF/Makefile.am:
+
+ Added @BOOST_CPPFLAGS@
+
+2007-11-01 10:05 srn
+
+ * src/SALOMEDS/Makefile.am:
+
+ Removed a reference tp SALOMEDS_FileType.hxx
+
+2007-10-31 12:34 srn
+
+ * src/: DF/Makefile.am, DF/Makefile.in, Launcher/Makefile.am,
+ SALOMEDS/Makefile.am, SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/Test/Makefile.am:
+
+ Removed includes and libraries of OCC
+
+2007-10-31 12:33 srn
+
+ * configure.ac:
+
+ Removed CASCatch and check of OCC
+
+2007-10-31 12:33 srn
+
+ * src/Makefile.am:
+
+ Removed CASCatch
+
+2007-10-31 10:11 srn
+
+ * configure.ac:
+
+ Added a new DF package
+
+2007-10-31 10:06 srn
+
+ * src/TOOLSDS/: Makefile.am, SALOMEDS_Tool.cxx:
+
+ New implementation of TOOLSDS package based on DF data structure instead of OCAF
+
+2007-10-31 10:05 srn
+
+ * src/SALOMEDS/:
+ Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ Handle_SALOMEDS_DrawableAttribute.hxx,
+ Handle_SALOMEDS_ExpandableAttribute.hxx,
+ Handle_SALOMEDS_ExternalFileDef.hxx,
+ Handle_SALOMEDS_FileType.hxx, Handle_SALOMEDS_IORAttribute.hxx,
+ Handle_SALOMEDS_LocalIDAttribute.hxx,
+ Handle_SALOMEDS_OCAFApplication.hxx,
+ Handle_SALOMEDS_OpenedAttribute.hxx,
+ Handle_SALOMEDS_PersRefAttribute.hxx,
+ Handle_SALOMEDS_PixMapAttribute.hxx,
+ Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ Handle_SALOMEDS_SelectableAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ Handle_SALOMEDS_TargetAttribute.hxx,
+ Handle_SALOMEDS_TextColorAttribute.hxx,
+ Handle_SALOMEDS_TextHighlightColorAttribute.hxx, SALOMEDS.cdl,
+ SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS_DrawableAttribute.cdl, SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cdl,
+ SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cdl,
+ SALOMEDS_ExternalFileDef.cxx, SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS_ExternalFileDef.ixx, SALOMEDS_ExternalFileDef.jxx,
+ SALOMEDS_FileType.cdl, SALOMEDS_FileType.cxx,
+ SALOMEDS_FileType.hxx, SALOMEDS_FileType.ixx,
+ SALOMEDS_FileType.jxx, SALOMEDS_FlagsAttribute.cxx,
+ SALOMEDS_FlagsAttribute.hxx, SALOMEDS_GraphicAttribute.cxx,
+ SALOMEDS_GraphicAttribute.hxx, SALOMEDS_IORAttribute.cdl,
+ SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
+ SALOMEDS_IORAttribute.ixx, SALOMEDS_IORAttribute.jxx,
+ SALOMEDS_LocalIDAttribute.cdl, SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS_LocalIDAttribute.hxx, SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS_LocalIDAttribute.jxx, SALOMEDS_OCAFApplication.cdl,
+ SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS_OCAFApplication.ixx, SALOMEDS_OCAFApplication.jxx,
+ SALOMEDS_OpenedAttribute.cdl, SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cdl,
+ SALOMEDS_PersRefAttribute.cxx, SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PersRefAttribute.jxx,
+ SALOMEDS_PixMapAttribute.cdl, SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS_PixMapAttribute.hxx, SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS_PixMapAttribute.jxx, SALOMEDS_PythonObjectAttribute.cdl,
+ SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS_SelectableAttribute.cdl,
+ SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS_SequenceOfRealAttribute.cdl,
+ SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS_StudyPropertiesAttribute.cdl,
+ SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS_StudyPropertiesAttribute.jxx,
+ SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS_TableOfStringAttribute.ixx,
+ SALOMEDS_TableOfStringAttribute.jxx,
+ SALOMEDS_TargetAttribute.cdl, SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cdl,
+ SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS_TextHighlightColorAttribute.cdl,
+ SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS_TextHighlightColorAttribute.jxx, Test/Makefile.am,
+ Test/SALOMEDSTest.cxx, Test/SALOMEDSTest.hxx,
+ Test/SALOMEDSTest_AttributeExpandable.cxx,
+ Test/SALOMEDSTest_AttributeSelectable.cxx,
+ Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ Test/SALOMEDSTest_AttributeTextColor.cxx,
+ Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ Test/SALOMEDSTest_AttributeUserID.cxx,
+ Test/SALOMEDSTest_ChildIterator.cxx,
+ Test/SALOMEDSTest_SObject.cxx, Test/SALOMEDSTest_Study.cxx,
+ Test/SALOMEDSTest_StudyBuilder.cxx,
+ Test/SALOMEDSTest_StudyManager.cxx, Test/TestSALOMEDS.cxx,
+ Test/TestSALOMEDS.py:
+
+ New implementation of SALOMEDS package based on DF data structure instead of OCAF
+
+2007-10-31 09:59 srn
+
+ * src/SALOMEDS/: Makefile.am, SALOMEDS_AttLong_i.cxx,
+ SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
+ SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment.cxx,
+ SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeComment_i.hxx, SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS_AttributeDrawable.hxx, SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS_AttributeIOR.hxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger.cxx,
+ SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS_AttributeLocalID.hxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName.cxx,
+ SALOMEDS_AttributeName.hxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS_AttributeOpened.hxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributeOpened_i.hxx, SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributePythonObject_i.hxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeString.cxx, SALOMEDS_AttributeString.hxx,
+ SALOMEDS_AttributeString_i.cxx, SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS_AttributeUserID.hxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
+ SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator.hxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_Client.cxx, SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS_IParameters.cxx, SALOMEDS_SComponent.cxx,
+ SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_SObject.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx, SALOMEDS_Study.hxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx,
+ SALOMEDS_TMPFile_i.cxx, SALOMEDS_TMPFile_i.hxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS_UseCaseIterator.cxx, SALOMEDS_UseCaseIterator.hxx,
+ SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx,
+ SALOME_DriverPy.py:
+
+ New implementation of SALOMEDS package based on DF data structure instead of OCAF
+
+2007-10-31 09:58 srn
+
+ * src/SALOMEDSImpl/: Makefile.am,
+ SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl_ChildIterator.cxx, SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl_ChildNodeIterator.hxx, SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl_StudyHandle.hxx, SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl_StudyManager.hxx, SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl_TMPFile.hxx, SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl_Tool.hxx, SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl_UseCaseIterator.hxx, testDS.cxx,
+ SALOMEDSImpl_OCAFApplication.cxx,
+ SALOMEDSImpl_OCAFApplication.hxx, Test/Makefile.am,
+ Test/SALOMEDSImplTest.cxx:
+
+ New implementation of SALOMEDSImpl package based on DF data structure instead of OCAF
+
+2007-10-31 09:57 srn
+
+ * src/HDFPersist/HDFascii.cc:
+
+ Removed references to OCC
+
+2007-10-31 09:57 srn
+
+ * src/Makefile.am:
+
+ Added DF package
+
+2007-10-31 09:56 srn
+
+ * src/DF/: DF_Application.cxx, DF_Application.hxx,
+ DF_Attribute.cxx, DF_Attribute.hxx, DF_ChildIterator.cxx,
+ DF_ChildIterator.hxx, DF_Container.cxx, DF_Container.hxx,
+ DF_Document.cxx, DF_Document.hxx, DF_Label.cxx, DF_Label.hxx,
+ DF_definitions.hxx, Makefile.am, Makefile.in, testDF.cxx:
+
+ Data structure for tree of Labels and Attributes
+
+2007-10-30 16:10 ribes
+
+ * doc/Makefile.am, doc/salome/Makefile.am, doc/salome/install.dox,
+ doc/salome/kernel_resources.dox, doc/salome/kernel_services.dox,
+ doc/salome/main.dox, doc/salome/salome_application.dox,
+ doc/salome/unittests.dox, doc/salome/tui/Makefile.am,
+ idl/SALOMEDS.idl, src/DSC/DSC.dox, src/DSC/Makefile.am:
+
+ - Kernel Documentation to doxygen
+
+2007-10-29 12:07 apo
+
+ * bin/runSalome.py, src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
+
+ Merge the final state of the MERGE_MULTIPR_EVOLUTION
+
+2007-10-26 15:18 apo
+
+ * bin/launchSalome.py, bin/runSalome.py,
+ src/Utils/Utils_ORB_INIT.cxx, src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx:
+
+ To provide ability to handle big files (up to 2 GBytes)
+
+2007-10-26 09:17 caremoli
+
+ * src/: Communication/SALOME_Communication.hxx,
+ SALOMEDS/Makefile.am, SALOMEDS/Test/Makefile.am:
+
+ CCAR: to be able to build without removing install directory
+
+2007-10-26 08:22 apo
+
+ * bin/launchSalome.py:
+
+ To provide ability to handle big files (up to 2 GBytes)
+
+2007-10-26 08:21 apo
+
+ * bin/runSalome.py:
+
+ To use patch on Bug NPAL17025
+ EDF SALOME 4 : Can't launch Salome 4 if another Salome's Session is running (whatever the version is)
+
+2007-10-25 10:02 ribes
+
+ * Makefile.am, configure.ac, DEPRECATED/Makefile.in,
+ bin/Makefile.am, bin/launchConfigureParser.py, bin/orbmodule.py,
+ bin/runSalome.py, bin/setenv.py, bin/shutdownSalome.py,
+ bin/waitContainers.py, bin/waitNS.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
+ doc/Makefile.am, doc/rst.css, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Registry.idl, idl/SALOME_Session.idl,
+ resources/CatalogResources.xml.in, resources/Makefile.am,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/Makefile.am, src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/GenericObj/Makefile.am, src/HDFPersist/Makefile.am,
+ src/KERNEL_PY/Help.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
+ src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am, src/Notification/Makefile.am,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
+ src/Utils/Makefile.am, src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
+ src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am:
+
+ [no log message]
+
+2007-10-24 23:29 prascle
+
+ * bin/setenv.py, bin/virtual_salome.py,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ src/Container/SALOME_ContainerPy.py,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/port_factory.hxx,
+ src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/KERNEL_PY/Help.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/TestContainer/Makefile.am:
+
+ merge from BR_For40_DSC 25oct07
+
+2007-10-24 21:33 prascle
+
+ * configure.ac, bin/Makefile.am, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runSalome.py, bin/setenv.py,
+ bin/shutdownSalome.py, bin/waitContainers.py, bin/waitNS.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
+ idl/SALOMEDS.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Registry.idl, resources/CatalogResources.xml.in,
+ salome_adm/unix/config_files/check_mpi.m4, src/Makefile.am,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/TestContainerManager.cxx,
+ src/HDFPersist/Makefile.am, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/UnitTests/UnitTests.py:
+
+ merge from BR_V4dev_resman 24oct07
+
+2007-10-24 15:54 ribes
+
+ * salome_adm/unix/config_files/check_openmpi.m4,
+ src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx:
+
+ - removing deprecated method
+
+2007-10-24 14:17 caremoli
+
+ * bin/: setenv.py, virtual_salome.py:
+
+ CCAR: small correction
+
+2007-10-24 14:09 caremoli
+
+ * src/TestContainer/Makefile.am:
+
+ CCAR: no need to add libs already in main lib (problem if already installed, use
+ the installed libs instead of local ones)
+
+2007-10-24 14:07 caremoli
+
+ * src/NamingService/SALOME_NamingServicePy.py:
+
+ CCAR: add documentation in the pydoc style
+
+2007-10-24 14:06 caremoli
+
+ * src/KERNEL_PY/: Help.py, salome.py, salome_iapp.py,
+ salome_study.py:
+
+ CCAR: change help to Help to be able to use pydoc inline help :
+ now help(salome) displays pydoc documentation of salome.py module
+
+2007-10-24 13:41 caremoli
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ [no log message]
+
+2007-10-23 10:59 prascle
+
+ * src/: Launcher/SALOME_LauncherServer.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ PR: Debug Unit tests
+
+2007-10-22 10:57 jfa
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_impl.cxx:
+
+ Debug new parser.
+
+2007-10-19 07:48 mzn
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_impl.cxx:
+
+ Use xmlNodeGetContent(...) method instead of getting content field of xmlNode.
+
+2007-10-18 08:44 jfa
+
+ * src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx:
+
+ To avoid compilation pb on RedHat 8.0.
+
+2007-10-16 13:52 mzn
+
+ * salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_libxml.m4,
+ src/Container/Makefile.am, src/LifeCycleCORBA/Makefile.am,
+ src/ModuleCatalog/Makefile.am, src/ResourcesManager/Makefile.am:
+
+ Correction.
+
+2007-10-16 09:42 mzn
+
+ * src/ResourcesManager/Makefile.am:
+
+ Correction.
+
+2007-10-15 15:54 mzn
+
+ * src/: LifeCycleCORBA/Makefile.am, ResourcesManager/Makefile.am,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ ModuleCatalog/Makefile.am,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Porting KERNEL on new XML reader.
+
+2007-10-15 15:51 mzn
+
+ * configure.ac, salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_libxml.m4,
+ src/Container/Makefile.am:
+
+ Porting KERNEL on new XML reader.
+
+2007-10-10 16:20 ribes
+
+ * src/HDFPersist/Makefile.am:
+
+ - Bug-- on some linux systems
+
+2007-10-10 14:37 ribes
+
+ * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.cxx,
+ Superv_Component_i.hxx, port_factory.hxx,
+ Basic/basic_port_factory.hxx,
+ Datastream/Calcium/calcium_port_factory.hxx,
+ Datastream/Palm/palm_port_factory.hxx:
+
+ - adding register factory to Superv_Component
+
+2007-10-08 10:01 caremoli
+
+ * Makefile.am, clean_configure, DEPRECATED/Makefile.in,
+ bin/Makefile.am, bin/envSalome.py, bin/killSalome.py,
+ bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.csh,
+ bin/runSalome.ksh, bin/runSalome.py, bin/setenv.py,
+ bin/virtual_salome.py, bin/appliskel/runAppli, doc/Makefile.am,
+ doc/rst.css, doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Session.idl, resources/Makefile.am,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/Makefile.am, src/Communication_SWIG/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/GenericObj/Makefile.am, src/HDFPersist/Makefile.am,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_study.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/Logger/Makefile.am, src/Logger/Test/Makefile.am,
+ src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.am, src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/Makefile.am, src/Registry/Makefile.am,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.py,
+ src/Utils/Makefile.am, src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
+ src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am:
+
+ CCAR: merge from mergefrom_BR_For40_DSC_28sep2007
+
+2007-10-05 16:57 apo
+
+ * src/Container/Makefile.am:
+
+ Fix compilation problem - it is necessary to point exactly to what HDF5 header files should be used for the compilation (there can be incompatibility between the native distribution and SALOME HDF5 distribution)
+
+2007-10-05 15:39 secher
+
+ * bin/setenv.py:
+
+ for salome batch runnings
+
+2007-10-05 15:22 prascle
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ PR: abort if SALOME_BATCH not defined
+
+2007-10-04 11:23 secher
+
+ * bin/runSalome.py:
+
+ debug
+
+2007-10-03 11:13 prascle
+
+ * src/HDFPersist/Makefile.am:
+
+ PR: Trailing slash induced a bug
+
+2007-10-03 10:43 secher
+
+ * configure.ac, bin/Makefile.am, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runSalome.py, bin/shutdownSalome.py,
+ bin/waitContainers.py, bin/waitNS.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
+ idl/SALOMEDS.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Registry.idl, resources/CatalogResources.xml.in,
+ salome_adm/unix/config_files/check_mpi.m4, src/Makefile.am,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/TestContainerManager.cxx,
+ src/HDFPersist/Makefile.am, src/Launcher/Makefile.am,
+ src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/UnitTests/UnitTests.py:
+
+ resolve conflicts from merge with BR_V326p4_resman branch
+
+2007-10-01 15:05 secher
+
+ * configure.ac, bin/runSalome.py, bin/shutdownSalome.py,
+ idl/SALOME_ContainerManager.idl, src/Makefile.am,
+ src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Launcher/Makefile.am, src/Launcher/SALOME_Launcher.cxx,
+ src/Launcher/SALOME_Launcher.hxx,
+ src/Launcher/SALOME_LauncherServer.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/UnitTests/UnitTests.py:
+
+ add a SalomeLauncher. Modify ContainerManager idl to create three interfaces in it: one for launcher, one for containermanager and one for resources manager.
+
+2007-09-28 16:41 prascle
+
+ * configure.ac, bin/addToKillList.py, bin/killSalomeWithPort.py,
+ bin/nameserver.py, bin/orbmodule.py, bin/runNS.py,
+ bin/runSalome.py, bin/server.py, bin/setenv.py,
+ bin/virtual_salome.py, doc/salome/tui/Makefile.am,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_Exception.xml,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ salome_adm/unix/config_files/production.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/DSC/Makefile.am,
+ src/DSC/DSC_Basic/DSC_Basic.hxx, src/DSC/DSC_Python/Makefile.am,
+ src/DSC/DSC_Python/calcium.i, src/DSC/DSC_Python/dsccalcium.py,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calciumf.c,
+ src/DSC/DSC_User/Datastream/Calcium/fortoc.h,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFexport.hxx, src/HDFPersist/HDFfile.hxx,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
+ src/HDFPersist/Makefile.am,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/NamingService/Test/TestNamingService.py,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/UnitTests/UnitTests.py:
+
+ merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_28sep2007
+
+2007-09-28 16:24 vsr
+
+ * bin/runSalome.csh:
+
+ Fix a long-standing problem with passing wrong values to the --standalone or --embedded parameters.
+ Improve --standalone & -embedded parameters processing (XML and command line)
+
+2007-09-28 14:11 vsr
+
+ * bin/: envSalome.py, launchConfigureParser.py, runSalome,
+ setenv.py:
+
+ Fix a long-standing problem with passing wrong values to the --standalone or --embedded parameters.
+ Improve --standalone & -embedded parameters processing (XML and command line)
+
+2007-09-28 12:53 vsr
+
+ * src/KERNEL_PY/batchmode_salome.py:
+
+ Fix a problem with importing of salome_shared_modules.py script in the batch mode python terminal.
+
+2007-09-28 11:11 mnt
+
+ * configure.ac:
+
+ Change version to 3.2.8
+
+2007-09-27 16:49 ribes
+
+ * src/: Container/Container_i.cxx, Container/Salome_file_i.cxx,
+ Container/Salome_file_i.hxx, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.cc,
+ HDFPersist/HDFobject.hxx,
+ ParallelContainer/Parallel_Salome_file_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx:
+
+ - Parallel Salome_file are now ok with parallel applications
+ - const char * into HDFPersist constructor of classes
+ - --warning into Container
+
+2007-09-26 15:59 caremoli
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ CCAR: memory leak _ptr -> _var
+
+2007-09-26 11:23 ribes
+
+ * src/: Container/Component_i.cxx,
+ Container/SALOME_Component_i.hxx, Container/Salome_file_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ ParallelContainer/SALOME_ParallelContainer_i.cxx:
+
+ - Adding CallBack method
+
+2007-09-26 10:38 caremoli
+
+ * bin/server.py:
+
+ [no log message]
+
+2007-09-25 19:37 caremoli
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Calcium.cxx,
+ CalciumInterface.hxx:
+
+ CCAR: add 2 debug prints
+
+2007-09-25 14:13 ribes
+
+ * src/: Container/Component_i.cxx,
+ ParallelContainer/SALOME_ParallelComponent_i.cxx:
+
+ - Parallel and sequential have the behaviour
+
+2007-09-25 14:04 vsr
+
+ * bin/runSalome.py:
+
+ Fix bug NPAL17025 (can't launch Salome 4 if another Salome's session is running)
+
+2007-09-25 14:02 caremoli
+
+ * bin/: addToKillList.py, killSalomeWithPort.py, nameserver.py,
+ orbmodule.py, runNS.py, runSalome.py, server.py, setenv.py:
+
+ CCAR: change tabs to spaces
+ replace launching servers through os.spawn by method daemonize (servers are real daemons now
+ and are detached from terminal)
+
+2007-09-25 11:02 ribes
+
+ * idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
+
+ - Change some operations prototypes
+ - Fix Parallel_Salome_file
+
+2007-09-25 10:18 caremoli
+
+ * src/DSC/: DSC_Python/calcium.i,
+ DSC_User/Datastream/Calcium/Calcium.cxx,
+ DSC_User/Datastream/Calcium/Calcium.hxx:
+
+ CCAR: change name of function create_port into create_calcium_port
+
+2007-09-24 15:52 ribes
+
+ * idl/SALOME_Component.xml,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/Registry/SALOME_Registry.hxx:
+
+ - Fix warning for SALOME_Registry
+ - Parallel_Salome_file ok, needs some more tests
+
+2007-09-21 16:03 ribes
+
+ * src/Container/Salome_file_i.cxx:
+
+ - Bugs--
+
+2007-09-21 11:52 ribes
+
+ * idl/DSC_Engines.idl, idl/Makefile.am, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Salome_file_i.cxx,
+ src/Container/Salome_file_i.hxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/Parallel_Salome_file_i.cxx,
+ src/ParallelContainer/Parallel_Salome_file_i.hxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx:
+
+ - Adding support of Salome_file into containers and components
+ - Adding Parallel_Salome_file
+ - Adding Parallel_Component
+ - Need some tests
+
+2007-09-20 11:15 mzn
+
+ * bin/: launchConfigureParser.py, runSalome, runSalome.ksh,
+ runSalome.py, appliskel/runAppli:
+
+ Fix for Bug NPAL16630 (runSalome and runAppli use python option "-i" when it has arguments, and no option otherwise).
+
+2007-09-19 16:06 mzn
+
+ * bin/: launchConfigureParser.py, runSalome, runSalome.ksh,
+ runSalome.py, appliskel/runAppli:
+
+ Fix for Bug NPAL16630 (runSalome and runAppli use python option "-i" when it has arguments, and no option otherwise).
+
+2007-09-17 14:32 secher
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx:
+
+ just a little modification
+
+2007-09-17 12:40 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ add MpiImpl object to manage different mpi implementations
+
+2007-09-14 15:05 ribes
+
+ * idl/Makefile.am, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx:
+
+ - Adding ParallelSalome_file
+ - BASIC_short ok
+
+2007-09-13 15:53 ribes
+
+ * src/Container/: Salome_file_interface.cxx,
+ Salome_file_interface.hxx:
+
+ - Salome_file ok
+
+2007-09-13 15:48 secher
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Handler.hxx,
+ SALOME_ResourcesCatalog_Parser.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx,
+ SALOME_ResourcesManager.hxx:
+
+ add PBS batch manager
+
+2007-09-13 11:28 ribes
+
+ * idl/SALOME_Component.idl,
+ src/Container/Salome_file_interface.cxx,
+ src/Container/Salome_file_interface.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx:
+
+ - Basic_short port update
+ - Comments on Salome_file are now correct
+ - Begin of the implementation of Parallel Salome_file
+
+2007-09-12 16:41 ribes
+
+ * src/Container/: Salome_file_interface.cxx,
+ Salome_file_interface.hxx:
+
+ - Separating the implementation of Salome_file for parallel implementation
+
+2007-08-23 06:29 vsr
+
+ * configure.ac:
+
+ [no log message]
+
+2007-08-17 10:25 jfa
+
+ * src/: SALOMEDS/SALOME_DriverPy.py,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Join modifications from V3_2_0_maintainance (V3_2_6pre4 - T32x_16Aug2007_16h00m)
+
+2007-07-25 09:38 secher
+
+ * src/LifeCycleCORBA/TestContainerManager.cxx:
+
+ [no log message]
+
+2007-07-24 15:04 secher
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesCatalog_Handler.hxx,
+ SALOME_ResourcesCatalog_Parser.cxx,
+ SALOME_ResourcesCatalog_Parser.hxx, SALOME_ResourcesManager.cxx,
+ SALOME_ResourcesManager.hxx:
+
+ add batch manager factory
+
+2007-07-20 14:35 apo
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
+
+ Start to use SALOMEDS::Study::Modified() method
+
+2007-07-19 11:00 ribes
+
+ * idl/SALOME_Component.idl, src/Container/Makefile.am,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFexport.hxx,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/HDFobject.hxx,
+ src/HDFPersist/Makefile.am, src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
+
+ - Adding Salome_file into kernel : it proposes a new way to manage files.
+ It will be used into services ports in supervisor schemas
+ - HDF is now not depending on CAS.
+ - Parallel version of Salome_file is not yet finished.
+
+2007-07-19 10:57 secher
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ get jobId when submitting job on cluster, query job and get results files on local machine when job is finished
+
+2007-07-18 13:49 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ Implemented method Modified() for SALOMEDS_Study that marks the Study as being modified.
+
+2007-07-17 10:01 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ definition of BatchLight class to submit salome session on cluster
+
+2007-07-12 15:59 secher
+
+ * src/: Container/Container_i.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx:
+
+ debugging of simultaneous registry of containers in naming service
+
+2007-07-11 15:14 secher
+
+ * bin/appliskel/killCurrentPort,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ try to quit Salome as clean as possible
+
+2007-07-11 13:56 secher
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx:
+
+ [no log message]
+
+2007-07-11 12:09 secher
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ [no log message]
+
+2007-07-09 16:31 secher
+
+ * bin/Makefile.am, bin/orbmodule.py, bin/shutdownSalome.py,
+ idl/SALOMEDS.idl, idl/SALOME_Registry.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx:
+
+ improvement to shutdown salome properly and to launch exception if problem of connection on remote host
+
+2007-07-07 10:34 prascle
+
+ * clean_configure:
+
+ PR: remove all files not on CVS
+
+2007-07-07 10:26 prascle
+
+ * salome_adm/unix/config_files/: check_boost.m4, install-sh,
+ ltmain.sh, missing:
+
+ PR: files not required on CVS, regenerated
+
+2007-07-05 11:08 secher
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ debugging when users are different on local and on cluster
+
+2007-07-05 08:42 ribes
+
+ * idl/SALOME_Component.idl, src/Container/Makefile.am,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx,
+ src/ParallelContainer/Makefile.am:
+
+ - Salome_file can now be saved into a hdf file
+ - Makefile are changed to add HDF persist dependency
+
+2007-07-03 14:13 secher
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ debugging to have the possibility to have different users in local and on cluster
+
+2007-07-02 11:06 prascle
+
+ * bin/virtual_salome.py:
+
+ PR: release constraints on modules for SALOME Application
+
+2007-07-02 11:04 prascle
+
+ * bin/runSalome.py:
+
+ PR: kill Salome does not work with SALOME application
+
+2007-06-29 14:48 abd
+
+ * bin/: killSalome.py, runSalome.py:
+
+ Potring to Win32 Platform
+
+2007-06-29 14:46 abd
+
+ * src/Container/Container_i.cxx:
+
+ Restore Windows python debug workaround.
+ Now Windows Version is supporting several study in one session.
+
+2007-06-29 11:34 secher
+
+ * bin/Makefile.am, bin/waitContainers.py, bin/waitNS.py,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ improvement to manage batch on ccrt
+
+2007-06-28 16:45 secher
+
+ * src/: Makefile.am, Container/Makefile.am,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ improvement to use Salome application
+
+2007-06-28 12:16 ribes
+
+ * idl/Makefile.am, idl/SALOME_Component.idl,
+ idl/SALOME_Exception.xml, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/Salome_file_i.cxx, src/Container/Salome_file_i.hxx,
+ src/Container/TestSalome_file.cxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Adding Salome_file to Kernel for file support into supervisor schema
+
+2007-06-28 09:44 caremoli
+
+ * configure.ac:
+
+ CCAR: add directory
+
+2007-06-27 14:54 abd
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ Removed copying of configure files
+ Removed copying of pythonbe file
+
+2007-06-27 13:23 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4,
+ src/Container/Makefile.am, src/LifeCycleCORBA/Makefile.am,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Merge from BR_QT4 branch
+
+2007-06-27 13:14 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ Porting to qt 4: merge changes from GUI module
+
+2007-06-26 11:29 caremoli
+
+ * src/Container/: Makefile.am, SALOME_Container.cxx:
+
+ CCAR: add possibility to automatically launch a debugger attached to the container
+ on SIGSEGV and not trapped exceptions. Only if DEBUGGER env variable is set to a shell to execute
+
+2007-06-26 11:15 caremoli
+
+ * src/DSC/: Makefile.am, DSC_Python/Makefile.am,
+ DSC_Python/calcium.i, DSC_Python/dsccalcium.py,
+ DSC_User/Makefile.am, DSC_User/Datastream/Calcium/Makefile.am,
+ DSC_User/Datastream/Calcium/calcium.i,
+ DSC_User/Datastream/Calcium/dsccalcium.py:
+
+ CCAR: transfer Python interface from DSC_User/Datastream/Calcium to DSC_Python
+
+2007-06-26 09:27 jfa
+
+ * configure.ac:
+
+ Change version to 3.2.7
+
+2007-06-25 17:04 caremoli
+
+ * src/DSC/DSC_User/Datastream/Calcium/: Calcium.c, Calcium.cxx,
+ Calcium.hxx, Makefile.am, calcium.h, calcium.i, calciumf.c,
+ dsccalcium.py, fortoc.h:
+
+ CCAR: add fortran interface and python interface to DSC calcium ports
+
+2007-06-25 11:00 abd
+
+ * salome_adm/unix/: make_common_starter.am,
+ config_files/Makefile.am:
+
+ Separation KERNEL DEPRECATED configuration files from main config_files
+
+2007-06-20 15:38 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ - Bug removed for choosing what kind of container
+
+2007-06-20 15:23 abd
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Registry/RegistryService.cxx, SALOMELocalTrace/utilities.h:
+
+ Corrected implementation of MESSAGE functionality on Windows
+
+ Porting current version of BR_Dev_For_4_0 branch on Windows.
+ First stable Windows version of BR_Dev_For_4_0 branch.
+
+2007-06-20 10:34 ribes
+
+ * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - YACS patch for PaCO++ containers and components
+
+2007-06-19 19:10 caremoli
+
+ * configure.ac:
+
+ CCAR: change enable-debug default to NO
+
+2007-06-19 19:09 caremoli
+
+ * salome_adm/unix/config_files/production.m4:
+
+ CCAR: remove PKGS from enable-debug and enable-production macros
+
+2007-06-15 10:45 ribes
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ - preSet is now ok
+
+2007-06-14 14:21 caremoli
+
+ * doc/salome/tui/Makefile.am,
+ salome_adm/unix/config_files/check_htmlgen.m4:
+
+ CCAR: new configuration of doxygen : to validate
+
+2007-06-14 14:14 caremoli
+
+ * bin/virtual_salome.py:
+
+ CCAR: use new location of doc
+
+2007-06-14 14:12 caremoli
+
+ * src/DSC/: DSC_Basic/DSC_Basic.hxx,
+ DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
+ DSC_User/Datastream/AdjacentFunctor.hxx,
+ DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/GenericUsesPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.c,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx:
+
+ CCAR: ifdef _DEBUG_ around debug trace
+
+2007-06-06 15:46 ribes
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ openmpi m4 install
+
+2007-06-05 15:00 abd
+
+ * bin/setenv.py:
+
+ Fix merging errors.
+ It's not necessarily to use upper case in module names
+
+2007-06-05 14:51 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ NPAL16136: Error FindObjectIOR after RemoveObjectWithChildren: removed object found.
+
+2007-06-05 11:03 san
+
+ * src/: DSC/DSC_Basic/ConnectionManager_i.cxx,
+ DSC/DSC_Basic/ConnectionManager_i.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Porting to Qt4
+ Compiler error with MS VC++ 7.1
+
+2007-06-05 09:51 rahuel
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ idl/SALOME_ContainerManager.idl,
+ resources/CatalogResources.xml.in,
+ salome_adm/unix/config_files/check_mpi.m4,
+ src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ improvement for batch on ccrt
+
+2007-06-04 15:55 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Using FindFirst on the resourcesmanager for
+ ParallelContainers
+
+2007-06-04 15:23 ribes
+
+ * salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_openmpi.m4,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am:
+
+ Adding openmpi
+
+2007-05-29 18:08 prascle
+
+ * COPYING, configure.ac, bin/addToKillList.py, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.py,
+ bin/setenv.py, bin/virtual_salome.py, doc/salome/version.texi,
+ idl/Makefile.am, salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Container/Component_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Basic.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.hxx,
+ src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.am,
+ src/HDFPersist/test1.c, src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/ModuleGenerator/IDLparser.py,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/SALOME_utilities.py:
+
+ mergefrom_V4_0
+
+2007-05-29 09:51 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ NPAL15643: EDF402: Bug when saving PYHELLO object.
+
+2007-05-22 15:01 prascle
+
+ * idl/DSC_Engines.idl, idl/DSC_Engines.xml,
+ idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Ports.xml, salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/DSC/DSC_User/DSC_Exception.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DatastreamException.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumException.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_22may2007
+
+2007-05-20 12:57 caremoli
+
+ * src/Container/: SALOME_ComponentPy.py,
+ SALOME_ContainerManager.cxx:
+
+ CCAR: correct bug in getContainerRef (python component)
+
+2007-05-20 12:49 caremoli
+
+ * salome_adm/unix/config_files/: config.guess, config.sub:
+
+ CCAR: no need to have config.sub and config.guess in CVS
+
+2007-05-17 09:49 nds
+
+ * bin/setenv.py, src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx:
+
+ Modification for Win32 platform
+
+2007-05-16 16:29 secher
+
+ * src/ResourcesManager/SALOME_LoadRateManager.cxx:
+
+ simplification of findnext
+
+2007-05-15 14:26 secher
+
+ * bin/appliskel/runRemote.sh:
+
+ debug of pb with runRemote.sh on Saclay Mandriva 2006 machines
+
+2007-05-15 12:31 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/TestContainerManager.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx:
+
+ add compo list in StartContainer() method, and remove compoPath and PrereqFile in resources catalog
+
+2007-05-15 08:35 prascle
+
+ * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ merge from tag BR_V326p4_20070428
+
+2007-05-11 14:53 ribes
+
+ * idl/: DSC_Engines.xml, SALOME_Component.xml, SALOME_Ports.xml:
+
+ Bug in xml files
+
+2007-05-09 14:48 secher
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ improvement to take account the number of processors available for each machine for a cyclic policy
+
+2007-05-07 12:52 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ Porting to Qt4
+
+2007-05-07 12:39 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ Porting to Qt4
+
+2007-05-07 09:33 vsr
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Porting to Qt4
+
+2007-05-04 14:50 vsr
+
+ * src/ResourcesManager/Makefile.am:
+
+ Update check Qt procedure for Qt 4.x
+
+2007-05-04 14:47 vsr
+
+ * src/: Container/Makefile.am, LifeCycleCORBA/Makefile.am,
+ ModuleCatalog/Makefile.am:
+
+ Update check Qt procedure for Qt 4.x
+
+2007-05-04 14:32 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ Update check Qt procedure for Qt 4.x
+
+2007-05-02 15:51 nds
+
+ * src/DSC/DSC_Basic/: DSC_Basic.hxx, ConnectionManager_i.hxx,
+ DSC_Callbacks.hxx, DSC_i.hxx, DSC_interface.cxx, Makefile.am,
+ PortProperties_i.hxx:
+
+ Modification for Win32 platform
+
+2007-05-02 06:50 nds
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION.i:
+
+ Porting on Win32 system.
+
+2007-04-27 09:57 secher
+
+ * src/Container/: Makefile.am, TestContainerManager.cxx:
+
+ add test of FIndOrLoadComponent in TestContainerManager
+
+2007-04-26 11:35 ribes
+
+ * idl/: DSC_Engines.xml, SALOME_Component.xml, SALOME_Ports.xml:
+
+ headers
+
+2007-04-26 11:32 ribes
+
+ * src/DSC/ParallelDSC/ParallelDSC_i.cxx:
+
+ Header
+
+2007-04-26 11:26 secher
+
+ * idl/SALOME_ContainerManager.idl,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ debug FindBest
+
+2007-04-26 08:14 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fixed bug in method Impl_SaveAs, replaced char* by string, now map of drivers works correctly
+
+2007-04-25 18:19 fayolle
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx,
+ Datastream/DatastreamException.hxx, Datastream/GenericPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/Makefile.am,
+ Datastream/lambda.hpp,
+ Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/CalciumException.hxx,
+ Datastream/Calcium/CalciumInterface.hxx,
+ Datastream/Calcium/CalciumTypes.hxx,
+ Datastream/Calcium/Makefile.am,
+ Datastream/Calcium/test_DataIdContainer.cxx:
+
+ Correction du BUG (non retour des lectures sequentiels) sur appel cp_fin
+
+2007-04-24 18:02 fayolle
+
+ * src/DSC/DSC_User/Datastream/: Calcium/CalciumCouplingPolicy.cxx,
+ Calcium/CalciumCouplingPolicy.hxx,
+ Calcium/CalciumGenericUsesPort.hxx, Calcium/CalciumInterface.hxx,
+ Calcium/CalciumTypes.hxx, Calcium/Makefile.am,
+ Calcium/testInterpolation.cxx, CouplingPolicy.hxx,
+ GenericPort.hxx:
+
+ Correction du BUG (non retour des lectures sequentiels) sur appel cp_fin
+
+2007-04-20 13:29 abd
+
+ * salome_adm/unix/DEPRECATED/make_conclude.in:
+
+ Fix compilation errors of non-automake modules (SUPERV)
+ After using -Wba option in omniidl command line it is necessary to include DynSK.cc into compilation process (by LIB(BIN)_CLIENT(SERVER) rule in Makefile.in).
+
+2007-04-20 13:22 ribes
+
+ * idl/DSC_Engines.idl, src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ - ParallelDSC exemples ok
+
+2007-04-20 09:19 abd
+
+ * src/DSC/DSC_User/: Makefile.am, Datastream/Makefile.am,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/Makefile.am,
+ Datastream/Calcium/testInterpolation.cxx:
+
+ Fix BOOST compilation problem on RedHat
+
+2007-04-20 07:57 abd
+
+ * src/DSC/DSC_User/Datastream/: Makefile.am, lambda.hpp:
+
+ Fix compilation problem on RedHat
+
+2007-04-19 15:24 abd
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ Integrate -Wba flag on common level
+
+2007-04-19 14:42 secher
+
+ * idl/SALOME_ContainerManager.idl, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/TestContainerManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ add cyclic policy in container launching
+
+2007-04-19 13:40 jfa
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ NPAL15643: EDF402: Bug when saving PYHELLO object.
+
+2007-04-19 07:57 abd
+
+ * doc/salome/version.texi:
+
+ According with BUG NPAL15463
+
+2007-04-18 17:41 abd
+
+ * COPYING, configure.ac, bin/addToKillList.py, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.py,
+ bin/setenv.py, bin/virtual_salome.py, doc/salome/version.texi,
+ idl/Makefile.am,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/ltmain.sh,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Container/Component_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.am,
+ src/HDFPersist/test1.c, src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/ModuleGenerator/IDLparser.py,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/TestContainer/TestContainer.cxx,
+ src/Utils/SALOME_utilities.py:
+
+ Merging from V3_2_6pre4
+
+2007-04-16 16:20 prascle
+
+ * Makefile.am, configure.ac, bin/runSalome.py,
+ doc/salome/version.texi, idl/Calcium_Ports.idl,
+ idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Component.xml, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Ports.idl, idl/SALOME_Ports.xml,
+ salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/ltmain.sh, src/Makefile.am,
+ src/Container/Component_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx, src/DSC/Makefile.am,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx,
+ src/DSC/DSC_User/DSC_Exception.hxx, src/DSC/DSC_User/Makefile.am,
+ src/DSC/DSC_User/Superv_Component_i.cxx,
+ src/DSC/DSC_User/Superv_Component_i.hxx,
+ src/DSC/DSC_User/base_port.cxx, src/DSC/DSC_User/base_port.hxx,
+ src/DSC/DSC_User/provides_port.cxx,
+ src/DSC/DSC_User/provides_port.hxx,
+ src/DSC/DSC_User/test_DSC_Exception.cxx,
+ src/DSC/DSC_User/uses_port.cxx, src/DSC/DSC_User/uses_port.hxx,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DatastreamException.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/lambda.hpp,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_provides_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx:
+
+ merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_16apr07
+
+2007-04-16 15:39 prascle
+
+ * idl/Makefile.am, salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ mergefrom BR_Dev_For_4_0 tag mergeto_BR_For40_DSC_16apr07
+
+2007-04-16 12:07 abd
+
+ * src/SALOMEDS/Test/Makefile.am:
+
+ Fix dist option for all included .cxx files
+
+2007-04-13 15:08 ribes
+
+ * idl/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx:
+
+ -Bug fix for PaCO++ Dummy examples
+
+2007-04-13 11:09 ribes
+
+ * idl/Makefile.am:
+
+ - Correcting a bug in the installation of PaCO++ idl headers
+
+2007-04-13 09:48 ribes
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ - Adding Load_ParallelComponent to LifeCycleCORBA
+
+2007-04-12 10:24 jfa
+
+ * bin/launchConfigureParser.py:
+
+ Fix bug 15559: --log-file, -f options of the runSalome.py doesn't work.
+
+2007-04-12 09:54 jfa
+
+ * bin/launchConfigureParser.py:
+
+ Fix bug 15559: --log-file, -f options of the runSalome.py doesn't work.
+
+2007-04-12 09:37 ribes
+
+ * src/DSC/ParallelDSC/ParallelDSC_i.hxx:
+
+ Adding commentary
+
+2007-04-11 16:44 ribes
+
+ * configure.ac, src/DSC/Makefile.am,
+ src/DSC/ParallelDSC/Makefile.am,
+ src/DSC/ParallelDSC/ParallelDSC_i.cxx,
+ src/DSC/ParallelDSC/ParallelDSC_i.hxx:
+
+ Adding ParallelDSC Basic layer implementation
+
+2007-04-11 15:20 ribes
+
+ * configure.ac, idl/Makefile.am, src/Makefile.am,
+ src/Container/Makefile.am, src/DSC/DSC_Basic/Makefile.am,
+ src/ParallelContainer/Makefile.am,
+ src/ParallelContainer/SALOME_ParallelComponent_i.cxx,
+ src/ParallelContainer/SALOME_ParallelComponent_i.hxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerNodeMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyDummy.cxx,
+ src/ParallelContainer/SALOME_ParallelContainerProxyMpi.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.cxx,
+ src/ParallelContainer/SALOME_ParallelContainer_i.hxx:
+
+ - Adding ParallelContainer implementation
+
+2007-04-11 06:47 abd
+
+ * src/SALOMEDS/: SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS_UseCaseIterator_i.hxx:
+
+ Integrate missing files
+
+2007-04-11 06:44 abd
+
+ * src/NamingService/Test/NamingServiceTest.hxx:
+
+ Integrate missing files
+
+2007-04-11 06:39 abd
+
+ * src/: Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Container/SALOME_Component_i.hxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.hxx,
+ Logger/SALOME_Logger_Server.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
+
+ Integrate missing files
+
+2007-04-10 16:41 ribes
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ Bug without PaCO++
+
+2007-04-10 16:35 ribes
+
+ * idl/DSC_Engines.idl, idl/DSC_Engines.xml, idl/Makefile.am,
+ idl/SALOME_Component.idl, idl/SALOME_Component.xml,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_Ports.idl,
+ idl/SALOME_Ports.xml, src/Container/Makefile.am,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ - Adding PaCO++ files for idl generation
+ - Adding methods to the resources manager and
+ - the container manager for launching parallel container.
+
+2007-04-09 15:48 jfa
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ PAL13554: runSalome options. Implement --print-port (for old '-nothing') and --nosave-config.
+
+2007-04-06 14:56 srn
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder.cxx:
+
+ Fixed incorrect check in method DefineComponentInstance
+
+2007-04-06 09:17 vsr
+
+ * COPYING:
+
+ Replace default COPYING file (generated by automake) by the GNU LGPL one (the copy of LICENSE file)
+
+2007-04-05 18:49 caremoli
+
+ * idl/DSC_Engines.idl:
+
+ CCAR: corrections in comment
+
+2007-04-05 18:48 caremoli
+
+ * src/: Container/Component_i.cxx, Container/SALOME_Container.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ TestContainer/SALOME_TestComponent_i.cxx:
+
+ CCAR: few minor corrections + compatibility with omniORB 4.0.6 (_pd_refCount
+ instead of pd_refCount)
+
+2007-04-05 18:42 caremoli
+
+ * src/DSC/: DSC_Basic/DSC_i.cxx, DSC_Basic/DSC_interface.cxx,
+ DSC_User/Superv_Component_i.cxx, DSC_User/Superv_Component_i.hxx,
+ DSC_User/uses_port.hxx, DSC_User/Datastream/AdjacentFunctor.hxx,
+ DSC_User/Datastream/GenericPort.hxx,
+ DSC_User/Datastream/Calcium/Calcium.c,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ DSC_User/Datastream/Calcium/CalciumInterface.hxx:
+
+ CCAR: quelques corrections dans les ports Calcium
+ plus pas mal d'impressions pour debug
+
+2007-04-05 15:03 jfa
+
+ * bin/runSalome.py:
+
+ PAL13554: Redesign options of runSalome.
+
+2007-04-05 12:38 jfa
+
+ * bin/: envSalome.py, launchConfigureParser.py, runSalome,
+ runSalome.py:
+
+ PAL13554: Redesign options of runSalome.
+
+2007-04-04 08:23 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyManager.cxx:
+
+ Increased a size of buffer to store the attribute ID and the read from file study.
+
+2007-04-03 10:27 ribes
+
+ * configure.ac, salome_adm/unix/config_files/check_paco++.m4:
+
+ Parallel conditionnal extension added.
+ Correcting m4 for PaCO++
+
+2007-03-30 16:12 ribes
+
+ * configure.ac, salome_adm/unix/config_files/check_paco++.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub:
+
+ Adding PaCO++ m4 test
+ Adding parallel kernel extension test
+
+2007-03-28 16:16 prascle
+
+ * configure.ac, bin/Makefile.am, bin/envSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runNS.py, bin/runSalome, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/server.py,
+ bin/setenv.py, bin/virtual_salome.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runSession, bin/appliskel/searchFreePort.sh,
+ doc/INSTALL.txt, doc/KERNEL_Services.txt,
+ doc/salome/version.texi, doc/salome/tui/Makefile.am,
+ idl/Makefile.am, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Session.idl, salome_adm/unix/Doxyfile,
+ salome_adm/unix/F77config.h.in, salome_adm/unix/sstream.in,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/production.m4,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Communication.hxx,
+ src/Communication/SenderFactory.hxx,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFattrGetSize.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/salome.py, src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_test.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/SALOME_TestModuleCatalog.py,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Notification/SALOME_NOTIFICATION.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Defines.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.hxx, src/Utils/SALOME_Utils.hxx,
+ src/Utils/SalomeString.hxx, src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
+ src/Utils/Utils_Timer.hxx:
+
+ merge from tag V4_0a2
+
+2007-03-22 16:36 fayolle
+
+ * idl/Makefile.am, salome_adm/Makefile.am:
+
+ Gestion des tailles illimités des noms de fichiers (tar au cours du make dist)
+
+2007-03-22 16:36 fayolle
+
+ * idl/: Calcium_Ports.idl, SALOME_Ports.idl:
+
+ Ajout des types CORBA/CALCIUM pour la gestion des propriétées
+
+2007-03-22 15:25 fayolle
+
+ * configure.ac:
+
+ Gestion de le taille de nom fichiers illimité pour la commande tar (make dist)
+ Modification du nom du maintainer de paquet.
+
+2007-03-22 15:24 fayolle
+
+ * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.hxx,
+ base_port.cxx, base_port.hxx, provides_port.cxx,
+ provides_port.hxx, uses_port.cxx, uses_port.hxx,
+ Datastream/GenericPort.hxx, Datastream/GenericProvidesPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/Makefile.am,
+ Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ Datastream/Calcium/CalciumProvidesPort.cxx,
+ Datastream/Calcium/CalciumProvidesPort.hxx,
+ Datastream/Calcium/CalciumTypes.hxx,
+ Datastream/Calcium/CalciumTypes2CorbaTypes.cxx,
+ Datastream/Calcium/CalciumTypes2CorbaTypes.hxx,
+ Datastream/Calcium/CorbaTypes2CalciumTypes.cxx,
+ Datastream/Calcium/CorbaTypes2CalciumTypes.hxx,
+ Datastream/Calcium/Makefile.am,
+ Datastream/Calcium/calcium_destructors_port_provides.cxx,
+ Datastream/Calcium/calcium_port_factory.hxx,
+ Datastream/Calcium/calcium_port_provides.hxx,
+ Datastream/Calcium/calcium_provides_port.cxx,
+ Datastream/Calcium/calcium_provides_port.hxx,
+ Datastream/Calcium/test_DataIdContainer.cxx:
+
+ Ajout des properties
+ Création de la classe calcium_provides_port (pour appeler directement les
+ méthodes de paramétrage des ports calcium)
+
+2007-03-16 10:37 abd
+
+ * src/Notification/NOTIFICATION_Consumer.cxx:
+
+ OmniORB-4.1.0 porting
+
+2007-03-16 10:33 abd
+
+ * src/: TestContainer/SALOME_TestComponent_i.cxx,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh:
+
+ OmniORB-4.1.0 porting
+
+2007-03-15 07:58 jfa
+
+ * bin/runSalome.py, bin/virtual_salome.py, idl/Makefile.am,
+ src/Container/Makefile.am, src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/Makefile.am, src/HDFPersist/test1.c,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/NOTIFICATION_SWIG/Makefile.am:
+
+ A patch by Paul RASCLE for ASTER cluster (64 bits).
+
+2007-03-09 10:35 caremoli
+
+ * salome_adm/unix/Makefile.am:
+
+ CCAR: add instal of SALOMEconfig.h in include/salome
+
+2007-03-09 10:33 caremoli
+
+ * bin/runSalome.py:
+
+ CCAR: add ConnectionManager launch
+
+2007-03-07 15:58 ribes
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx, test_DSC_Exception.cxx,
+ Datastream/AdjacentFunctor.hxx, Datastream/AdjacentPredicate.hxx,
+ Datastream/ConstTraits.hxx, Datastream/CorbaTypeManipulator.hxx,
+ Datastream/CouplingPolicy.hxx, Datastream/DataIdFilter.hxx,
+ Datastream/DatastreamException.hxx, Datastream/DisplayPair.hxx,
+ Datastream/FindKeyPredicate.hxx, Datastream/GenericPort.hxx,
+ Datastream/GenericUsesPort.hxx, Datastream/IteratorTraits.hxx,
+ Datastream/ProcessTimeIntervalTraits.hxx, Datastream/fake.cc,
+ Datastream/testAdjacentFunctor.cxx,
+ Datastream/testAdjacentPredicate.cxx,
+ Datastream/Calcium/Calcium.c,
+ Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ Datastream/Calcium/CalciumInterface.hxx,
+ Datastream/Calcium/CalciumPortTraits.hxx,
+ Datastream/Calcium/CalciumTypes.hxx,
+ Datastream/Calcium/CalciumTypesManipulator.hxx,
+ Datastream/Calcium/Copy2CorbaSpace.hxx,
+ Datastream/Calcium/Copy2UserSpace.hxx,
+ Datastream/Calcium/calcium.h, Datastream/Calcium/calcium.hf,
+ Datastream/Calcium/calciumP.h,
+ Datastream/Calcium/calcium_complex_port_uses.hxx,
+ Datastream/Calcium/calcium_destructors_port_provides.cxx,
+ Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ Datastream/Calcium/calcium_double_port_uses.hxx,
+ Datastream/Calcium/calcium_integer_port_uses.hxx,
+ Datastream/Calcium/calcium_logical_port_uses.hxx,
+ Datastream/Calcium/calcium_port_factory.cxx,
+ Datastream/Calcium/calcium_port_factory.hxx,
+ Datastream/Calcium/calcium_port_provides.hxx,
+ Datastream/Calcium/calcium_real_port_uses.hxx,
+ Datastream/Calcium/calcium_repository_types.cxx,
+ Datastream/Calcium/calcium_string_port_uses.hxx,
+ Datastream/Calcium/calcium_uses_port.cxx,
+ Datastream/Calcium/calcium_uses_port.hxx,
+ Datastream/Calcium/testInterpolation.cxx,
+ Datastream/Calcium/test_CalciumInterface.cxx,
+ Datastream/Calcium/test_DataIdContainer.cxx,
+ Datastream/Calcium/version.h,
+ Datastream/Palm/PalmCouplingPolicy.hxx,
+ Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ Datastream/Palm/palm_data_short_port_provides.hxx,
+ Datastream/Palm/palm_port_factory.cxx,
+ Datastream/Palm/palm_port_factory.hxx,
+ Datastream/Palm/test_DataIdContainer.cxx:
+
+ license informations.
+
+2007-03-07 14:12 ribes
+
+ * src/DSC/DSC_User/Basic/: basic_port_factory.cxx,
+ basic_port_factory.hxx, data_short_port_provides.cxx,
+ data_short_port_provides.hxx, data_short_port_uses.cxx,
+ data_short_port_uses.hxx:
+
+ Doxygen documentation, english comments.
+
+2007-03-07 10:33 ribes
+
+ * src/DSC/DSC_User/: Superv_Component_i.cxx,
+ Superv_Component_i.hxx, base_port.hxx, provides_port.cxx,
+ provides_port.hxx, uses_port.cxx, uses_port.hxx:
+
+ Doxygen documentation and english comments.
+
+2007-03-07 07:02 abd
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ Fix error inclide after UTILS merging
+
+2007-03-06 12:53 jfa
+
+ * src/Communication/SALOME_Matrix_i.cxx:
+
+ Integrated a correction from Nicolas Crouzet.
+
+2007-03-06 11:40 ribes
+
+ * idl/: Calcium_Ports.idl, Palm_Ports.idl:
+
+ English comments.
+
+2007-03-06 10:56 ribes
+
+ * src/DSC/: DSC_Basic/Makefile.am, DSC_User/Makefile.am,
+ DSC_User/Basic/Makefile.am, DSC_User/Datastream/Makefile.am,
+ DSC_User/Datastream/Calcium/Makefile.am,
+ DSC_User/Datastream/Palm/Makefile.am:
+
+ LDFLAGS is now correct.
+
+2007-03-06 10:28 ribes
+
+ * src/DSC/DSC_User/: Makefile.am, Superv_Component_i.hxx:
+
+ lib DSCSuperv compiles
+
+2007-03-05 17:05 ribes
+
+ * configure.ac, idl/Calcium_Ports.idl, idl/Makefile.am,
+ idl/Palm_Ports.idl, idl/SALOME_Ports.idl,
+ src/DSC/DSC_User/Makefile.am, src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am:
+
+ Calcium and Palm ok
+
+2007-03-05 09:59 ribes
+
+ * configure.ac, src/DSC/Makefile.am,
+ src/DSC/DSC_User/Basic/Makefile.am,
+ src/DSC/DSC_User/Basic/basic_port_factory.cxx,
+ src/DSC/DSC_User/Basic/basic_port_factory.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_provides.hxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.cxx,
+ src/DSC/DSC_User/Basic/data_short_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentFunctor.hxx,
+ src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx,
+ src/DSC/DSC_User/Datastream/ConstTraits.hxx,
+ src/DSC/DSC_User/Datastream/CorbaTypeManipulator.hxx,
+ src/DSC/DSC_User/Datastream/CouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/DataIdFilter.hxx,
+ src/DSC/DSC_User/Datastream/DatastreamException.hxx,
+ src/DSC/DSC_User/Datastream/DisplayPair.hxx,
+ src/DSC/DSC_User/Datastream/FindKeyPredicate.hxx,
+ src/DSC/DSC_User/Datastream/GenericPort.hxx,
+ src/DSC/DSC_User/Datastream/GenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/IteratorTraits.hxx,
+ src/DSC/DSC_User/Datastream/Makefile.am,
+ src/DSC/DSC_User/Datastream/ProcessTimeIntervalTraits.hxx,
+ src/DSC/DSC_User/Datastream/fake.cc,
+ src/DSC/DSC_User/Datastream/lambda.hpp,
+ src/DSC/DSC_User/Datastream/testAdjacentFunctor.cxx,
+ src/DSC/DSC_User/Datastream/testAdjacentPredicate.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/Calcium.c,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericProvidesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumGenericUsesPort.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumInterface.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumPortTraits.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypes.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/CalciumTypesManipulator.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2CorbaSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Copy2UserSpace.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/Makefile.am,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium.hf,
+ src/DSC/DSC_User/Datastream/Calcium/calciumP.h,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_complex_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_provides.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_destructors_port_uses.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_double_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_logical_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_real_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_repository_types.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_string_port_uses.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/calcium_uses_port.hxx,
+ src/DSC/DSC_User/Datastream/Calcium/testInterpolation.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_CalciumInterface.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/test_DataIdContainer.cxx,
+ src/DSC/DSC_User/Datastream/Calcium/version.h,
+ src/DSC/DSC_User/Datastream/Palm/Makefile.am,
+ src/DSC/DSC_User/Datastream/Palm/PalmCouplingPolicy.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_seq_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_data_short_port_provides.hxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.cxx,
+ src/DSC/DSC_User/Datastream/Palm/palm_port_factory.hxx,
+ src/DSC/DSC_User/Datastream/Palm/test_DataIdContainer.cxx:
+
+ Adding Datastream and DSC_User, not compile for now
+
+2007-03-02 14:55 vsr
+
+ * configure.ac:
+
+ Increment SALOME version number : 3.2.6
+
+2007-03-01 14:53 ribes
+
+ * src/DSC/DSC_User/: DSC_Exception.hxx, Superv_Component_i.cxx,
+ Superv_Component_i.hxx, base_port.hxx, provides_port.cxx,
+ provides_port.hxx, test_DSC_Exception.cxx, uses_port.cxx,
+ uses_port.hxx:
+
+ DSC_User base files added
+
+2007-03-01 14:49 ribes
+
+ * src/DSC/DSC_User/Makefile.am:
+
+ Adding DSC_User directory
+
+2007-03-01 11:00 ribes
+
+ * src/DSC/DSC_Basic/: DSC_interface.cxx, DSC_interface.hxx:
+
+ Doxygen documentation, english comment.
+
+2007-03-01 10:20 ribes
+
+ * src/DSC/DSC_Basic/DSC_i.hxx:
+
+ Doxygen documentation, english comments
+
+2007-02-28 16:30 ribes
+
+ * src/DSC/DSC_Basic/DSC_Callbacks.hxx:
+
+ Doxygen documentation and english comments.
+
+2007-02-28 16:29 ribes
+
+ * src/DSC/DSC_Basic/ConnectionManager_i.hxx:
+
+ Adding virtual to the destructor.
+
+2007-02-28 16:06 ribes
+
+ * src/DSC/DSC_Basic/: PortProperties_i.cxx, PortProperties_i.hxx:
+
+ Doxygen documentation and english comments
+
+2007-02-28 15:59 ribes
+
+ * src/DSC/DSC_Basic/: ConnectionManager_i.cxx,
+ ConnectionManager_i.hxx, SALOME_ConnectionManagerServer.cxx:
+
+ Doxygen documentation, C++ warning and english comments.
+
+2007-02-28 15:53 ribes
+
+ * idl/: DSC_Engines.idl, SALOME_Ports.idl:
+
+ Doxygen documentation ok
+
+2007-02-28 15:14 ribes
+
+ * idl/DSC_Engines.idl:
+
+ Doxygen Documentation ok
+
+2007-02-28 11:56 mnt
+
+ * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
+
+ Update for OCC6.2. Adding compilation key -D_OCC64.
+
+2007-02-28 10:05 ribes
+
+ * idl/SALOMEDS.idl:
+
+ Doxygen documentation : image correction
+
+2007-02-28 07:45 mkr
+
+ * bin/killSalome.py:
+
+ Fix for bug NPAL14859 : Some Process are not killed by killSalome.py.
+
+2007-02-27 16:37 ribes
+
+ * idl/DSC_Engines.idl:
+
+ Doxugen Documentation
+
+2007-02-27 11:44 ribes
+
+ * src/DSC/DSC_Basic/: ConnectionManager_i.cxx,
+ ConnectionManager_i.hxx, DSC_Callbacks.hxx, DSC_i.cxx, DSC_i.hxx,
+ DSC_interface.cxx, DSC_interface.hxx, PortProperties_i.cxx,
+ PortProperties_i.hxx, SALOME_ConnectionManagerServer.cxx:
+
+ Headers OK
+ CORBA includes OK
+
+2007-02-27 11:05 ribes
+
+ * configure.ac, src/Makefile.am, src/DSC/Makefile.am,
+ src/DSC/DSC_Basic/ConnectionManager_i.cxx,
+ src/DSC/DSC_Basic/ConnectionManager_i.hxx,
+ src/DSC/DSC_Basic/DSC_Callbacks.hxx, src/DSC/DSC_Basic/DSC_i.cxx,
+ src/DSC/DSC_Basic/DSC_i.hxx, src/DSC/DSC_Basic/DSC_interface.cxx,
+ src/DSC/DSC_Basic/DSC_interface.hxx,
+ src/DSC/DSC_Basic/Makefile.am,
+ src/DSC/DSC_Basic/PortProperties_i.cxx,
+ src/DSC/DSC_Basic/PortProperties_i.hxx,
+ src/DSC/DSC_Basic/SALOME_ConnectionManagerServer.cxx:
+
+ Adding DSC's basic layer.
+ Needs to fix CORBA headers declarations and
+ fix debug infos.
+
+2007-02-27 10:07 ribes
+
+ * Makefile.am:
+
+ Ajout de ACLOCAL_AMFLAGS afin de permettre une regeneration
+ automatique des fichiers .in
+
+2007-02-26 17:35 ribes
+
+ * idl/: Calcium_Ports.idl, DSC_Engines.idl, Makefile.am,
+ SALOME_Ports.idl:
+
+ Ajout des fichiers idl pour l'extension DSC
+ et le support des ports Calcium
+
+2007-02-16 15:36 jfa
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ Check presence of include file program_options.hpp, required for MEDSPLITTER compilation.
+
+2007-02-15 12:48 abd
+
+ * bin/: nameserver.py, runNS.py:
+
+ Bug IPAL14904
+ Using obvious change rigth access to catalot $(TMPDIR)/logs
+
+2007-02-15 10:52 srn
+
+ * src/: SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/Test/Makefile.am, SALOMEDS/Test/SALOMEDSTest.cxx,
+ SALOMEDS/Test/SALOMEDSTest.hxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeComment.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeDrawable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeExpandable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeExternalFileDef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeFileType.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeFlags.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeGraphic.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeIOR.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeLocalID.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeName.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeOpened.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeParameter.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePersistentRef.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePixMap.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributePythonObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSelectable.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeStudyProperties.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfReal.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTableOfString.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTarget.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTextColor.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDS/Test/SALOMEDSTest_AttributeUserID.cxx,
+ SALOMEDS/Test/SALOMEDSTest_ChildIterator.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponent.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SComponentIterator.cxx,
+ SALOMEDS/Test/SALOMEDSTest_SObject.cxx,
+ SALOMEDS/Test/SALOMEDSTest_Study.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx,
+ SALOMEDS/Test/SALOMEDSTest_StudyManager.cxx,
+ SALOMEDS/Test/SALOMEDSTest_UseCase.cxx,
+ SALOMEDS/Test/TestSALOMEDS.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
+
+ Merge modifications for SALOMEDS Unittests
+
+2007-02-15 10:40 mzn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Fix for bug NPAL14900(Pb of performances with FindObjectIOR).
+
+2007-02-15 08:28 mpv
+
+ * configure.ac:
+
+ MPV: merge from branch BR_GUI_AutoTools
+
+2007-02-15 08:20 mpv
+
+ * idl/Makefile.am:
+
+ MPV: merge from branch BR_GUI_AutoTools
+
+2007-02-15 08:03 mpv
+
+ * configure.ac:
+
+ MPV: merge with branch BR_GUI_AutoTools
+
+2007-02-14 11:52 abd
+
+ * bin/setenv.py:
+
+ Correct lib name for Mandriva64
+
+2007-02-13 16:16 abd
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Support old formats for separator of MODULECatalog.xml file paths
+
+2007-02-09 16:22 abd
+
+ * configure.ac:
+
+ Update Salome version
+
+2007-02-08 12:42 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ NPAL14828: Impossible to load a study created in batch mode. Improve getting a directory path in LoadWith method.
+
+2007-02-08 11:02 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Bug 14833
+
+2007-02-08 10:32 prascle
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ Bug 14829
+
+2007-02-08 09:23 prascle
+
+ * src/: Container/SALOME_ContainerPy.py, KERNEL_PY/salome_study.py:
+
+ Bug 14829
+
+2007-02-07 10:07 abd
+
+ * src/Utils/Test/Makefile.am:
+
+ Merging with WPDev
+
+2007-02-07 10:03 abd
+
+ * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am,
+ SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ SALOMELocalTrace/utilities.h, SALOMELocalTrace/Test/Makefile.am,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ SALOMETraceCollector/Test/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestMPIContainer/Makefile.am,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
+ Utils/Makefile.am, Utils/OpUtil.hxx, Utils/SALOME_Utils.hxx,
+ Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.cxx,
+ Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
+ Utils/Utils_Mutex.cxx, Utils/Utils_Mutex.hxx,
+ Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.hxx,
+ Utils/duplicate.cxx:
+
+ Merging with WPDev
+
+2007-02-07 10:00 abd
+
+ * src/: SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cxx,
+ SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeString.cxx,
+ SALOMEDS/SALOMEDS_AttributeString.hxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_Attributes.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Client.cxx,
+ SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_Defines.hxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS/SALOMEDS_FileType.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ SALOMEDS/Test/Makefile.am, SALOMEDSClient/Makefile.am,
+ SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeString.hxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/Test/Makefile.am:
+
+ Merging with WPDev
+
+2007-02-07 09:57 abd
+
+ * src/: ModuleGenerator/Makefile.am, NOTIFICATION_SWIG/Makefile.am,
+ NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NOTIFICATION_SWIG/SALOME_NOTIFICATION_SWIG.hxx,
+ NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am, Notification/Makefile.am,
+ Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Notification/SALOME_NOTIFICATION.hxx, Registry/Makefile.am,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry.hxx, ResourcesManager/Makefile.am,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ Merging with WPDev
+
+2007-02-07 09:54 abd
+
+ * src/: GenericObj/Makefile.am, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFdatasetGetOrder.c,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/Makefile.am, KERNEL_PY/import_hook.py,
+ KERNEL_PY/salome.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome_test.py, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ Logger/Makefile.am, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/Test/Makefile.am,
+ MPIContainer/Makefile.am, ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/Makefile.am,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/SALOME_TestModuleCatalog.py:
+
+ Merging with WPDev
+
+2007-02-07 09:51 abd
+
+ * src/: Makefile.am, Basics/BasicsGenericDestructor.cxx,
+ Basics/BasicsGenericDestructor.hxx, Basics/Makefile.am,
+ Basics/Test/Makefile.am, Communication/Makefile.am,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.hxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Communication.hxx,
+ Communication/SenderFactory.hxx, Communication_SWIG/Makefile.am,
+ Container/Container_i.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.cxx,
+ Container/SALOME_FileTransfer_i.hxx:
+
+ Merging with WPDev
+
+2007-02-07 09:47 abd
+
+ * salome_adm/unix/: Doxyfile, F77config.h.in, sstream.in,
+ config_files/ac_cxx_depend_flag.m4,
+ config_files/check_cppunit.m4, config_files/check_qt.m4,
+ config_files/production.m4,
+ config_files/DEPRECATED/ac_cxx_bool.m4,
+ config_files/DEPRECATED/ac_cxx_mutable.m4,
+ config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ config_files/DEPRECATED/ac_cxx_typename.m4,
+ config_files/DEPRECATED/check_pthreads.m4,
+ config_files/DEPRECATED/mkinstalldirs,
+ config_files/ac_cc_warnings.m4, config_files/check_Salome.m4,
+ config_files/check_java.m4, config_files/config.guess,
+ config_files/config.sub, config_files/install-sh,
+ config_files/ltmain.sh, config_files/missing:
+
+ Merging with WPDev
+
+2007-02-07 09:43 abd
+
+ * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Session.idl, resources/Makefile.am,
+ salome_adm/unix/DEPRECATED/make_omniorb.in:
+
+ Merging with WPDev
+
+2007-02-07 09:39 abd
+
+ * doc/salome/: Makefile.am, version.texi, tui/Makefile.am:
+
+ Merging with WPDev
+
+2007-02-07 09:35 abd
+
+ * DEPRECATED/Makefile.in, bin/Makefile.am, bin/envSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/launchSalome.py, bin/nameserver.py, bin/orbmodule.py,
+ bin/runNS.py, bin/runSalome, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/server.py,
+ bin/setenv.py, bin/virtual_salome.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runSession, bin/appliskel/searchFreePort.sh,
+ Makefile.am, configure.ac, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am, doc/rst.css:
+
+ Merging with WPDev
+
+2007-02-06 09:50 prascle
+
+ * src/Container/Component_i.cxx:
+
+ PR: Bug 14147
+
+2007-02-01 11:32 jfa
+
+ * configure.ac:
+
+ Change version to 3.2.5
+
+2007-02-01 11:10 ribes
+
+ * src/DSC/Makefile.am:
+
+ Test de commit
+ Ajout d'un repertoire pour les ports DSC
+
+2007-01-31 14:36 rahuel
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ self._serviceName = '' was missing in the contructor. See Bug PAL9128
+
+2007-01-22 14:51 prascle
+
+ * bin/addToKillList.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/runSalome.py,
+ src/Container/Component_i.cxx, src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/SALOMELocalTrace/utilities.h, src/Utils/SALOME_utilities.py:
+
+ PR: bug 14147 remove traces
+
+2007-01-16 10:19 mpv
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ MPV: fix for PAL11765: if variable SALOME_trace not found do not raise exception.
+
+2007-01-12 08:54 mpv
+
+ * src/TestContainer/TestContainer.cxx:
+
+ MPV: fix for IPAL11765. In case of Naming service initialization problems output just "Exception" instead of "Unknown exception"
+
+2007-01-12 07:41 mpv
+
+ * bin/runSalome.py:
+
+ MPV: fix for IPAL11765. FactoryServer must be launched as standalone in terminal mode to.
+
+2007-01-10 08:45 vsr
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ Fix NPAL14451 : Implementation type of components not handled in IDLparser.py
+
+2006-12-19 08:14 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfString.cxx:
+
+ Added CORBA::string_dup for the input string arrays
+
+2006-12-18 09:56 srn
+
+ * src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx:
+
+ Updated test cases
+
+2006-12-18 09:03 srn
+
+ * src/SALOMEDS/Test/SALOMEDSTest_StudyBuilder.cxx:
+
+ Updated test cases
+
+2006-12-18 09:02 srn
+
+ * src/SALOMEDS/Test/TestSALOMEDS.cxx:
+
+ Added a possibility to wait Supervisor component being launched, one needs to define environment variable SALOMEDS_UNITTESTSS_WAIT_SUPERVISOR
+
+2006-12-18 09:00 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
+
+ Added checks for null input objects
+
+2006-12-14 15:52 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fixed method NewComponent, added check for empty DataType. Now it's impossible to create component with empty DataType
+
+2006-12-14 15:50 srn
+
+ * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_Study_i.cxx:
+
+ Fixed bugs with not empty parameters
+
+2006-12-14 15:50 srn
+
+ * src/SALOMEDS/Test/: SALOMEDSTest_SObject.cxx,
+ SALOMEDSTest_Study.cxx, SALOMEDSTest_StudyBuilder.cxx,
+ SALOMEDSTest_StudyManager.cxx:
+
+ Added additional tests for incorrect input parameters
+
+2006-12-14 12:40 srn
+
+ * src/SALOMEDS/Test/: SALOMEDSTest_AttributeComment.cxx,
+ SALOMEDSTest_AttributeExternalFileDef.cxx,
+ SALOMEDSTest_AttributeFileType.cxx,
+ SALOMEDSTest_AttributeGraphic.cxx,
+ SALOMEDSTest_AttributeName.cxx,
+ SALOMEDSTest_AttributeParameter.cxx,
+ SALOMEDSTest_AttributePersistentRef.cxx,
+ SALOMEDSTest_AttributePixMap.cxx,
+ SALOMEDSTest_AttributePythonObject.cxx,
+ SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ SALOMEDSTest_AttributeTableOfInteger.cxx,
+ SALOMEDSTest_AttributeTarget.cxx,
+ SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDSTest_AttributeUserID.cxx, SALOMEDSTest_UseCase.cxx,
+ TestSALOMEDS.cxx:
+
+ Added additional tests for incorrect input parameters
+
+2006-12-14 12:39 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS_AttributeUserID.cxx:
+
+ Added additional checks of inputed GUID string, now if the string is not valid GUID the exception "invalid_argument" is raised
+
+2006-12-14 12:37 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx, SALOMEDSImpl_UseCaseBuilder.cxx:
+
+ Added additional checks of input parameters
+
+2006-12-14 11:42 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_StudyManager.cxx:
+
+ In StudyManager removed Alliances code. In Sequences added check of Index correctness
+
+2006-12-14 09:16 srn
+
+ * src/SALOMEDS/SALOMEDS_AttributeTarget.cxx:
+
+ Fixed bug in method Get (standalone case)
+
+2006-12-14 08:52 srn
+
+ * src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx:
+
+ Fixed bug in method Value of embedded case
+
+2006-12-13 14:31 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fixed bug in method FindOrCreateAttribute, now AttributeTreeNode is correctly processed
+
+2006-12-13 12:52 srn
+
+ * src/SALOMEDS/Test/TestSALOMEDS.cxx:
+
+ Improved the process of launching the Salome
+
+2006-12-13 12:51 srn
+
+ * src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx:
+
+ Fixed method InsertBefore
+
+2006-12-13 12:51 srn
+
+ * src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx:
+
+ Fixed bug in method GetUseCaseIterator, now there is no crash when an Iterator is requested for Null SObject
+
+2006-12-13 12:49 srn
+
+ * src/SALOMEDS/: SALOMEDS_Study_i.hxx, SALOMEDS_Study_i.cxx:
+
+ Modified method EnableUseCaseAutoFilling
+
+2006-12-13 12:48 srn
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx:
+
+ Added method GetImpl that returns an implementaion of StudyBuilder
+
+2006-12-13 12:47 srn
+
+ * src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx:
+
+ Fixed bug in method SetTreeID
+
+2006-12-13 12:46 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx:
+
+ Added inheritance from GenericAttribute
+
+2006-12-13 12:46 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Study.hxx:
+
+ Fixed bugs in the corresponding classes that caused error in Unittests
+
+2006-12-12 13:46 srn
+
+ * src/SALOMEDS/Test/: SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDSTest_Study.cxx:
+
+ Added methods that weren't tested
+
+2006-12-11 13:33 srn
+
+ * src/SALOMEDS/Test/TestSALOMEDS.cxx:
+
+ Fixed bug with retrieval of SALOMEDS_UNITTESTS_PORT variable
+
+2006-12-07 12:52 mkr
+
+ * src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx:
+
+ Fix for PAL14049.
+
+2006-12-06 08:15 srn
+
+ * src/SALOMEDS/Test/: TestSALOMEDS.cxx,
+ SALOMEDSTest_AttributeTreeNode.cxx, SALOMEDSTest_UseCase.cxx:
+
+ Added support of environment variables and preprocessor definitions
+
+2006-12-05 16:17 srn
+
+ * src/SALOMEDS/Test/: Makefile.am, SALOMEDSTest.cxx,
+ SALOMEDSTest.hxx, SALOMEDSTest_AttributeComment.cxx,
+ SALOMEDSTest_AttributeDrawable.cxx,
+ SALOMEDSTest_AttributeExpandable.cxx,
+ SALOMEDSTest_AttributeExternalFileDef.cxx,
+ SALOMEDSTest_AttributeFileType.cxx,
+ SALOMEDSTest_AttributeFlags.cxx,
+ SALOMEDSTest_AttributeGraphic.cxx, SALOMEDSTest_AttributeIOR.cxx,
+ SALOMEDSTest_AttributeInteger.cxx,
+ SALOMEDSTest_AttributeLocalID.cxx,
+ SALOMEDSTest_AttributeName.cxx, SALOMEDSTest_AttributeOpened.cxx,
+ SALOMEDSTest_AttributeParameter.cxx,
+ SALOMEDSTest_AttributePersistentRef.cxx,
+ SALOMEDSTest_AttributePixMap.cxx,
+ SALOMEDSTest_AttributePythonObject.cxx,
+ SALOMEDSTest_AttributeReal.cxx,
+ SALOMEDSTest_AttributeSelectable.cxx,
+ SALOMEDSTest_AttributeSequenceOfInteger.cxx,
+ SALOMEDSTest_AttributeSequenceOfReal.cxx,
+ SALOMEDSTest_AttributeStudyProperties.cxx,
+ SALOMEDSTest_AttributeTableOfInteger.cxx,
+ SALOMEDSTest_AttributeTableOfReal.cxx,
+ SALOMEDSTest_AttributeTableOfString.cxx,
+ SALOMEDSTest_AttributeTarget.cxx,
+ SALOMEDSTest_AttributeTextColor.cxx,
+ SALOMEDSTest_AttributeTextHighlightColor.cxx,
+ SALOMEDSTest_AttributeTreeNode.cxx,
+ SALOMEDSTest_AttributeUserID.cxx, SALOMEDSTest_ChildIterator.cxx,
+ SALOMEDSTest_SComponent.cxx, SALOMEDSTest_SComponentIterator.cxx,
+ SALOMEDSTest_SObject.cxx, SALOMEDSTest_Study.cxx,
+ SALOMEDSTest_StudyBuilder.cxx, SALOMEDSTest_StudyManager.cxx,
+ SALOMEDSTest_UseCase.cxx, TestSALOMEDS.cxx:
+
+ Added use cases for SALOMEDS package
+
+2006-12-05 15:39 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfString.cxx:
+
+ Fix of bugs found when running the Unit Test for SALOMEDS
+
+2006-12-05 11:06 mkr
+
+ * src/: SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx:
+
+ Fix for PAL14049 : EDF PAL 335 SMESH : SIGSEV when we save the file after a transformation.
+
+2006-12-04 10:04 jfa
+
+ * configure.ac:
+
+ Change version to 3.2.4
+
+2006-12-01 10:30 prascle
+
+ * src/KERNEL_PY/import_hook.py:
+
+ PAL 14087
+
+2006-11-30 15:19 prascle
+
+ * bin/: runSalome.py, appliskel/runAppli:
+
+ PAL 14078
+
+2006-11-30 15:18 prascle
+
+ * bin/virtual_salome.py:
+
+ Python 2.4 compatibility
+
+2006-11-28 15:59 vsr
+
+ * idl/SALOME_Session.idl:
+
+ Improvement PAL14013: send a message to the GUI from the container to emit signal
+
+2006-11-27 13:15 mkr
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesManager.cxx:
+
+ The modfications sent by Jean are for the use of Salome on a batch
+ cluster like CCRT.
+
+2006-11-27 12:53 jfa
+
+ * bin/: killSalomeWithPort.py, runSalome.py, salome_session.py,
+ appliskel/killCurrentPort, appliskel/runSession,
+ appliskel/searchFreePort.sh:
+
+ Modifications for CCRT cluster: use .omniORB_last.cfg instead of .omniORB_{host}_last.cfg
+
+2006-11-27 11:21 mkr
+
+ * src/: SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Fix for PAL13967 : Distributed supervision graphs - Problem with "SALOME_trace".
+
+2006-11-24 13:27 mzn
+
+ * src/Container/Container_i.cxx:
+
+ Fix for bug PAL13948(Impossible to load VISU component in batch mode).
+
+2006-11-22 09:25 vsr
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Improvement PAL13959: improve --splash and --gui options: appy patch from Erwan ADAM
+
+2006-11-21 15:33 vsr
+
+ * bin/runSalome.py:
+
+ Integrated correction from Erwan ADAM concerning the previous integration
+
+2006-11-21 14:39 jfa
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ On CCRT the installation of qt have only a 'lib' directory.
+
+2006-11-21 13:08 vsr
+
+ * bin/runSalome.py:
+
+ Integrate fix from Jean RAHUEL: enable killall module importing with the --terminal parameter
+
+2006-11-21 12:10 vsr
+
+ * bin/: runSalome, runSalome.py:
+
+ Improvement PAL13956: improve runSalome script: apply patch from Erwan ADAM
+
+2006-11-16 11:39 prascle
+
+ * bin/: config_appli.xml, virtual_salome.py:
+
+ PR: allow an easy first application install with minimal modifications
+
+2006-11-08 06:56 mpv
+
+ * idl/Makefile.am, configure.ac:
+
+ Autotools compilation
+
+2006-11-01 16:33 abd
+
+ * bin/nameserver.py:
+
+ Using "USER" env variable on LINUX and "Username" variable on WIN32
+
+2006-11-01 15:26 abd
+
+ * bin/launchConfigureParser.py:
+
+ Update script for processing command line options on WIN platform
+
+2006-10-31 15:40 akk
+
+ * salome_adm/unix/config_files/check_cppunit.m4:
+
+ Patch, provided in PAL13669.
+
+2006-10-30 15:52 jfa
+
+ * configure.ac:
+
+ Change version to 3.2.3
+
+2006-10-30 10:16 abd
+
+ * bin/envSalome.py:
+
+ Update script for testing on new environment
+
+2006-10-27 15:36 abd
+
+ * bin/orbmodule.py:
+
+ Remove reference to runNS.py
+
+2006-10-26 10:40 ouv
+
+ * bin/server.py:
+
+ "import os" is added
+
+2006-10-25 10:42 abd
+
+ * bin/: Makefile.am, nameserver.py:
+
+ Crossplatfrom execution of salome
+
+2006-10-24 19:12 prascle
+
+ * src/: Container/SALOME_Container.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: From Antony GEAY : non regression (2.2.x) on launch remote container without SALOME APPLICATION configuration
+
+2006-10-24 14:07 prascle
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ PR: Shutdown containers correction: avoid CORBA calls to a container during its shutdown (see KERNEL Unit Tests)
+
+2006-10-24 10:17 abd
+
+ * bin/runSalome.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Fix ModuleCatalog arguments on Linux
+
+2006-10-23 14:56 abd
+
+ * bin/launchSalome.py:
+
+ Crossplatform launching of Salome
+
+2006-10-23 09:46 prascle
+
+ * src/KERNEL_PY/import_hook.py:
+
+ PR: bug PAL 13665 and EDF 311
+
+2006-10-23 09:00 abd
+
+ * bin/: orbmodule.py, runNS.py, runSalome.py:
+
+ Runnig without omniNames console
+
+2006-10-19 15:18 abd
+
+ * bin/orbmodule.py:
+
+ First stable version after merging with V3_2_2
+
+2006-10-19 08:34 abd
+
+ * configure.ac, DEPRECATED/configure.in.base, bin/Makefile.am,
+ bin/appli_clean.sh, bin/appli_gen.py, bin/appli_install.sh,
+ bin/config_appli.xml, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runNS.py, bin/runSalome.py, bin/setenv.py,
+ bin/virtual_salome.py, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, doc/INSTALL.txt,
+ doc/README.cluster-CCRT, doc/SALOME_Application.txt,
+ doc/salome/version.texi, doc/salome/tui/Makefile.am,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/production.m4,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx,
+ src/Communication/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/PyInterp.py, src/KERNEL_PY/batchmode_salome.py,
+ src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/TestModuleCatalog.py,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/Makefile.in, src/Registry/Makefile.in,
+ src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS.hxx, src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/testDS.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/Utils/SALOME_Utils.hxx, src/Utils/SalomeString.hxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
+ src/Utils/Utils_Identity.py, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_SignalsHandler.h,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx:
+
+ First stable version after merging with V3_2_2
+
+2006-10-18 14:36 vsr
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Imp PAL13554 : -file option of runSalome
+
+2006-10-17 13:31 mkr
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix for bug IPAL13339 : Mandriva64 porting: "Fatal error" after trying to save study.
+
+2006-10-17 12:49 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeString.hxx:
+
+ IMP PAL13614: Added a new attribute AttributeString
+
+2006-10-17 12:29 srn
+
+ * idl/SALOMEDS_Attributes.idl, src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeString.hxx,
+ src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/SALOMEDS_AttributeString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeString_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx:
+
+ IMP PAL13614: Added a new attrubute AttributeString
+
+2006-10-16 15:21 mpv
+
+ * src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, idl/SALOMEDS.idl:
+
+ MPV: fix for bug 13534
+
+ Result of GetLocalImp methods is pointer. For 64-bits platforms it is 8 bytes. Use CORBA::LongLong to send 8 bytes.
+
+2006-10-16 13:23 mzn
+
+ * src/Container/Container_i.cxx:
+
+ Fix for PAL13517("Clean shutdown of Salome containers").
+
+2006-10-12 16:24 epa
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx:
+
+ Incorrect default values of AttributeExpandable, AttributeSelectable, AttributeTextColor and AttributeTextHighlightColor corrected to be the same as in SALOME 2.2.x
+
+2006-10-12 14:30 mpv
+
+ * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
+
+ MPV: Add '-m64' flag for all C and C++ compilation flags for 64bit platforms
+
+2006-10-03 10:01 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Fix PAL13553 : bug in launchConfigureParser.py when GUI_ROOT_DIR is bad defined
+
+2006-09-28 10:35 mnt
+
+ * src/SALOMEDS/: SALOMEDS_SObject.cxx, SALOMEDS_Study.cxx:
+
+ CORBA::long as C++ long type collision on 64-bit Linux corrected
+
+2006-09-28 10:15 jfa
+
+ * bin/launchConfigureParser.py:
+
+ PAL10867: noexcepthandler option in GUI not working. Disable signals catching.
+
+2006-09-27 13:21 mnt
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Correction for problem: Command "dump stydy" doesn't work at first time at load Post-Pro module.
+
+2006-09-26 10:12 mnt
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx:
+
+ Update for gcc4.1.1
+
+2006-09-22 12:33 vsr
+
+ * doc/salome/tui/Makefile.am:
+
+ Fix bug with 'make dist' step - an absolute directory is created inside the dist archive because of mistake in EXTRA_DIST variable
+
+2006-09-21 14:41 mkr
+
+ * salome_adm/unix/config_files/ac_cxx_depend_flag.m4:
+
+ Debug for correct Med files import in MED and VISU components on
+ 64-bit Mandriva platform (bugs IPAL13255, IPAL13300, IPAL13304, IPAL13309).
+
+2006-09-18 10:16 ouv
+
+ * src/: KERNEL_PY/salome_test.py,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Bug SWP13450 : Using of 'cp' command is incorrect
+
+2006-09-11 09:18 prascle
+
+ * bin/appli_gen.py:
+
+ PR: Set MMGT_REENTRANT variable to 1, to allow thread safe behaviour of Cascade (see bug 12651)
+
+2006-09-11 07:38 abd
+
+ * bin/launchSalome.py:
+
+ This file realise functionality instead runSalome (linux file)
+
+2006-09-08 10:16 ouv
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ SWP13333 : Copy/Paste med-objects in Post-Pro is incorrect
+
+2006-09-07 09:06 mkr
+
+ * doc/salome/tui/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl:
+
+ Fix for bug PAL13386 : EDF PAL KERNEL DOC 276 Wrong links in documentation.
+
+2006-09-05 17:28 prascle
+
+ * bin/appli_gen.py:
+
+ PR: ROOT_DIR to virtual link = APPLI directory
+
+2006-09-05 13:34 vsr
+
+ * bin/virtual_salome.py:
+
+ PAL13340 : fix launching problem on 64-bit platforms (more correct check)
+
+2006-09-05 08:13 vsr
+
+ * bin/runSalome.py, src/KERNEL_PY/salome_shared_modules.py:
+
+ PAL13340 : fix launching problem on 64-bit platforms (more correct check)
+
+2006-09-04 13:19 jfa
+
+ * configure.ac, bin/launchConfigureParser.py,
+ salome_adm/unix/config_files/check_cas.m4:
+
+ Join modifications from branch BR_For_OCT_611: migration to OCCT6.1.1 with new exception handling and improved threads support.
+
+2006-09-04 10:39 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ PR: more explicit error trace on parsing ResourcesCatalog.xml
+
+2006-09-04 08:00 prascle
+
+ * doc/SALOME_Application.txt, bin/Makefile.am, bin/appli_clean.sh,
+ bin/appli_gen.py, bin/config_appli.xml, bin/virtual_salome.py:
+
+ PR: SALOME application (virtual links) installation based on an xml descriptor.
+
+2006-09-04 07:45 prascle
+
+ * src/LifeCycleCORBA_SWIG/: libSALOME_LifeCycleCORBA.i,
+ Test/LifeCycleCORBA_SWIGTest.py:
+
+ PR: EDF 260: transfer of the exception message to python
+
+2006-09-04 07:29 prascle
+
+ * src/KERNEL_PY/omnipatch.py:
+
+ PR: Bug EDF 252, import problem from ASTER module
+
+2006-09-04 07:27 prascle
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ SALOME_Component_i.hxx:
+
+ PR: from Sergey Mozokhin, Supervisor problem, crash after killing a dataflow execution.
+
+2006-09-01 11:03 prascle
+
+ * doc/salome/version.texi:
+
+ PR: PAL 12956
+
+2006-09-01 10:34 vsr
+
+ * bin/runSalome.py, src/KERNEL_PY/salome_shared_modules.py:
+
+ PAL13340 : fix launching problem on 64-bit platforms
+
+2006-08-31 17:15 mnt
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Update for new OCC6.1.1
+
+2006-08-31 09:17 jfa
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Join modifications from branch BR_JR_from_V3_2_0b1: --terminal option for CCRT.
+
+2006-08-30 14:20 jfa
+
+ * src/ModuleCatalog/: Makefile.am, SALOME_TestModuleCatalog.py,
+ TestModuleCatalog.py:
+
+ Join modifications from branch BR_JR_from_V3_2_0b1: rename a .py file because of clash with a module name.
+
+2006-08-30 11:21 jfa
+
+ * doc/README.cluster-CCRT:
+
+ Join modifications from branch BR_JR_from_V3_2_0b1: --terminal option for CCRT.
+
+2006-08-30 08:20 vsr
+
+ * src/KERNEL_PY/salome_shared_modules.py:
+
+ Correct problem with shared modules on 64-bit platforms ("lib64" directory should be used for modules searching instead of "lib")
+
+2006-08-29 12:48 jfa
+
+ * bin/launchConfigureParser.py:
+
+ PAL10867: noexcepthandler option in GUI not working. Automatically set environment variable DISABLE_FPE if noexcepthandler option is used (or -r command line key).
+
+2006-08-29 10:44 jfa
+
+ * configure.ac, DEPRECATED/configure.in.base:
+
+ Change version name to 3.2.2pre
+
+2006-08-28 15:54 jfa
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Consider OCCT version
+
+2006-08-25 12:20 akk
+
+ * src/KERNEL_PY/batchmode_salome.py:
+
+ Integration of improvements,proposed in PAL12404
+
+2006-08-25 09:27 vsr
+
+ * doc/salome/version.texi:
+
+ Increment version number: 3.2.2
+
+2006-08-25 09:08 vsr
+
+ * configure.ac:
+
+ Increment version number: 3.2.2
+
+2006-08-24 14:16 srn
+
+ * src/SALOMEDS/SALOMEDS_Study.cxx:
+
+ BugID: IPAL13249, added initalization of CORBA implementation in method DumpStudy
+
+2006-08-24 10:59 ouv
+
+ * src/KERNEL_PY/salome_test.py:
+
+ SUPERV testing removed from win32 version
+
+2006-08-23 16:12 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/testDS.cxx:
+
+ BugID: PAL10141, added a possibility to lock the study by several processes.
+
+2006-08-23 10:45 mnt
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ SMH: Version ported on new OCT6.1.1
+
+2006-08-23 09:48 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/testDS.cxx:
+
+ BugID PAL10141, Added 4 new methods for Study: SetStudyLock, IsStudyLocked,
+ GetLockerID and UnLockStudy.
+
+2006-08-21 09:35 ouv
+
+ * src/KERNEL_PY/salome_test.py:
+
+ SWP12925
+
+2006-08-21 08:54 abd
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Update lib name
+
+2006-08-18 10:32 skt
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ SWP12966 - MutiFile is not saved correctly
+ Fix in GetDirFromPath() - correct directory path generation
+
+2006-08-17 15:13 abd
+
+ * bin/runSalome.py:
+
+ Save logger.log file in $HOME directory
+
+2006-08-15 17:10 vsr
+
+ * bin/: runSalome.py, virtual_salome.py:
+
+ Fix an environment problem on 64-bit platforms (set_env() method should use "lib64" library path instead of "lib")
+
+2006-08-15 15:20 abd
+
+ * src/SALOMELocalTrace/: BaseTraceCollector.hxx,
+ FileTraceCollector.hxx, LocalTraceBufferPool.hxx,
+ LocalTraceCollector.hxx, Makefile.am, Makefile.in:
+
+ fix linux compilation
+
+2006-08-15 15:17 abd
+
+ * src/SALOMETraceCollector/: SALOMETraceCollector.cxx,
+ SALOMETraceCollector.hxx:
+
+ Export symbols
+
+2006-08-08 15:06 abd
+
+ * src/Utils/SALOME_Utils.hxx:
+
+ Fix filename in comment
+
+2006-08-08 13:12 jfa
+
+ * src/: SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ PAL13000: Crash with 'import CALCULATOR_TEST_STUDY_WITHOUTIHM'
+
+2006-08-04 09:53 abd
+
+ * bin/launchConfigureParser.py:
+
+ remove log message
+
+2006-08-04 09:19 abd
+
+ * bin/launchConfigureParser.py:
+
+ Using of correct name of user resource file for WIN32 platrform ( *.xml instead *rc )
+
+2006-08-02 15:00 skt
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Bug SWP12123 fixed. Removing temporary directories
+
+2006-08-02 10:34 asv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Yet another modification (this one from JFA) to fix the same problem: GetCommonParameters() either modifies a Study or returns NULL AttributeParameters. Hopefully this modification finally fixes the bug.
+
+2006-08-02 10:33 jfa
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ PAL13002: EDF231 Salome ask if we want to save the study even if it was just done.
+
+2006-08-01 16:00 asv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ An error fixed: if GetCommonParameters() is called for the first time on "Interface Applicative" component, then it returns null attribute. It caused crashed when DumpStudy() is called.
+
+2006-08-01 08:15 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fix of bug IPAL13069, fixed method LoadWith, changed the name of removed temporay file
+
+2006-07-31 08:33 abd
+
+ * bin/nameserver.py:
+
+ BUG SWP12852
+
+ Using <"> in commad line for start omni names for case if $HOME includes some spaces
+
+2006-07-28 15:03 jfa
+
+ * doc/salome/version.texi, src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Roll back invalid integration.
+
+2006-07-28 14:53 jfa
+
+ * doc/salome/version.texi, src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ PAL12781: EDF: different result between Working Plane and LCS. Implement and use general mechanism to obtain position from shape.
+
+2006-07-28 12:15 asv
+
+ * src/Utils/Utils_Identity.cxx:
+
+ Fix for bug SWP12997: implemented method get_adip() on Win32 and improved method get_uname().
+
+2006-07-26 08:42 asv
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fix to bug SWP12996: "Modified" flag was incorrectly set on Study object in 2 cases:
+ 1) GetAttributeParameters() method always called FindOrCreateAttribute(), even when attribute was found and no creation was done. FindOrCreateAttribute always sets "Modified" flag on internal document.
+ 2) Builder::FindAttribute() called _doc->Modify() which seems to be an error because no real modification to labels or attributes is done in this case.
+
+2006-07-18 14:11 ouv
+
+ * bin/server.py:
+
+ Minor changes.
+
+2006-07-14 12:43 ptv
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ memory leaks and other errors and warnings noticed with help of Rational Purify on Windows
+
+2006-07-14 07:39 ptv
+
+ * src/: NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, Utils/Utils_Identity.cxx:
+
+ remove memory leaks uninitalised memory read, etc...
+ noticed with Rational Purify on Windows
+
+2006-07-13 15:10 jfa
+
+ * doc/salome/: version.texi:
+
+ PAL12956: Error at make install in doc/salome.
+
+2006-07-13 14:41 jfa
+
+ * doc/salome/version.texi:
+
+ PAL12956: Error at make install in doc/salome.
+
+2006-07-13 13:55 jfa
+
+ * doc/salome/version.texi:
+
+ PAL12956: Error at make install in doc/salome.
+
+2006-07-11 11:35 jfa
+
+ * configure.ac, DEPRECATED/configure.in.base:
+
+ Change version name to 3.2.1
+
+2006-07-10 14:09 eap
+
+ * bin/orbmodule.py:
+
+ fix bug 10560: set GIOP message size
+
+2006-07-07 13:30 mpv
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Windows porting
+
+2006-07-07 13:27 mpv
+
+ * src/: Basics/BasicsGenericDestructor.hxx, HDFPersist/HDFascii.cc:
+
+ Windows porting
+
+2006-07-07 12:27 prascle
+
+ * src/KERNEL_PY/: import_hook.py, kernel_shared_modules.py,
+ omnipatch.py, salome_shared_modules.py:
+
+ PR: Corrections from C. Caremoli, for embedded python.
+ No Driver attribute for SALOMEDS__POA.
+ allow: from omniORB import any.
+
+2006-07-07 12:14 prascle
+
+ * src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py:
+
+ PR: for 9772 (avoid deadlock with embedded python container)
+
+2006-07-07 12:08 prascle
+
+ * src/LifeCycleCORBA_SWIG/: Makefile.am,
+ libSALOME_LifeCycleCORBA.i:
+
+ PR: for 9772 (avoid deadlock with embedded python container)
+
+2006-07-07 12:02 prascle
+
+ * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
+
+ PR: file close missing
+
+2006-07-07 12:01 prascle
+
+ * src/Container/Container_i.cxx:
+
+ PR: correction proposal for 12797
+
+2006-07-05 09:26 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Print "Warning! File not found!" message rather then "Error!" if the user configuration file can not be found.
+
+2006-07-04 16:02 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Correct a bug: find appropriate user configuration file function does not return a file with nearest id.
+
+2006-06-30 13:49 abd
+
+ * src/TestContainer/SALOME_TestComponent_i.cxx:
+
+ Right fix for Linux compilation
+
+2006-06-30 13:07 abd
+
+ * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_Defines.hxx,
+ SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyBuilder_i.hxx:
+
+ Fix for Linux compilation
+
+2006-06-30 11:01 ptv
+
+ * src/SALOMEDS/: SALOMEDS_Attributes.hxx,
+ SALOMEDS_GenericAttribute_i.cxx:
+
+ make macros more understandable + do not use pointer of temporary created TCollection_AsciiString for comparing.
+
+2006-06-30 11:00 ptv
+
+ * src/Utils/Utils_Identity.cxx:
+
+ initialisation of variables
+
+2006-06-29 15:20 abd
+
+ * src/Logger/SALOME_Logger_Server_main.cxx:
+
+ Rigth fix for compilation on WIN32 and Linux
+
+2006-06-29 09:41 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Fix possible problems with custom SALOME modules (resources folder does not include module name).
+
+2006-06-28 12:41 vsr
+
+ * bin/runSalome.py:
+
+ Fix possible problems with custom SALOME modules (resources folder does not include module name).
+
+2006-06-28 10:32 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Fix possible problems with custom SALOME modules (resources folder does not include module name).
+
+2006-06-27 11:14 abd
+
+ * src/SALOMELocalTrace/: FileTraceCollector.hxx,
+ LocalTraceBufferPool.hxx, LocalTraceCollector.hxx:
+
+ Right include for Linux compilation
+
+2006-06-27 09:39 asv
+
+ * configure.ac, DEPRECATED/configure.in.base, bin/appli_install.sh,
+ bin/launchConfigureParser.py, bin/runSalome.py,
+ bin/appliskel/README, bin/appliskel/SalomeApp.xml,
+ doc/SALOME_Application.txt, doc/salome/version.texi,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx:
+
+ Fix to bug PAL10465.
+ Modification of resource files location in "build" and "installation" directories. Now resource files are placed in share/salome/resources/<module_name>. Various configuration files (configure.in.base, make_module/conclude/commence, etc.) are changed.
+
+2006-06-22 11:05 abd
+
+ * bin/nameserver.py:
+
+ Fixed bug with number in localhost name
+
+2006-06-14 18:03 rahuel
+
+ * salome_adm/unix/config_files/python.m4:
+
+ lib64 on 64 bits machines
+
+2006-06-14 18:02 rahuel
+
+ * src/ModuleCatalog/Makefile.am:
+
+ New name of a .py file ecause of clash with a module name
+
+2006-06-14 18:01 rahuel
+
+ * src/ModuleCatalog/TestModuleCatalog.py:
+
+ New name because of clash with a module name
+
+2006-06-14 18:00 rahuel
+
+ * src/ModuleCatalog/SALOME_TestModuleCatalog.py:
+
+ That name clashes with a module name
+
+2006-06-14 17:59 rahuel
+
+ * salome_adm/unix/config_files/DEPRECATED/config.sub:
+
+ necessary on CCRT
+
+2006-06-14 17:59 rahuel
+
+ * salome_adm/unix/config_files/libtool.m4:
+
+ from libtool necessary on CCRT
+
+2006-06-14 17:57 rahuel
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ lib64 on -' bits machines
+
+2006-06-14 17:55 rahuel
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ doc/README.cluster-CCRT:
+
+ --terminal option for CCRT
+
+2006-06-14 08:37 abd
+
+ * src/Utils/: Makefile.in, Test/Makefile.am, Test/Makefile.in,
+ Test/TestUtils.cxx, Test/TestUtils.py, Test/UtilsTest.cxx,
+ Test/UtilsTest.hxx:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:34 abd
+
+ * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am, SALOMELocalTrace/utilities.h,
+ SALOMELocalTrace/Test/Makefile.am,
+ SALOMELocalTrace/Test/Makefile.in,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/Makefile.in,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ SALOMETraceCollector/Test/Makefile.am,
+ SALOMETraceCollector/Test/Makefile.in,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ TOOLSDS/Makefile.am, TOOLSDS/Makefile.in,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ TestContainer/Makefile.am, TestContainer/Makefile.in,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
+ TestMPIContainer/Makefile.in,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, UnitTests/Makefile.am,
+ UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
+ UnitTests/UnitTests.py, Utils/Makefile.am, Utils/OpUtil.cxx,
+ Utils/OpUtil.hxx, Utils/SALOME_utilities.py,
+ Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
+ Utils/duplicate.cxx:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:29 abd
+
+ * src/: SALOMEDS/Test/Makefile.am, SALOMEDS/Test/SALOMEDSTest.cxx,
+ SALOMEDS/Test/SALOMEDSTest.hxx, SALOMEDS/Test/TestSALOMEDS.cxx,
+ SALOMEDS/Test/TestSALOMEDS.py, SALOMEDSClient/Makefile.am,
+ SALOMEDSClient/Makefile.in, SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/Makefile.in,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMEDSImpl/testDS.cxx, SALOMEDSImpl/Test/Makefile.am,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.py:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:24 abd
+
+ * src/: NOTIFICATION_SWIG/Makefile.am,
+ NOTIFICATION_SWIG/Makefile.in, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NamingService/Makefile.am, NamingService/Makefile.in,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am, NamingService/Test/Makefile.in,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py,
+ Notification/CosNotifyShorthands.h, Notification/Makefile.am,
+ Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.am,
+ Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am, ResourcesManager/Makefile.in,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cdl,
+ SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
+ SALOMEDS/SALOMEDS_FileType.jxx,
+ SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/SALOMEDS.hxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeName.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS/SALOMEDS_Attributes.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_Client.cxx,
+ SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
+ SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ SALOMEDS/SALOMEDS_IParameters.cxx,
+ SALOMEDS/SALOMEDS_IParameters.hxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponent.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/SALOMEDS_Study_i.hxx, SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDS/SALOME_DriverPy.py:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:21 abd
+
+ * src/: ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/SALOME_TestModuleCatalog.py,
+ ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
+ ModuleGenerator/Makefile.in, ModuleGenerator/testIDLparser.in,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:18 abd
+
+ * src/: KERNEL_PY/Help.py, KERNEL_PY/Makefile.am,
+ KERNEL_PY/Makefile.in, KERNEL_PY/PyInterp.py,
+ KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
+ KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
+ KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
+ KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
+ KERNEL_PY/salome_version.py, LifeCycleCORBA/Launchers.cxx,
+ LifeCycleCORBA/Launchers.hxx, LifeCycleCORBA/Launchers.py,
+ LifeCycleCORBA/Makefile.am, LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA/Test/Makefile.am, LifeCycleCORBA/Test/Makefile.in,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.am, LifeCycleCORBA_SWIG/Makefile.in,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ Logger/Makefile.am, Logger/Makefile.in,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ Logger/Test/Makefile.am, Logger/Test/Makefile.in,
+ Logger/Test/TestKiller.py, MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.am,
+ MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:14 abd
+
+ * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.cxx,
+ Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
+ Communication/libSALOME_Comm.i, Communication_SWIG/Makefile.am,
+ Communication_SWIG/Makefile.in,
+ Communication_SWIG/libSALOME_Comm.i, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.py,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.cxx,
+ Container/SALOME_FileTransfer_i.hxx, GenericObj/Makefile.am,
+ GenericObj/Makefile.in, GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrGetSize.c,
+ HDFPersist/HDFattrGetType.c, HDFPersist/HDFattrOpen.c,
+ HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
+ HDFPersist/HDFattribute.cc, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
+ HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
+ HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFfile.cc,
+ HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
+ HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroupClose.c,
+ HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test6.cxx, HDFPersist/test7.cxx,
+ HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ HDFPersist/HDFattrClose.c, HDFPersist/HDFattribute.hxx,
+ HDFPersist/HDFfile.hxx, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
+ HDFPersist/Makefile.in, HDFPersist/test5.cxx:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:09 abd
+
+ * salome_adm/Makefile.am, salome_adm/Makefile.in,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/SALOMEconfig.ref.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/depend.in, salome_adm/unix/envScript.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in, salome_adm/unix/pythonbe.py,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/DEPRECATED/sstream.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.guess,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/libtool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ltconfig,
+ salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
+ salome_adm/unix/config_files/DEPRECATED/missing,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Makefile.in,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Basics/Test/Makefile.in:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:06 abd
+
+ * doc/salome/tui/Makefile.am, doc/salome/tui/Makefile.in,
+ doc/salome/tui/pythfilter.py, idl/Logger.idl, idl/Makefile.am,
+ idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_DataTypeCatalog.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/CatalogResources.xml,
+ resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ resources/Plugin.in:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 08:01 abd
+
+ * doc/: INSTALL.txt, KERNEL_Services.txt, Makefile.am, Makefile.in,
+ SALOME_Application.txt, UnitTests.txt, index.txt,
+ kernel_resources.txt, rst.css, txt2html.sh, userguide.txt,
+ configuration_examples/example_prerequis.sh,
+ salome/DevelopersGuide.pdf, salome/KERNEL_index.html,
+ salome/Makefile.am, salome/Makefile.in,
+ salome/OrganisationProduction_PAL.pdf,
+ salome/OrganisationProduction_PAL.ps,
+ salome/OrganisationProduction_PAL.sxw,
+ salome/Parallelisme_dans_Salome.pdf,
+ salome/Parallelisme_dans_Salome.ps,
+ salome/ResourcesManagerManual.pdf, salome/Utilitaires_SALOME.doc,
+ salome/Utilitaires_SALOME.pdf, salome/Utilitaires_SALOME.ps,
+ salome/kernel_resources.pdf, salome/kernel_resources.ps,
+ salome/version.texi, salome/Batch.texi,
+ salome/DevelopersGuide.ps, salome/gui/Makefile.in:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-14 07:57 abd
+
+ * AUTHORS, COPYING, ChangeLog, INSTALL, KERNEL_version.h.in,
+ Makefile.am, Makefile.in, NEWS, README, build_configure,
+ clean_configure, configure.ac, configure.in.base, make_config.in,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/NSparam.py,
+ bin/VERSION, bin/VERSION.in, bin/addToKillList.py,
+ bin/appli_clean.sh, bin/appli_install.sh, bin/createAppli.sh,
+ bin/envSalome.py, bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/orbmodule.py,
+ bin/runIDLparser.in, bin/runNS.sh, bin/runSalome,
+ bin/runSalome.ksh, bin/runSalome.py, bin/salomeConsole.py,
+ bin/salome_session.py, bin/server.py, bin/setenv.py,
+ bin/showNS.py, bin/virtual_salome.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh:
+
+ Merging from BR_DEBUG_3_2_0b1
+
+2006-06-08 12:49 prascle
+
+ * doc/: INSTALL.txt, KERNEL_Services.txt:
+
+ PR: typo
+
+2006-06-08 12:49 prascle
+
+ * doc/salome/tui/Makefile.am:
+
+ PR: dist incomplete
+
+2006-06-06 11:12 abd
+
+ * src/Utils/Utils_SignalsHandler.cxx:
+
+ [no log message]
+
+2006-06-06 11:01 abd
+
+ * src/Basics/Makefile.in:
+
+ [no log message]
+
+2006-06-05 08:40 abd
+
+ * bin/server.py:
+
+ NO create console for new install version
+
+2006-06-02 14:52 prascle
+
+ * doc/KERNEL_Services.txt:
+
+ PR: documentation modifications
+
+2006-06-02 14:42 prascle
+
+ * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
+ UnitTests.txt, index.txt, kernel_resources.txt, userguide.txt:
+
+ PR: documentation modifications
+
+2006-06-02 11:25 prascle
+
+ * doc/salome/: tui/Makefile.am, DevelopersGuide.pdf,
+ DevelopersGuide.ps, OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw,
+ Parallelisme_dans_Salome.pdf, Parallelisme_dans_Salome.ps,
+ ResourcesManagerManual.pdf, Utilitaires_SALOME.doc,
+ Utilitaires_SALOME.pdf, Utilitaires_SALOME.ps:
+
+ PR: documentation modifications
+
+2006-06-02 11:22 prascle
+
+ * Makefile.am, configure.ac, doc/KERNEL_Services.txt,
+ doc/Makefile.am, doc/index.txt, doc/salome/Batch.texi,
+ doc/salome/Makefile.am, doc/salome/version.texi:
+
+ PR: documentation modifications
+
+2006-06-01 13:15 jfa
+
+ * INSTALL, KERNEL_version.h.in, Makefile.am, README, configure.ac,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ bin/Makefile.am, bin/NSparam.py, bin/VERSION, bin/VERSION.in,
+ bin/addToKillList.py, bin/appli_clean.sh, bin/appli_install.sh,
+ bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runNS.sh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py, bin/showNS.py,
+ bin/virtual_salome.py, bin/appliskel/runRemote.sh,
+ bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
+ doc/INSTALL.txt, doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/salome/KERNEL_index.html, doc/salome/Makefile.am,
+ doc/salome/tui/Makefile.am, doc/salome/tui/pythfilter.py,
+ idl/Logger.idl, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/CatalogResources.xml,
+ resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
+ resources/KERNELCatalog.xml.in, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/SALOMEconfig.ref.in, salome_adm/unix/pythonbe.py,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ src/Makefile.am, src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am,
+ src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.am, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/GenericObj/Makefile.am,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
+ src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
+ src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
+ src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.am, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/iparameters.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/KERNEL_PY/salome_version.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/Logger/Makefile.am, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.hxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.am,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.am,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/SALOME_TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.am,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/Makefile.am,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.am, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Registry/Makefile.am, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.am,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.am,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.am, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx:
+
+ Join modifications from branch BR_DEBUG_3_2_0b1
+
+2006-05-30 14:01 abd
+
+ * bin/runSalome.py:
+
+ [no log message]
+
+2006-05-30 11:44 prascle
+
+ * doc/txt2html.sh:
+
+ PR: another one
+
+2006-05-30 10:46 abd
+
+ * bin/appliskel/runRemote.sh:
+
+ fix comment in files after inserting copyrights
+
+2006-05-30 10:24 abd
+
+ * bin/: appli_clean.sh, appli_install.sh, createAppli.sh, runNS.sh,
+ appliskel/searchFreePort.sh, appliskel/setAppliPath.sh:
+
+ fix comment in files after inserting copyrights
+
+2006-05-30 09:49 abd
+
+ * bin/: NSparam.py, addToKillList.py, envSalome.py, killSalome.py,
+ killSalomeWithPort.py, runSalome.py, salomeConsole.py, showNS.py:
+
+ fix comment in .py filex after insertin copyrights
+
+2006-05-29 15:56 mkr
+
+ * doc/salome/tui/Makefile.am:
+
+ Update build and install processes for GUI and TUI documentation.
+
+2006-05-29 15:49 mkr
+
+ * doc/: Makefile.am, salome/KERNEL_index.html, salome/Makefile.am:
+
+ Update build and install processes for GUI and TUI documentation.
+
+2006-05-29 15:01 vsr
+
+ * src/Makefile.am:
+
+ Fix KERNEL compilation problem in light mode (without CORBA) if cppunit package is installed (avoid compilation of CORBA-based tests)
+
+2006-05-29 13:56 vsr
+
+ * src/: Makefile.am, UnitTests/Makefile.am,
+ UnitTests/UnitTests.cxx:
+
+ Fix KERNEL compilation problem in light mode (without CORBA) if cppunit package is installed (avoid compilation of CORBA-based tests)
+
+2006-05-29 12:15 abd
+
+ * src/: UnitTests/Makefile.am, UnitTests/UnitTests.cxx,
+ UnitTests/UnitTests.py, Utils/Makefile.am, Utils/OpUtil.cxx,
+ Utils/OpUtil.hxx, Utils/SALOME_utilities.py,
+ Utils/SalomeString.hxx, Utils/Utils_CommException.cxx,
+ Utils/Utils_CommException.hxx, Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Identity.py, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
+ Utils/duplicate.cxx, Utils/Test/Makefile.am,
+ Utils/Test/TestUtils.cxx, Utils/Test/TestUtils.py,
+ Utils/Test/UtilsTest.cxx, Utils/Test/UtilsTest.hxx,
+ Communication_SWIG/Makefile.am,
+ Communication_SWIG/libSALOME_Comm.i:
+
+ Update Copyrights and Contacts
+
+2006-05-29 12:12 abd
+
+ * src/: SALOMEDSImpl/Test/Makefile.am,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.am, SALOMELocalTrace/utilities.h,
+ SALOMELocalTrace/Test/Makefile.am,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Makefile.am,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ SALOMETraceCollector/Test/Makefile.am,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ TOOLSDS/Makefile.am, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/Makefile.am,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestContainer/TestLogger.py, TestMPIContainer/Makefile.am,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ Update Copyrights and Contacts
+
+2006-05-29 12:09 abd
+
+ * src/: Notification/CosNotifyShorthands.h,
+ Notification/Makefile.am, Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.am,
+ Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/Makefile.am,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/Makefile.am, SALOMEDS/SALOMEDS.cdl,
+ SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName.cxx,
+ SALOMEDS/SALOMEDS_AttributeName.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS/SALOMEDS_Attributes.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_Client.cxx,
+ SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ SALOMEDS/SALOMEDS_Driver_i.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
+ SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
+ SALOMEDS/SALOMEDS_FileType.jxx,
+ SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ SALOMEDS/SALOMEDS_IParameters.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
+ SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_Server.cxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.hxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/SALOMEDS_IParameters.hxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOME_DriverPy.py, SALOMEDS/Test/Makefile.am,
+ SALOMEDS/Test/SALOMEDSTest.cxx, SALOMEDS/Test/SALOMEDSTest.hxx,
+ SALOMEDS/Test/TestSALOMEDS.cxx, SALOMEDS/Test/TestSALOMEDS.py,
+ SALOMEDSClient/Makefile.am, SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDSImpl/Makefile.am,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMEDSImpl/testDS.cxx:
+
+ Update Copyrights and Contacts
+
+2006-05-29 12:06 abd
+
+ * src/: LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ LifeCycleCORBA_SWIG/Test/Makefile.am,
+ LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ Logger/Makefile.am, Logger/SALOME_Logger_Server.cxx,
+ Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Logger_Server_main.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ Logger/Test/Makefile.am, Logger/Test/TestKiller.py,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
+ MPIContainer/Makefile.am, MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/Makefile.am, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/SALOME_TestModuleCatalog.py,
+ ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.am,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NOTIFICATION_SWIG/Makefile.am, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NamingService/Makefile.am,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ NamingService/Test/Makefile.am,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py:
+
+ Update Copyrights and Contacts
+
+2006-05-29 12:03 abd
+
+ * src/: Communication/Makefile.am, Communication/MatrixClient.cxx,
+ Communication/MatrixClient.hxx,
+ Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.cxx,
+ Communication/Receiver.hxx, Communication/ReceiverFactory.cxx,
+ Communication/ReceiverFactory.hxx, Communication/Receivers.cxx,
+ Communication/Receivers.hxx, Communication/SALOMEMultiComm.cxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SALOME_Matrix_i.cxx,
+ Communication/SALOME_Matrix_i.hxx,
+ Communication/SenderFactory.cxx, Communication/SenderFactory.hxx,
+ Communication/libSALOME_Comm.i, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx, Container/Makefile.am,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_Container.py,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ Container/SALOME_Container_i.hxx, Container/SALOME_FileRef_i.cxx,
+ Container/SALOME_FileRef_i.hxx,
+ Container/SALOME_FileTransfer_i.cxx,
+ Container/SALOME_FileTransfer_i.hxx, GenericObj/Makefile.am,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFOI.hxx,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
+ HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
+ HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
+ HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFdatasetGetSize.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetGetnDim.c,
+ HDFPersist/HDFdatasetOpen.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/HDFerrorModeLock.c,
+ HDFPersist/HDFexception.hxx, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFexplorer.hxx, HDFPersist/HDFfile.cc,
+ HDFPersist/HDFfile.hxx, HDFPersist/HDFfileClose.c,
+ HDFPersist/HDFfileCreate.c, HDFPersist/HDFfileMount.c,
+ HDFPersist/HDFfileOpen.c, HDFPersist/HDFfileUmount.c,
+ HDFPersist/HDFgroup.cc, HDFPersist/HDFgroup.hxx,
+ HDFPersist/HDFgroupClose.c, HDFPersist/HDFgroupCreate.c,
+ HDFPersist/HDFgroupOpen.c, HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.am, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ KERNEL_PY/Help.py, KERNEL_PY/Makefile.am, KERNEL_PY/PyInterp.py,
+ KERNEL_PY/batchmode_salome.py, KERNEL_PY/import_hook.py,
+ KERNEL_PY/iparameters.py, KERNEL_PY/kernel_shared_modules.py,
+ KERNEL_PY/omnipatch.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
+ KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome_study.py, KERNEL_PY/salome_test.py,
+ LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.am,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ LifeCycleCORBA/Test/Makefile.am,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.am,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ Update Copyrights and Contacts
+
+2006-05-29 11:58 abd
+
+ * idl/Logger.idl, idl/Makefile.am, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Comm.idl,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl, resources/Makefile.am,
+ salome_adm/Makefile.am, salome_adm/unix/Makefile.am,
+ salome_adm/unix/pythonbe.py,
+ salome_adm/unix/config_files/Makefile.am, src/Makefile.am,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.am,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.am:
+
+ Update Copyrights and Contacts
+
+2006-05-29 11:55 abd
+
+ * DEPRECATED/Makefile.in, Makefile.am, bin/Makefile.am,
+ bin/NSparam.py, bin/addToKillList.py, bin/appli_clean.sh,
+ bin/appli_install.sh, bin/createAppli.sh, bin/envSalome.py,
+ bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/orbmodule.py, bin/runNS.sh,
+ bin/runSalome.py, bin/salomeConsole.py, bin/salome_session.py,
+ bin/showNS.py, bin/virtual_salome.py, bin/appliskel/runRemote.sh,
+ bin/appliskel/searchFreePort.sh, bin/appliskel/setAppliPath.sh,
+ doc/Makefile.am, doc/txt2html.sh,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/salome/Makefile.am, doc/salome/tui/Makefile.am,
+ doc/salome/tui/pythfilter.py:
+
+ Update Copyrights and Contacts
+
+2006-05-26 10:28 vsr
+
+ * salome_adm/unix/DEPRECATED/make_module.in:
+
+ SALOME versioning system improvement
+
+2006-05-26 09:06 vsr
+
+ * salome_adm/unix/DEPRECATED/make_module.in:
+
+ SALOME versioning system improvement
+
+2006-05-25 16:34 vsr
+
+ * salome_adm/unix/DEPRECATED/make_conclude.in:
+
+ SALOME versioning system improvement
+
+2006-05-25 15:27 enk
+
+ * salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx:
+
+ Porting to 64bit platform
+
+2006-05-25 11:02 vsr
+
+ * README:
+
+ SALOME versioning system improvement:
+ 1) Add KERNEL_version.h file
+ 2) Remove version numbers duplication
+ 3) Provide Python script to get version number
+
+2006-05-25 10:52 vsr
+
+ * INSTALL, KERNEL_version.h.in, Makefile.am, configure.ac,
+ DEPRECATED/configure.in.base, bin/VERSION, bin/VERSION.in,
+ doc/salome/tui/Makefile.am, resources/CatalogResources.xml,
+ resources/CatalogResources.xml.in, resources/KERNELCatalog.xml,
+ resources/KERNELCatalog.xml.in, src/KERNEL_PY/Makefile.am,
+ src/KERNEL_PY/salome_version.py:
+
+ SALOME versioning system improvement:
+ 1) Add KERNEL_version.h file
+ 2) Remove version numbers duplication
+ 3) Provide Python script to get version number
+
+2006-05-25 06:23 abd
+
+ * bin/runSalome.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Updare for path with space
+
+2006-05-24 19:59 prascle
+
+ * idl/SALOME_Component.idl, doc/KERNEL_Services.txt,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
+
+ PR: doc improvement (in progress)
+
+2006-05-24 16:38 prascle
+
+ * doc/: INSTALL.txt, KERNEL_Services.txt, SALOME_Application.txt,
+ UnitTests.txt, index.txt, kernel_resources.txt, userguide.txt:
+
+ PR: doc improvement (in progress)
+
+2006-05-24 14:34 prascle
+
+ * doc/salome/tui/Makefile.am, doc/INSTALL.txt,
+ doc/KERNEL_Services.txt, doc/Makefile.am,
+ doc/SALOME_Application.txt, doc/UnitTests.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/userguide.txt,
+ configure.ac:
+
+ PR: doc improvement (in progress)
+
+2006-05-24 13:44 abd
+
+ * bin/runSalome.py:
+
+ Updare for path with space
+
+2006-05-24 11:59 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Modify version number : 3.2.0
+
+2006-05-23 12:37 abd
+
+ * bin/runSalome.py, src/Utils/Utils_Identity.py:
+
+ PyHello execution
+
+2006-05-23 11:15 prascle
+
+ * salome_adm/unix/SALOMEconfig.h.in:
+
+ PR: previous correction of bug 12461 was incompatible with other modules
+
+2006-05-23 10:27 prascle
+
+ * salome_adm/unix/Makefile.am, clean_configure,
+ salome_adm/unix/SALOMEconfig.ref.in:
+
+ PR: previous correction of bug 12461 was incompatible with other modules
+
+2006-05-22 18:06 prascle
+
+ * Makefile.am, clean_configure, configure.ac,
+ salome_adm/unix/Makefile.am:
+
+ BUG 12461: avoid unnecessary recompilations after build_configure
+
+2006-05-19 09:21 prascle
+
+ * bin/Makefile.am:
+
+ PR: Bug 12159 (reinstall in red only mode)
+
+2006-05-19 09:16 prascle
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ PR: Bug 6709: method _get_interfaceName not implemented in SALOME_ComponentPy_i
+
+2006-05-16 16:26 ouv
+
+ * src/NOTIFICATION_SWIG/: NOTIFICATION.i, NOTIFICATION_Swig.hxx,
+ SALOME_NOTIFICATION_SWIG.hxx:
+
+ Windows porting.
+
+2006-05-16 09:26 ptv
+
+ * bin/killSalomeWithPort.py, bin/nameserver.py, bin/runNS.py,
+ bin/runSalome.py, src/TestContainer/TestComponentPy.py:
+
+ use specila function from Util_Identity to get name of host
+
+2006-05-12 09:06 ptv
+
+ * src/KERNEL_PY/salome_shared_modules.py,
+ bin/launchConfigureParser.py, bin/setenv.py:
+
+ correct after SWP12334
+
+2006-05-12 08:48 ptv
+
+ * src/KERNEL_PY/: salome_shared_modules.py:
+
+ correct after SWP12334
+
+2006-05-11 14:16 ptv
+
+ * bin/setenv.py:
+
+ win32 porting for libraries and scripts
+
+2006-05-11 09:17 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx, bin/runSalome:
+
+ PR: patch from Sergey Mozokhin (remote containers without SALOME APPLI)
+
+2006-05-06 10:04 jfa
+
+ * INSTALL, README, build_configure, configure.ac,
+ DEPRECATED/configure.in.base, bin/Makefile.am, bin/VERSION,
+ bin/appli_clean.sh, bin/appli_install.sh,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runSalome, bin/runSalome.ksh, bin/runSalome.py,
+ bin/salomeConsole.py, bin/salome_session.py,
+ bin/virtual_salome.py, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runSession,
+ bin/appliskel/runTests, doc/SALOME_Application.txt,
+ doc/UnitTests.txt, doc/salome/Makefile.am,
+ doc/salome/gui/Makefile.am, doc/salome/tui/Makefile.am,
+ idl/Makefile.am, idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestModuleCatalog.idl,
+ resources/Application-About.png, resources/Application-Logo.png,
+ resources/Application-Splash.png, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml, resources/Makefile.am,
+ resources/back.xpm, resources/cascade.png, resources/close.png,
+ resources/copy.png, resources/default.png,
+ resources/dl_delete.png, resources/dl_insert.png,
+ resources/dl_movedown.png, resources/dl_moveup.png,
+ resources/forward.xpm, resources/help.png, resources/home.xpm,
+ resources/new.png, resources/open.png, resources/paste.png,
+ resources/plot2d_dump.png, resources/plot2d_fitall.png,
+ resources/plot2d_fitarea.png, resources/plot2d_legend.png,
+ resources/plot2d_linear.png, resources/plot2d_linear_y.png,
+ resources/plot2d_lines.png, resources/plot2d_log.png,
+ resources/plot2d_log_y.png, resources/plot2d_pan.png,
+ resources/plot2d_points.png, resources/plot2d_settings.png,
+ resources/plot2d_splines.png, resources/plot2d_zoom.png,
+ resources/print.png, resources/redo.png, resources/reset.png,
+ resources/salomeCommonModel.spml, resources/save.png,
+ resources/select1.png, resources/tile.png, resources/uc_add.png,
+ resources/uc_clear.png, resources/uc_current.png,
+ resources/uc_del.png, resources/uc_new.png, resources/undo.png,
+ resources/view_back.png, resources/view_bottom.png,
+ resources/view_camera_dump.png, resources/view_fitall.png,
+ resources/view_fitarea.png, resources/view_front.png,
+ resources/view_glpan.png, resources/view_left.png,
+ resources/view_pan.png, resources/view_reset.png,
+ resources/view_right.png, resources/view_rotate.png,
+ resources/view_top.png, resources/view_triedre.png,
+ resources/view_zoom.png, salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.am,
+ src/Basics/Makefile.am, src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Container_i.cxx, src/Container/Makefile.am,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/KERNEL_PY/iparameters.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_study.py,
+ src/KERNEL_PY/salome_test.py, src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/Launchers.py, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/LifeCycleCORBA_SWIG/Test/LifeCycleCORBA_SWIGTest.py,
+ src/LifeCycleCORBA_SWIG/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx:
+
+ Join modifications from branch BR_PR_V320b1
+
+2006-05-06 07:47 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Improve launchConfigureParser.py script (modules configurating process):
+ - correct a method to find nearest user configuration file (version_id());
+ - print "Warning" message instead of "Error" if some configuration file is not found.
+
+2006-05-05 15:37 abd
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
+
+ IMP SWP12334
+ New project structure. Detail description see in bug attachments
+
+2006-05-05 15:34 abd
+
+ * bin/nameserver.py, bin/runSalome.py, bin/setenv.py,
+ src/Communication/Receivers.cxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx:
+
+ IMP SWP12334
+ New project structure. Detail description see in bug attachments
+
+2006-05-05 14:27 asv
+
+ * src/SALOMEDS/SALOMEDS_IParameters.cxx:
+
+ Fix to method setDumpPython(). Previous implementation allowed only to SET "DumpPthon" property. Current fix allows also to UNSET "DumpPython" property using this method: if "DumpPython" is already set and this method is called - it will remove the property.
+ It fixes the following bug: when Dump Python is called first with checked, and after that - with unchecked "Save GUI State" checkbox -- the Python script is written with errors as IParameters has internal "DympPython" property set ON (left from the first call). Currently, it is possible to set it OFF, and it is done in SalomeApp_Application::OnDumpPython() function.
+
+2006-05-05 09:55 ptv
+
+ * src/KERNEL_PY/salome_shared_modules.py:
+
+ remove excess debug print
+
+2006-05-05 08:55 ptv
+
+ * src/: KERNEL_PY/import_hook.py,
+ KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_shared_modules.py,
+ Container/SALOME_ContainerPy.py:
+
+ use omnipatch for tests on WIN32
+
+2006-05-03 15:36 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ fix bug 11933. Adaptation of the script produced by DumpPython functionality to TUI mode execution: "salome.salome_init()" added
+
+2006-05-03 13:28 abd
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Fix bug SWP12334
+
+2006-04-28 16:14 abd
+
+ * resources/: Application-About.png, Application-Logo.png,
+ Application-Splash.png, cascade.png, close.png, copy.png,
+ default.png, dl_delete.png, dl_insert.png, dl_movedown.png,
+ dl_moveup.png, help.png, new.png, open.png, paste.png,
+ plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
+ plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
+ plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
+ plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
+ plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
+ reset.png, save.png, select1.png, tile.png, uc_add.png,
+ uc_clear.png, uc_current.png, uc_del.png, uc_new.png, undo.png,
+ view_back.png, view_bottom.png, view_camera_dump.png,
+ view_fitall.png, view_fitarea.png, view_front.png,
+ view_glpan.png, view_left.png, view_pan.png, view_reset.png,
+ view_right.png, view_rotate.png, view_top.png, view_triedre.png,
+ view_zoom.png:
+
+ Add icons as bynary files
+
+2006-04-28 16:12 abd
+
+ * resources/: Application-About.png, Application-Logo.png,
+ Application-Splash.png, cascade.png, close.png, copy.png,
+ default.png, dl_delete.png, dl_insert.png, dl_movedown.png,
+ dl_moveup.png, help.png, new.png, open.png, paste.png,
+ plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
+ plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
+ plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
+ plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
+ plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
+ reset.png, save.png, select1.png, tile.png, uc_add.png,
+ uc_clear.png, uc_current.png, uc_del.png, uc_new.png, undo.png,
+ view_back.png, view_bottom.png, view_camera_dump.png,
+ view_fitall.png, view_fitarea.png, view_front.png,
+ view_glpan.png, view_left.png, view_pan.png, view_reset.png,
+ view_right.png, view_rotate.png, view_top.png, view_triedre.png,
+ view_zoom.png:
+
+ Remove text format of icons
+
+2006-04-28 11:58 prascle
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx:
+
+ PR: patch from Sergey Mozokhin
+
+2006-04-28 08:38 ptv
+
+ * bin/: nameserver.py, killSalomeWithPort.py,
+ launchConfigureParser.py, orbmodule.py, runSalome.py,
+ salomeConsole.py, server.py:
+
+ wnt adopted version of runSalome and killSalome scripts
+
+2006-04-27 14:19 abd
+
+ * src/KERNEL_PY/salome_shared_modules.py:
+
+ temprorary fix of shared modules
+
+2006-04-26 12:37 abd
+
+ * idl/SALOME_Session.idl:
+
+ Move SALOME_Session.idl from GUI_SRC/idl to KERNEL_SRC/idl.
+
+2006-04-21 17:23 prascle
+
+ * src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx:
+
+ PR: improve trace info
+
+2006-04-21 16:54 prascle
+
+ * bin/salome_session.py:
+
+ PR: salome_session does not work on distributed computers
+
+2006-04-21 14:34 abd
+
+ * src/: SALOMEDS/SALOMEDS_SObject.cxx, Utils/Utils_ORB_INIT.hxx:
+
+ [no log message]
+
+2006-04-20 23:44 prascle
+
+ * src/LifeCycleCORBA_SWIG/: TestLifeCycleCORBA.py,
+ libSALOME_LifeCycleCORBA.i:
+
+ PR: swig for file transfer
+
+2006-04-20 21:43 prascle
+
+ * idl/Makefile.am:
+
+ PR: remove unused files
+
+2006-04-20 21:40 prascle
+
+ * configure.ac:
+
+ PR: remove unused files
+
+2006-04-20 21:24 prascle
+
+ * resources/channel.cfg, idl/SALOME_DataTypeCatalog.idl:
+
+ PR: remove unused files
+
+2006-04-20 21:18 prascle
+
+ * resources/: Application-About.png, Application-Logo.png,
+ Application-Splash.png, back.xpm, cascade.png, channel.cfg,
+ close.png, config, copy.png, default.png, dl_delete.png,
+ dl_insert.png, dl_movedown.png, dl_moveup.png, forward.xpm,
+ help.png, home.xpm, new.png, open.png, paste.png,
+ plot2d_dump.png, plot2d_fitall.png, plot2d_fitarea.png,
+ plot2d_legend.png, plot2d_linear.png, plot2d_linear_y.png,
+ plot2d_lines.png, plot2d_log.png, plot2d_log_y.png,
+ plot2d_pan.png, plot2d_points.png, plot2d_settings.png,
+ plot2d_splines.png, plot2d_zoom.png, print.png, redo.png,
+ reset.png, salomeCommonModel.spml, save.png, select1.png,
+ tile.png, uc_add.png, uc_clear.png, uc_current.png, uc_del.png,
+ uc_new.png, undo.png, view_back.png, view_bottom.png,
+ view_camera_dump.png, view_fitall.png, view_fitarea.png,
+ view_front.png, view_glpan.png, view_left.png, view_pan.png,
+ view_reset.png, view_right.png, view_rotate.png, view_top.png,
+ view_triedre.png, view_zoom.png:
+
+ PR: remove unused files
+
+2006-04-20 21:12 prascle
+
+ * src/LifeCycleCORBA/: Launchers.cxx, Launchers.hxx, Launchers.py:
+
+ PR: remove unused files
+
+2006-04-20 21:10 prascle
+
+ * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/Makefile.am, src/Container/SALOME_Container_i.hxx,
+ src/Container/SALOME_FileRef_i.cxx,
+ src/Container/SALOME_FileRef_i.hxx,
+ src/Container/SALOME_FileTransfer_i.cxx,
+ src/Container/SALOME_FileTransfer_i.hxx,
+ src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_FileTransferCORBA.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx:
+
+ PR: add service for large file transfer via CORBA
+
+2006-04-20 13:06 jfa
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Change version name to 2.2.9
+
+2006-04-20 10:19 prascle
+
+ * bin/appliskel/runTests:
+
+ PR: bash required on linux
+
+2006-04-20 10:19 prascle
+
+ * bin/appli_install.sh:
+
+ PR: add missing links
+
+2006-04-19 17:29 san
+
+ * bin/runSalome.py:
+
+ PYTHONBIN variable used
+
+2006-04-19 16:16 prascle
+
+ * bin/launchConfigureParser.py:
+
+ PR: modification from Vadim Sandler, modules configuration improvement
+
+2006-04-19 13:16 san
+
+ * src/LifeCycleCORBA/LifeCycleCORBA.py:
+
+ Obsolete script removed
+
+2006-04-19 12:11 srn
+
+ * bin/runSalome.py:
+
+ BugID: 12199. Move a following line:
+ session=clt.waitNSPID("/Kernel/Session",mySessionServ.PID,SALOME.Session)
+ after launching the CPP, Py and Supervision containers
+
+2006-04-18 16:55 san
+
+ * bin/runSalome.py:
+
+ Debug version of python executable used in debug mode
+
+2006-04-18 16:24 prascle
+
+ * src/Communication/Makefile.am,
+ src/Communication/MatrixClient.cxx,
+ src/Communication/MatrixClient.hxx,
+ src/Communication/SALOME_Matrix_i.cxx,
+ src/Communication/SALOME_Matrix_i.hxx,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/libSALOME_Comm.i, idl/SALOME_Comm.idl:
+
+ PR: add matrix type
+
+2006-04-18 16:24 prascle
+
+ * src/Makefile.am:
+
+ PR: remove unnecessary directories
+
+2006-04-18 16:23 prascle
+
+ * resources/Makefile.am:
+
+ PR: remove unnecessary files
+
+2006-04-18 16:22 prascle
+
+ * bin/Makefile.am, idl/Makefile.am:
+
+ PR: remove unnecessary file
+
+2006-04-18 16:21 prascle
+
+ * README:
+
+ PR: update comment
+
+2006-04-18 16:20 prascle
+
+ * src/Basics/Makefile.am:
+
+ PR: merge from OCC_debug_for_3_2_0b1_18avr06
+
+2006-04-18 16:17 prascle
+
+ * resources/CatalogResources.xml, resources/KERNELCatalog.xml,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/python.m4:
+
+ PR: merge from OCC_debug_for_3_2_0b1_18avr06
+
+2006-04-18 16:12 prascle
+
+ * INSTALL, DEPRECATED/configure.in.base, bin/VERSION:
+
+ PR: merge from OCC_debug_for_3_2_0b1_18avr06
+
+2006-04-18 10:28 prascle
+
+ * doc/UnitTests.txt:
+
+ PR: work on doc
+
+2006-04-18 10:26 prascle
+
+ * bin/: runSalome, runSalome.ksh:
+
+ PR: clean comments
+
+2006-04-17 17:24 san
+
+ * src/: Container/SALOME_ContainerPy.py,
+ KERNEL_PY/kernel_shared_modules.py, KERNEL_PY/salome.py,
+ KERNEL_PY/salome_shared_modules.py:
+
+ Not using omnipatch on Win32
+
+2006-04-14 16:03 apo
+
+ * salome_adm/unix/DEPRECATED/make_conclude.in:
+
+ Porting on Mandriva 64 (to unify libdir usage)
+
+2006-04-14 15:30 apo
+
+ * DEPRECATED/configure.in.base,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_qt.m4, src/Basics/Makefile.am:
+
+ Porting on Mandriva 64 (to unify libdir usage)
+
+2006-04-13 09:54 mpv
+
+ * salome_adm/unix/config_files/python.m4:
+
+ If python not found (in batch mode for and example), configure must be continued, but python_ok="no". Before this python_ok allways was "yes".
+
+2006-04-12 15:52 san
+
+ * src/Utils/Utils_Identity.py:
+
+ Win32 correction
+
+2006-04-12 15:31 san
+
+ * bin/runNS.py:
+
+ runNS.sh replaced with a cross-platform runNS.py
+
+2006-04-12 11:26 jfa
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Change version name to 3.2.0b1
+
+2006-04-12 10:53 prascle
+
+ * bin/: appli_install.sh, virtual_salome.py:
+
+ PR: application install improvment
+
+2006-04-12 10:52 prascle
+
+ * salome_adm/unix/config_files/check_opengl.m4:
+
+ PR: merge from branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_11avr06
+
+2006-04-12 10:48 prascle
+
+ * configure.ac, idl/SALOME_TestModuleCatalog.idl:
+
+ PR: merge from branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_11avr06
+
+2006-04-11 07:10 mpv
+
+ * configure.ac:
+
+ in case when CORBA using is disabled (light configuration) python product is excluded from list of mandatory products
+
+2006-04-10 16:05 prascle
+
+ * configure.ac, bin/runSalome.py, doc/salome/Makefile.am,
+ doc/salome/gui/Makefile.am, idl/Makefile.am,
+ idl/SALOME_Session.idl,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4,
+ src/Container/SALOME_ComponentPy.py,
+ src/KERNEL_PY/iparameters.py, src/KERNEL_PY/salome_test.py,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDSImpl/Makefile.am:
+
+ PR: mergefrom branch OCC_debug_for_3_2_0b1 tag mergeto_BR_PR_V320b1_07apr06
+
+2006-04-10 16:01 mkr
+
+ * idl/SALOME_TestModuleCatalog.idl:
+
+ Fix incorrect execution of Addition function from AddComponent.
+
+2006-04-10 08:00 apo
+
+ * salome_adm/unix/config_files/check_opengl.m4:
+
+ To improve the check
+
+2006-04-07 16:08 jfa
+
+ * configure.ac, doc/salome/Makefile.am, doc/salome/gui/Makefile.am:
+
+ Remove gui documentation from KERNEL as it is present in GUI.
+
+2006-04-07 16:07 jfa
+
+ * idl/: Makefile.am, SALOME_Session.idl:
+
+ Move SALOME_Session.idl from GUI_SRC/idl to KERNEL_SRC/idl.
+
+2006-04-07 13:37 apo
+
+ * salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ src/SALOMEDS/Makefile.am, src/SALOMEDSImpl/Makefile.am:
+
+ Porting on Mandriva 64
+
+2006-04-07 10:20 srn
+
+ * src/KERNEL_PY/iparameters.py:
+
+ Added comments to IParameters interface
+
+2006-04-06 13:48 abd
+
+ * bin/launchConfigureParser.py:
+
+ Temprorary fix
+
+2006-04-06 12:57 apo
+
+ * salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ src/SALOMEDS/Makefile.am, src/SALOMEDSImpl/Makefile.am:
+
+ Porting on Mandriva 64 (without libtool modifications)
+
+2006-04-06 10:38 apo
+
+ * salome_adm/unix/config_files/DEPRECATED/config.sub:
+
+ Mandriva 64 porting
+
+2006-04-05 15:12 apo
+
+ * salome_adm/unix/DEPRECATED/make_conclude.in:
+
+ Porting on Mandriva 64 (use libtool way as much as possible)
+
+2006-04-05 14:54 srn
+
+ * bin/runSalome.py:
+
+ BugID: 12080, moved showing of a splash to beging of startSalome function
+
+2006-04-05 14:08 srn
+
+ * src/SALOMEDS/SALOMEDS.cxx:
+
+ Removed debug cout
+
+2006-04-04 15:28 srn
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ BugID PAL12117 fixed the method DumpPython in order it has a correct signature and a method's body
+
+2006-04-03 13:01 prascle
+
+ * doc/SALOME_Application.txt:
+
+ PR: work in progress...
+
+2006-04-03 12:41 jfa
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Fix bug 11063: Prevent running salome_test in a study with MED data.
+
+2006-04-03 11:12 prascle
+
+ * configure.ac, doc/SALOME_Application.txt,
+ doc/salome/tui/Makefile.am, idl/SALOME_TestModuleCatalog.idl,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx:
+
+ PR: mergefrom branch BR_OCC_For_3_1_0b1 tag mergeto_BR_PR_V320b1_31mar06
+
+2006-04-03 08:59 apo
+
+ * salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4, src/SALOMEDS/Makefile.am,
+ src/SALOMEDSImpl/Makefile.am:
+
+ Porting on Mandriva 64
+
+2006-03-31 13:31 asl
+
+ * configure.ac:
+
+ in case when CORBA using is disabled (light configuration) swig product is excluded from list of mandatory products
+
+2006-03-31 13:07 prascle
+
+ * src/LifeCycleCORBA_SWIG/: Makefile.am,
+ libSALOME_LifeCycleCORBA.i:
+
+ PR: exception handling
+
+2006-03-31 13:05 prascle
+
+ * src/KERNEL_PY/salome.py:
+
+ PR: python traceback
+
+2006-03-31 13:05 asl
+
+ * configure.ac:
+
+ new configuration option --enable-batch, which control of including to compilation process for packages Batch and Batch_SWIG (default: yes)
+
+2006-03-31 13:04 prascle
+
+ * bin/appli_install.sh:
+
+ PR: add .bashrc
+
+2006-03-31 12:37 abd
+
+ * src/Container/Container_i.cxx:
+
+ Update executive version
+ Temprorary fix python of calls
+
+2006-03-31 08:39 prascle
+
+ * src/KERNEL_PY/salome_iapp.py:
+
+ PR: False is with first letter upper case.
+
+2006-03-31 08:36 prascle
+
+ * bin/killSalomeWithPort.py:
+
+ PR: add omniORB config files cleaning in case of SALOME application
+
+2006-03-30 14:24 enk
+
+ * salome_adm/unix/config_files/check_htmlgen.m4,
+ doc/salome/tui/Makefile.am:
+
+ Added support for doxygen1.4.4 and higher (with PYTHON documenation support)
+
+2006-03-28 19:07 prascle
+
+ * src/KERNEL_PY/: salome.py, salome_iapp.py, salome_study.py:
+
+ corrections for batch mode
+
+2006-03-28 19:06 prascle
+
+ * bin/Makefile.am:
+
+ corrections for batch mode and symlink application
+
+2006-03-28 19:00 prascle
+
+ * bin/: appliskel/runAppli, appliskel/runConsole,
+ appliskel/runSession, salomeConsole.py, killSalomeWithPort.py,
+ salome_session.py:
+
+ corrections for batch mode
+
+2006-03-28 18:58 prascle
+
+ * bin/: appli_clean.sh, appli_install.sh, virtual_salome.py:
+
+ SALOME Application with symbolic links
+
+2006-03-27 09:59 srn
+
+ * src/SALOMEDSClient/Makefile.am:
+
+ BugID: IPAL12013, Added linker flags to allow the library to export dynamically all defined methods.
+
+2006-03-27 09:58 srn
+
+ * src/SALOMEDS/: Makefile.am, SALOMEDS.cxx:
+
+ BugID: IPAL12013, Changed method createStudyManager: added a check if the StudyManager is already launched. Added linker flags to allow the library to export dynamically all defined methods.
+
+2006-03-24 07:40 asl
+
+ * src/Utils/Utils_SALOME_Exception.hxx:
+
+ fix for compilation errors in MED in optimized mode
+
+2006-03-24 07:22 eap
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ "specific SALOME for ALLIANCES". Fix SIP_INCLUDES (add missing -I)
+
+2006-03-22 09:55 asl
+
+ * src/Utils/Utils_SALOME_Exception.hxx:
+
+ PAL11052 - exception messages must don't contain file and line number info in optimized mode
+
+2006-03-20 14:48 san
+
+ * src/: Basics/BasicsGenericDestructor.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ Compilation and run-time problems on Win32: mutex initialization, copy-paste errors
+
+2006-03-20 14:26 san
+
+ * bin/: orbmodule.py, runSalome.py:
+
+ [no log message]
+
+2006-03-20 13:30 srn
+
+ * src/SALOMEDSClient/: Makefile.am,
+ SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient_ClientFactory.hxx, SALOMEDSClient_IParameters.hxx:
+
+ Implemented a possibility to dlopen SalomeDS libarary and create SObject, Study, StudyBuilder, StudyManager objects and IParameter interaface
+
+2006-03-20 13:29 srn
+
+ * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_IParameters.hxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder.hxx:
+
+ Implemented a possibility to dlopen SalomeDS libarary and create SObject, Study, StudyBuilder, StudyManager objects
+
+2006-03-20 13:25 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Bug IPAL11479, added a removal a temporary file "hdf_from_ascii.hdf"
+
+2006-03-17 15:38 prascle
+
+ * configure.ac, src/Makefile.am:
+
+ PR: add Unit Tests for LifeCycleCORBA_SWIG
+
+2006-03-17 15:34 prascle
+
+ * src/LifeCycleCORBA_SWIG/: libSALOME_LifeCycleCORBA.i,
+ Test/LifeCycleCORBA_SWIGTest.py, Test/Makefile.am,
+ Test/TestLifeCycleCORBA_SWIG.py:
+
+ PR: add Unit Tests for LifeCycleCORBA_SWIG
+
+2006-03-17 15:33 prascle
+
+ * build_configure:
+
+ PR: allow execution from anywhere
+
+2006-03-16 17:03 prascle
+
+ * configure.ac, resources/Makefile.am:
+
+ PR: add resources/Plugin in Install
+
+2006-03-15 13:59 jfa
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Change version name to 3.2.0a2
+
+2006-03-14 15:34 prascle
+
+ * src/SALOMEDSClient/Makefile.am, bin/Makefile.am:
+
+ PR: bug detected by OCN
+
+2006-03-13 20:08 prascle
+
+ * salome_adm/unix/config_files/check_htmlgen.m4, doc/Makefile.am:
+
+ PR: conditional definition
+
+2006-03-13 13:18 vsr
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ file check_vtk.m4 was added on branch V5_1_main on 2010-06-17 12:54:32 +0000
+
+2006-03-13 13:18 vsr
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ file check_vtk.m4 was added on branch V6_main on 2010-11-25 11:43:19 +0000
+
+2006-03-13 13:18 caremoli
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ file check_vtk.m4 was added on branch BR_Observer on 2010-06-18 07:05:19 +0000
+
+2006-03-13 13:18 prascle
+
+ * AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in, NEWS,
+ build_configure, clean_configure, configure.ac,
+ configure.in.base, make_config.in, DEPRECATED/Makefile.in,
+ DEPRECATED/configure.in.base, DEPRECATED/make_config.in,
+ bin/Makefile.am, bin/createAppli.sh, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/runIDLparser.in, bin/runNS.sh,
+ bin/runSalome.ksh, bin/runSalome.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ bin/appliskel/searchFreePort.sh, doc/Makefile.am,
+ doc/Makefile.in, doc/SALOME_Application.txt, doc/index.txt,
+ doc/kernel_resources.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt, doc/salome/Makefile.am,
+ doc/salome/Makefile.in, doc/salome/kernel_resources.pdf,
+ doc/salome/kernel_resources.ps, doc/salome/gui/Makefile.am,
+ doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.am,
+ doc/salome/tui/Makefile.in, idl/Makefile.am, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ resources/Makefile.am, resources/Plugin.in,
+ salome_adm/Makefile.am, salome_adm/Makefile.in,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/config.h.in, salome_adm/unix/depend.in,
+ salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in,
+ salome_adm/unix/DEPRECATED/sstream.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/python.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.guess,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/libtool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ltconfig,
+ salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
+ salome_adm/unix/config_files/DEPRECATED/missing,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Makefile.in,
+ src/Basics/BasicsGenericDestructor.cxx, src/Basics/Makefile.am,
+ src/Basics/Makefile.in, src/Basics/Test/Makefile.am,
+ src/Basics/Test/Makefile.in, src/Communication/Makefile.am,
+ src/Communication/Makefile.in,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/Makefile.in,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Makefile.am, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_Container_i.hxx, src/GenericObj/Makefile.am,
+ src/GenericObj/Makefile.in, src/HDFPersist/HDFdataset.cc,
+ src/HDFPersist/Makefile.am, src/HDFPersist/Makefile.in,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
+ src/KERNEL_PY/iparameters.py, src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/Logger/Makefile.am, src/Logger/Makefile.in,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/Test/Makefile.am, src/Logger/Test/Makefile.in,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/Makefile.am, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
+ src/NamingService/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/Makefile.in, src/Notification/Makefile.am,
+ src/Notification/Makefile.in, src/Registry/Makefile.am,
+ src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am, src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.am, src/SALOMEDSImpl/Makefile.in,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/TOOLSDS/Makefile.am, src/TOOLSDS/Makefile.in,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/Makefile.am, src/TestContainer/Makefile.in,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.py,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.am, src/UnitTests/Makefile.in,
+ src/UnitTests/UnitTests.cxx, src/Utils/Makefile.am,
+ src/Utils/Makefile.in, src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Test/Makefile.am,
+ src/Utils/Test/Makefile.in:
+
+ PR: merge from branch BR_auto_V310 tag mergefrom_OCC_development_for_3_2_0a2_10mar06
+
+2006-03-13 10:57 prascle
+
+ * src/UnitTests/: Makefile.am, UnitTests.cxx:
+
+ PR: add unit tests from SALOMDSImpl and SALOMEDS
+
+2006-03-13 10:54 prascle
+
+ * bin/appliskel/: killCurrentPort, runAppli, runConsole, runParam,
+ runRemote.sh, runSession, runTests, searchFreePort.sh,
+ setAppliPath.sh:
+
+ PR: bash is useful on Linux to take into account local .bashrc. TO DO: take system into account to choose bash or sh when installing application.
+
+2006-03-13 10:34 abd
+
+ * src/: Container/Makefile.in, ModuleCatalog/Makefile.in,
+ Registry/Makefile.in, Notification/Makefile.in,
+ SALOMEDS/Makefile.in, SALOMELocalTrace/Makefile.in,
+ Utils/Makefile.in:
+
+ Added file for Win32 export/import defines
+
+2006-03-13 10:32 abd
+
+ * src/Communication/Makefile.in:
+
+ Added file with WIN32 export/import defines
+
+2006-03-12 16:58 prascle
+
+ * configure.ac, bin/createAppli.sh, bin/runNS.sh, bin/runSalome.py,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/acx_pthread.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4, src/Makefile.am,
+ src/Container/Container_i.cxx, src/HDFPersist/HDFdataset.cc,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/iparameters.py,
+ src/SALOMEDS/Makefile.am, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.cxx,
+ src/SALOMEDS/SALOMEDS_TMPFile_i.hxx,
+ src/SALOMEDS/Test/Makefile.am,
+ src/SALOMEDS/Test/SALOMEDSTest.cxx,
+ src/SALOMEDS/Test/SALOMEDSTest.hxx,
+ src/SALOMEDS/Test/TestSALOMEDS.cxx,
+ src/SALOMEDS/Test/TestSALOMEDS.py,
+ src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx,
+ src/SALOMEDSImpl/testDS.cxx, src/SALOMEDSImpl/Test/Makefile.am,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx,
+ src/SALOMEDSImpl/Test/SALOMEDSImplTest.hxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.cxx,
+ src/SALOMEDSImpl/Test/TestSALOMEDSImpl.py,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/Utils/Makefile.am, src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h:
+
+ merge from OCC_development_for_3_2_0a2 tag mergeto_BR_auto_V310_10mar06
+
+2006-03-10 13:11 asv
+
+ * src/KERNEL_PY/: Makefile.in, iparameters.py:
+
+ Implementation of GUI persistent states in Python.
+
+2006-03-10 08:04 apo
+
+ * src/: SALOMEDSImpl/Test/Makefile.in, SALOMEDS/Test/Makefile.in:
+
+ To fix problem with compilation of the binraies
+
+2006-03-09 15:32 jfa
+
+ * bin/: runSalome.py:
+
+ PAL10512: Improve fix, avoiding modifications of 'args' dictionary, common for all processes.
+
+2006-03-09 15:08 srn
+
+ * salome_adm/Makefile.in:
+
+ Added empty tests: target
+
+2006-03-09 14:43 srn
+
+ * src/SALOMEDS/Test/Makefile.in:
+
+ Added required linker options
+
+2006-03-09 14:14 vsr
+
+ * bin/runSalome.py:
+
+ PAL11821: Do not show splash screen if SALOME is launched in 'terminal' mode
+
+2006-03-09 13:47 srn
+
+ * salome_adm/unix/make_conclude.in:
+
+ Modified a step "tests", now it redirected to target "unittest"
+
+2006-03-09 13:45 srn
+
+ * src/SALOMEDSImpl/Test/: Makefile.in, SALOMEDSImplTest.cxx,
+ SALOMEDSImplTest.hxx, TestSALOMEDSImpl.cxx, TestSALOMEDSImpl.py:
+
+ Cppunit tests for SALOMEDSImpl
+
+2006-03-09 13:38 srn
+
+ * src/SALOMEDS/Test/: Makefile.in, SALOMEDSTest.cxx,
+ SALOMEDSTest.hxx, TestSALOMEDS.cxx, TestSALOMEDS.py:
+
+ Cppunit tests for SALOMEDS
+
+2006-03-09 13:38 srn
+
+ * src/Makefile.in:
+
+ Cppunit tests for SALOMEDS and SALOMEDSmpl
+
+2006-03-09 13:37 srn
+
+ * src/SALOMEDSImpl/Test/: Makefile.in, SALOMEDSImplTest.cxx,
+ SALOMEDSImplTest.hxx, TestSALOMEDSImpl.cxx, TestSALOMEDSImpl.py:
+
+ Cppunit tests for AttributeParameters
+
+2006-03-09 13:02 san
+
+ * src/NOTIFICATION_SWIG/NOTIFICATION.i:
+
+ Corrected following ABV remark - #define should be put outside %{ ... %} block in .i file in order not to be put into generated C++ files.
+
+2006-03-09 12:47 abd
+
+ * src/NOTIFICATION_SWIG/NOTIFICATION.i:
+
+ SWIG compability on win32
+
+2006-03-09 07:15 nds
+
+ * configure.in.base:
+
+ Changes in Salome configuration scripts
+
+2006-03-09 07:11 nds
+
+ * salome_adm/unix/: config_files/check_msg2qm.m4,
+ config_files/check_pyqt.m4, config_files/check_qwt.m4,
+ config_files/check_sip.m4, config_files/check_vtk.m4,
+ config_files/check_cas.m4, make_commence.in:
+
+ Changes in Salome configuration scripts
+
+2006-03-07 16:30 asv
+
+ * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSImpl/Makefile.in,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_IParameters.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/testDS.cxx:
+
+ Merged with OCC_visual_parameters_2006 branch. It consists development of persistent visual parameters (GUI states) and Dump Python functionality. Developers: srn, asv.
+
+2006-03-07 10:35 asv
+
+ * salome_adm/unix/pythonbe.pyc:
+
+ merged with current.
+
+2006-03-06 15:01 prascle
+
+ * bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runIDLparser.in, bin/runSalome.ksh, bin/runSalome.py,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/setAppliPath.sh,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/Makefile.am,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/TestContainer/Makefile.am,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.py,
+ src/Utils/Utils_SignalsHandler.cxx:
+
+ PR: merge from branch BR_V3_1_0_CCRT tag mergeto_BR_auto_V310_06mar06
+
+2006-03-06 13:37 asv
+
+ * src/: SALOMEDS/SALOMEDS.cxx, SALOMEDSClient/Makefile.in,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient/SALOMEDSClient_ClientFactory.hxx:
+
+ merged with KERNEL from current dev version.
+
+2006-03-06 10:22 nds
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Delete dependency current check file from KERNEL.
+
+2006-03-06 09:28 abd
+
+ * src/: SALOMELocalTrace/SALOME_LocalTrace.hxx,
+ Utils/SALOME_Utils.hxx:
+
+ Updated environment and import/export directives
+
+2006-03-06 09:17 abd
+
+ * src/Communication/: MultiCommException.hxx, ReceiverFactory.hxx,
+ SALOMEMultiComm.hxx, SALOME_Comm_i.hxx, SALOME_Communication.hxx,
+ SenderFactory.hxx:
+
+ Updated environment and import/export directives
+
+2006-03-06 09:14 abd
+
+ * src/: Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.hxx,
+ Notification/SALOME_NOTIFICATION.hxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx,
+ NamingService/ServiceUnreachable.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ HDFPersist/HDFdatasetGetOrder.c, HDFPersist/HDFobjectType.c,
+ Container/Container_init_python.hxx,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.hxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_Container_i.hxx:
+
+ Updated environment and import/export directives
+
+2006-03-06 09:10 abd
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_Study.hxx, SALOMEDS/SALOMEDS.hxx,
+ SALOMEDS/SALOMEDS_Defines.hxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ Registry/RegistryConnexion.hxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry.hxx:
+
+ Updated environment and import/export directives
+
+2006-03-06 09:06 abd
+
+ * src/: Basics/BasicsGenericDestructor.hxx, Utils/OpUtil.hxx,
+ Utils/SalomeString.hxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.hxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_SignalsHandler.h, Utils/Utils_Timer.hxx,
+ TOOLSDS/SALOMEDS_Tool.hxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx:
+
+ Updated environment and import/export directives
+
+2006-03-03 13:25 apo
+
+ * src/Utils/: Makefile.in, Utils_SignalsHandler.cxx,
+ Utils_SignalsHandler.h:
+
+ Remove unused files
+
+2006-03-03 12:07 asl
+
+ * src/Container/Container_i.cxx:
+
+ PAL9103 : if engine cannot start, the unknown exception is raised
+
+2006-03-02 12:06 srn
+
+ * src/Container/Container_i.cxx:
+
+ Removed unnecessary dlopen flag
+
+2006-03-02 10:06 jfa
+
+ * src/HDFPersist/HDFdataset.cc:
+
+ Replacing misused '==' operator with a correct assignment.
+
+2006-02-28 15:05 nds
+
+ * salome_adm/unix/: make_commence.in, config_files/check_msg2qm.m4,
+ config_files/check_pyqt.m4, config_files/check_qwt.m4,
+ config_files/check_sip.m4, config_files/check_vtk.m4:
+
+ Change configuration
+
+2006-02-28 15:03 nds
+
+ * configure.in.base:
+
+ [no log message]
+
+2006-02-28 14:46 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
+
+ Restored previous declaration of operator= method
+
+2006-02-28 12:55 srn
+
+ * src/Container/Container_i.cxx:
+
+ Added a flag RTLD to dlopen
+
+2006-02-28 12:48 srn
+
+ * src/SALOMEDSClient/: SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient_definitions.hxx:
+
+ Added a flag RTLD to dlopen
+
+2006-02-27 09:25 eap
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ "specific SALOME for ALLIANCES". fix pb that ALLIANCES hangs up during study saving
+
+2006-02-27 09:23 eap
+
+ * src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx:
+
+ "specific SALOME for ALLIANCES". fix memory pb in Store()
+
+2006-02-26 11:20 stv
+
+ * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
+
+ Updated SALOME GUI sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-21 16:10 prascle
+
+ * INSTALL, bin/VERSION, bin/createAppli.sh, bin/runSalome.py,
+ idl/SALOMEDS.idl, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ PR: mergefrom V3_2_0a1
+
+2006-02-21 09:10 stv
+
+ * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-21 08:10 srn
+
+ * src/SALOMEDSClient/: Makefile.in,
+ SALOMEDSClient_ClientFactory.hxx:
+
+ Fixed bug with missing SALOMEDS CORBA headers
+
+2006-02-20 15:11 prascle
+
+ * doc/index.txt:
+
+ PR: work in progress
+
+2006-02-20 12:24 srn
+
+ * src/SALOMEDSClient/: Makefile.in,
+ SALOMEDSClient_ClientFactory.cxx,
+ SALOMEDSClient_ClientFactory.hxx:
+
+ Added a new class ClientFactory, which has a set of static methods to create a SALOMEDSClient wrappers for the SALOMEDS CORBA objects. The libSalomeDS.so is dynamically loaded on requist for creation of the corresponing wrapper.
+
+2006-02-20 12:21 srn
+
+ * src/SALOMEDS/SALOMEDS.cxx:
+
+ Added a factory methods to convert CORBA SALOMEDS objects to SALOMEDSClient wrappers
+
+2006-02-20 10:20 stv
+
+ * src/SALOMEDS/: SALOMEDS_Client.cxx, SALOMEDS_Server.cxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 10:17 stv
+
+ * src/SALOMEDS/SALOMEDS_Client.cxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 10:08 stv
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 10:05 stv
+
+ * src/: SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 09:55 stv
+
+ * src/SALOMEDS/: SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.hxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 09:13 stv
+
+ * src/: Container/Container_i.cxx, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFobjectIdentify.c:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-20 08:56 stv
+
+ * src/Basics/BasicsGenericDestructor.hxx:
+
+ Updated SALOME Kernel sources for building under Ms Visual .NET on Windows platform.
+
+2006-02-19 11:02 prascle
+
+ * salome_adm/unix/config_files/Makefile.am:
+
+ PR: other modules not generated with autotools still need old versions of tools
+
+2006-02-19 11:01 prascle
+
+ * salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4:
+
+ PR: still required by other modules
+
+2006-02-18 18:36 prascle
+
+ * doc/salome/: gui/Makefile.am, tui/Makefile.am:
+
+ PR: make dist must copy from src
+
+2006-02-18 18:34 prascle
+
+ * doc/index.txt:
+
+ PR: work in progress
+
+2006-02-18 18:31 prascle
+
+ * src/NamingService/SALOME_NamingService.cxx, idl/SALOMEDS.idl:
+
+ PR: doxygen comments
+
+2006-02-18 18:28 prascle
+
+ * salome_adm/unix/config_files/check_cppunit.m4:
+
+ PR: AM_CONDITIONAL must be outside if then else bloc
+
+2006-02-17 13:35 prascle
+
+ * clean_configure:
+
+ PR: update with changes on doc
+
+2006-02-17 13:34 prascle
+
+ * doc/salome/: kernel_resources.pdf, kernel_resources.ps:
+
+ PR: replacement for Lyx document
+
+2006-02-17 13:29 prascle
+
+ * doc/: Makefile.am, SALOME_Application.txt, kernel_resources.txt,
+ txt2html.sh:
+
+ PR: replacement for Lyx document
+
+2006-02-17 09:18 apo
+
+ * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
+
+ To use native BOOST libraries
+
+2006-02-17 08:33 asv
+
+ * INSTALL, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_pthreads.m4, idl/SALOMEDS.idl,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ bin/VERSION, bin/createAppli.sh, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Merge with head and (in salome_adm) with OCC_development..a2 branch.
+
+2006-02-16 22:35 prascle
+
+ * doc/Makefile.am, doc/Makefile.in, doc/SALOME_Application.txt,
+ doc/salome/Makefile.am, doc/salome/Makefile.in,
+ doc/salome/gui/Makefile.am, doc/salome/gui/Makefile.in,
+ doc/salome/tui/Makefile.am, doc/salome/tui/Makefile.in,
+ Makefile.am, salome_adm/unix/make_common_starter.am:
+
+ PR: generate user doc with target userdoc
+
+2006-02-16 14:20 prascle
+
+ * Makefile.am, build_configure, configure.ac,
+ resources/Makefile.am, salome_adm/unix/config_files/Makefile.am,
+ src/HDFPersist/Makefile.am:
+
+ PR: add missing files to dist
+
+2006-02-15 20:08 prascle
+
+ * clean_configure:
+
+ PR: keep only CVS files
+
+2006-02-15 20:01 prascle
+
+ * salome_adm/unix/config_files/: acx_pthread.m4, check_pthreads.m4:
+
+ PR: new macro
+
+2006-02-15 16:40 prascle
+
+ * Makefile.am, bin/Makefile.am, idl/Makefile.am:
+
+ PR: make distcheck works
+
+2006-02-15 15:05 mkr
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ Porting to Mandriva 2006 platform.
+
+2006-02-15 10:09 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl_IParameters.hxx:
+
+ Added method decodeEntry
+
+2006-02-14 23:31 prascle
+
+ * bin/Makefile.am, idl/Makefile.am, src/Makefile.am,
+ src/Communication/Makefile.am, src/Container/Makefile.am,
+ src/GenericObj/Makefile.am, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.am, src/Logger/Makefile.am,
+ src/MPIContainer/Makefile.am, src/ModuleCatalog/Makefile.am,
+ src/NamingService/Makefile.am,
+ src/NamingService/Test/Makefile.am, src/Registry/Makefile.am,
+ src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am, src/TOOLSDS/Makefile.am,
+ src/TestContainer/Makefile.am, src/TestMPIContainer/Makefile.am,
+ src/UnitTests/Makefile.am, src/Utils/Makefile.am:
+
+ PR: idl c++ in a library
+
+2006-02-14 20:15 prascle
+
+ * Makefile.am, bin/Makefile.am, doc/Makefile.in, idl/Makefile.am,
+ resources/Makefile.am, salome_adm/unix/Makefile.am,
+ src/Makefile.am, src/Basics/Makefile.am,
+ src/Communication/Makefile.am, src/Container/Makefile.am,
+ src/GenericObj/Makefile.am, src/LifeCycleCORBA/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am, src/Logger/Makefile.am,
+ src/Logger/Test/Makefile.am, src/MPIContainer/Makefile.am,
+ src/ModuleCatalog/Makefile.am, src/ModuleGenerator/Makefile.am,
+ src/NamingService/Makefile.am,
+ src/NamingService/Test/Makefile.am, src/Registry/Makefile.am,
+ src/ResourcesManager/Makefile.am, src/SALOMEDS/Makefile.am,
+ src/SALOMEDSImpl/Makefile.am, src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
+ src/TestMPIContainer/Makefile.am, src/UnitTests/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Test/Makefile.am:
+
+ PR: conditionnal compilation and make dist
+
+2006-02-14 20:14 prascle
+
+ * configure.ac:
+
+ PR: conditionnal check prerequisite following user options
+
+2006-02-14 20:12 prascle
+
+ * salome_adm/unix/config_files/: Makefile.am, check_cppunit.m4,
+ check_hdf5.m4, check_lam.m4, check_mpi.m4, check_mpich.m4,
+ check_opengl.m4, check_swig.m4, enable_pthreads.m4, python.m4:
+
+ PR: improve tests and --help option of configure
+
+2006-02-14 15:55 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl_IParameters.hxx:
+
+ Added a method getDefaultScript
+
+2006-02-14 15:54 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ Added a method GetDefaultScript
+
+2006-02-14 14:08 srn
+
+ * src/SALOMEDSImpl/: Makefile.in, SALOMEDSImpl_IParameters.cxx,
+ SALOMEDSImpl_IParameters.hxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx:
+
+ Changed method DumpStudy, added IParameters
+
+2006-02-14 14:07 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ Changed method DumpStudy
+
+2006-02-13 10:35 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Modified methods encodeEntry and decodeEntry
+
+2006-02-10 15:11 apo
+
+ * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
+
+ Final fix for Bug GVIEW10647
+ Crash saving the model
+ (to provide a method to work without temporary directory)
+
+2006-02-10 13:51 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added 2 new methods encodeEntry and decodeEntry
+
+2006-02-10 12:06 srn
+
+ * src/: SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Added a check for negative savePoint parameters
+
+2006-02-10 10:30 srn
+
+ * src/SALOMEDS/SALOMEDS_IParameters.cxx:
+
+ Modified a method getDefaultScript
+
+2006-02-10 09:32 rahuel
+
+ * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
+
+ Debug-ReWrite
+
+2006-02-10 09:28 apo
+
+ * src/SALOMEDS/SALOMEDS_TMPFile_i.cxx:
+
+ Correct a mistake
+
+2006-02-10 09:12 apo
+
+ * src/: SALOMEDSImpl/Makefile.in,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_TMPFile.hxx, SALOMEDS/Makefile.in,
+ SALOMEDS/SALOMEDS_Driver_i.cxx, SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_TMPFile_i.cxx, SALOMEDS/SALOMEDS_TMPFile_i.hxx:
+
+ Fix for Bug GVIEW10647
+ Crash saving the model
+ (memory allocation optimized)
+
+2006-02-09 17:42 rahuel
+
+ * src/Utils/Utils_SignalsHandler.cxx:
+
+ SIGSTKFLT does not exist on CCFRT Alphe_OSF
+
+2006-02-09 17:40 rahuel
+
+ * src/TestMPIContainer/Makefile.in:
+
+ Missing idls
+
+2006-02-09 17:39 rahuel
+
+ * src/TestContainer/TestLogger.py:
+
+ New test
+
+2006-02-09 17:38 rahuel
+
+ * src/TestContainer/TestContainer.cxx:
+
+ CORBA::ORB_ptr orb instead of _var
+
+2006-02-09 17:37 rahuel
+
+ * src/TestContainer/TestComponentPy.py:
+
+ _get_machineName() does not exist in container interface : replaced by getHostName()
+
+2006-02-09 17:35 rahuel
+
+ * src/TestContainer/Makefile.in:
+
+ TestLogger.py was added
+ Missing idls
+
+2006-02-09 17:33 rahuel
+
+ * src/SALOMELocalTrace/: BaseTraceCollector.cxx,
+ LocalTraceBufferPool.cxx:
+
+ using namespace std ;
+ Must follow the includes
+
+ static mutex not initialized
+
+2006-02-09 17:30 rahuel
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ using namespace std ;
+ Must follow the includes
+
+ char ...[ variable ] is not correct
+ Use (as for WNT) : new char[ variable ]
+
+2006-02-09 17:28 rahuel
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeIOR.cxx, SALOMEDSImpl_AttributeInteger.cxx:
+
+ using namespace std ;
+ Must follow the includes
+
+2006-02-09 17:19 rahuel
+
+ * src/SALOMEDS/: SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx:
+
+ CORBA::Long instead of long
+ CORBA::Boolean instead of bool
+
+2006-02-09 17:10 rahuel
+
+ * src/SALOMEDS/Makefile.in:
+
+ idls missing
+
+2006-02-09 17:01 rahuel
+
+ * src/Registry/Makefile.in:
+
+ idls missing
+
+2006-02-09 16:58 rahuel
+
+ * src/: ModuleGenerator/testIDLparser.in,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NamingService/Makefile.in:
+
+ sh instead of bash
+
+2006-02-09 16:56 rahuel
+
+ * src/ModuleCatalog/Makefile.in:
+
+ idls missing and -ftemplate option
+
+2006-02-09 16:54 rahuel
+
+ * src/MPIContainer/Makefile.in:
+
+ idls missing
+
+2006-02-09 16:54 rahuel
+
+ * src/MPIContainer/MPIContainer_i.cxx:
+
+
+
+ include of Python.h must be the last one and generally
+ some system includes must be added before as :
+ #include <sstream>
+ #include <time.h>
+ #include <sys/time.h>
+ #include <stat.h>
+
+2006-02-09 16:49 rahuel
+
+ * src/LifeCycleCORBA/: Launchers.cxx, SALOME_LifeCycleCORBA.cxx:
+
+
+
+ include of Python.h must be the last one and generally
+ some system includes must be added before as :
+ #include <sstream>
+ #include <time.h>
+ #include <sys/time.h>
+ #include <stat.h>
+
+2006-02-09 16:47 rahuel
+
+ * src/Container/SALOME_Container_i.hxx:
+
+ PortableServer::POA_var poa, instead of _ptr
+
+2006-02-09 16:46 rahuel
+
+ * src/Container/SALOME_ContainerManagerServer.cxx:
+
+
+ CORBA::ORB_ptr orb instead of _var
+
+2006-02-09 16:45 rahuel
+
+ * src/Container/SALOME_Container.cxx:
+
+ include of Python.h must be the last one and generally
+ some system includes must be added before as :
+ #include <sstream>
+ #include <time.h>
+ #include <sys/time.h>
+ #include <stat.h>
+
+ CORBA::ORB_ptr orb instead of _var
+
+ Memory corruption with a char [40]
+
+2006-02-09 16:40 rahuel
+
+ * src/Container/Container_init_python.cxx:
+
+ include of Python.h must be the last one and generally
+ some system includes must be added before as :
+ #include <sstream>
+ #include <time.h>
+ #include <sys/time.h>
+ #include <stat.h>
+
+2006-02-09 16:39 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ include of Python.h must be the last one and generally
+ some system includes must be added before as :
+ #include <sstream>
+ #include <time.h>
+ #include <sys/time.h>
+ #include <stat.h>
+
+ PortableServer::POA_var poa instead of _ptr
+
+2006-02-09 16:29 rahuel
+
+ * src/Communication_SWIG/Makefile.in:
+
+ idl missing
+
+2006-02-09 16:28 rahuel
+
+ * src/Basics/BasicsGenericDestructor.cxx:
+
+ Static mùutex not initialized
+
+2006-02-09 16:27 rahuel
+
+ * salome_adm/unix/config_files/install-sh:
+
+ -f option in cp because of "permission denied"
+
+2006-02-09 16:25 rahuel
+
+ * salome_adm/unix/config_files/: check_sip.m4, check_vtk.m4:
+
+ shell syntax errors
+
+2006-02-09 16:22 rahuel
+
+ * salome_adm/unix/config_files/: check_pyqt.m4, check_qwt.m4:
+
+ shell syntax errors
+
+2006-02-09 16:22 srn
+
+ * src/: SALOMEDS/SALOMEDS_IParameters.cxx,
+ KERNEL_PY/iparameters.py:
+
+ Fixed a bug
+
+2006-02-09 16:21 rahuel
+
+ * salome_adm/unix/config_files/check_pthreads.m4:
+
+ -lpthread for osf and shell syntax error
+
+2006-02-09 16:19 rahuel
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ omniORBCXXFlags for osf1
+
+2006-02-09 16:16 rahuel
+
+ * salome_adm/unix/config_files/: ac_cxx_option.m4, check_Salome.m4,
+ check_cppunit.m4, check_msg2qm.m4:
+
+ shell syntax error
+
+2006-02-09 16:14 rahuel
+
+ * salome_adm/unix/make_conclude.in:
+
+ shell syntax
+
+2006-02-09 16:13 rahuel
+
+ * salome_adm/unix/envScript.in:
+
+ export syntax
+
+2006-02-09 16:12 rahuel
+
+ * bin/runSalome.py:
+
+ --terminal option <==> without IHM/GUI was not implemented
+
+2006-02-09 16:09 rahuel
+
+ * bin/runSalome:
+
+ export and shell syntaxes
+
+2006-02-09 16:07 rahuel
+
+ * bin/launchConfigureParser.py:
+
+ SuitRoot only if with ihm / GUI
+
+2006-02-09 16:06 rahuel
+
+ * bin/killSalomeWithPort.py:
+
+ kill of omniNames
+
+2006-02-09 16:04 rahuel
+
+ * bin/appliskel/: killCurrentPort, runAppli, runConsole, runParam,
+ runRemote.sh, runSession, runTests, searchFreePort.sh,
+ setAppliPath.sh:
+
+ sh <--> bash
+ export syntax
+
+2006-02-09 15:58 rahuel
+
+ * configure.in.base:
+
+ Required or optionnal products with/without ihm
+
+2006-02-09 15:56 rahuel
+
+ * build_configure:
+
+ sh instead of bash
+
+2006-02-09 15:55 rahuel
+
+ * Makefile.in:
+
+ for installation in appliskel : cp with f option
+
+2006-02-09 14:07 apo
+
+ * bin/runNS.sh:
+
+ To extract number of the port in more correct way
+
+2006-02-09 13:57 apo
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ To handle all kind of the exceptions in the Save functionality
+
+2006-02-09 13:13 jfa
+
+ * bin/runSalome.py:
+
+ PAL10512: Problems with runSalome --xterm. Run SessionServer in main shell.
+
+2006-02-09 12:52 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added method getStudyScript
+
+2006-02-09 11:18 jfa
+
+ * bin/runSalome.py:
+
+ PAL10512: Problems with runSalome --xterm. Run SessionServer and SessionLoader in main shell.
+
+2006-02-09 10:00 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added getDefaultScript static method
+
+2006-02-08 15:20 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Modified method getLastSavePoint
+
+2006-02-08 15:15 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added method getLastSavePoint
+
+2006-02-08 10:38 jfa
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Update version to 3.2.0a1
+
+2006-02-08 09:07 prascle
+
+ * salome_adm/unix/DEPRECATED/make_conclude.in:
+
+ PR: allow gui and other modules compilation
+
+2006-02-07 10:33 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDS/SALOMEDS_IParameters.cxx,
+ src/SALOMEDS/SALOMEDS_IParameters.hxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, src/KERNEL_PY/iparameters.py,
+ idl/SALOMEDS.idl:
+
+ modified method DumpStudy
+
+2006-02-07 09:11 srn
+
+ * src/KERNEL_PY/: Makefile.in, iparameters.py:
+
+ added IParameters Python interface
+
+2006-02-06 18:30 prascle
+
+ * src/NOTIFICATION_SWIG/Makefile.am:
+
+ PR: missing sources
+
+2006-02-06 18:29 prascle
+
+ * idl/Makefile.am:
+
+ PR: idl files distribution
+
+2006-02-06 18:28 prascle
+
+ * doc/Makefile.am:
+
+ PR: for doc generation
+
+2006-02-06 16:21 srn
+
+ * src/SALOMEDS/SALOMEDS_Study.cxx:
+
+ update of the package
+
+2006-02-06 15:49 boulant
+
+ * configure.ac, salome_adm/unix/Makefile.am,
+ salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in,
+ salome_adm/unix/DEPRECATED/depend.in,
+ salome_adm/unix/DEPRECATED/make_commence.in,
+ salome_adm/unix/DEPRECATED/make_conclude.in,
+ salome_adm/unix/DEPRECATED/make_module.in,
+ salome_adm/unix/DEPRECATED/make_omniorb.in:
+
+ Modifications pour gestion des fichiers obsolètes de salome_adm
+
+2006-02-06 15:33 srn
+
+ * salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/pythonbe.pyc,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
+
+ update of the package
+
+2006-02-06 13:51 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ To support References, stored by Salome maintainance version (2.2.x).
+
+2006-02-06 13:06 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Fixed some bugs
+
+2006-02-06 12:58 srn
+
+ * src/SALOMEDS/SALOMEDS_IParameters.cxx:
+
+ Fixed method getNbParameters
+
+2006-02-06 09:25 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added method getProperties
+
+2006-02-06 09:08 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added methods getEntries and getLists
+
+2006-02-05 14:52 prascle
+
+ * src/LifeCycleCORBA_SWIG/Makefile.am:
+
+ PR: change comment
+
+2006-02-05 14:51 prascle
+
+ * src/NOTIFICATION_SWIG/Makefile.am:
+
+ PR: simplification in order to allow parallel make
+
+2006-02-03 15:38 srn
+
+ * src/SALOMEDS/: SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Changed IParameters interafce
+
+2006-02-03 10:52 srn
+
+ * src/SALOMEDS/: Makefile.in, SALOMEDS_IParameters.cxx,
+ SALOMEDS_IParameters.hxx:
+
+ Added IParameters interafce
+
+2006-02-02 15:50 srn
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx, SALOMEDSImpl/testDS.cxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx:
+
+ Changed ID to strings and added 2 methods to Study: GetCommonParameters and GetModuleParameters
+
+2006-02-02 15:45 srn
+
+ * idl/: SALOMEDS.idl, SALOMEDS_Attributes.idl:
+
+ Changed ID to strings and added 2 methods to Study: GetCommonParameters and GetModuleParameters
+
+2006-02-02 14:55 prascle
+
+ * salome_adm/unix/make_commence.in:
+
+ PR: library name defined on check_boost
+
+2006-02-02 14:00 prascle
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ PR: remove -L/usr/lib
+
+2006-02-02 11:33 prascle
+
+ * bin/createAppli.sh, bin/runSalome.py, idl/SALOMEDS.idl,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ PR: mergefrom branch BR_V3_1_0_PR tag mergeto_trunk_02feb06
+
+2006-02-02 11:23 prascle
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ PR: compatibility with Debian Sarge boost libraries
+
+2006-02-02 10:07 prascle
+
+ * bin/runSalome.py, idl/SALOMEDS.idl,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ PR: merge from branch OCC_development_generic_2006 tag mergeto_BR_V3_1_0_PR_02feb06
+
+2006-02-02 08:46 prascle
+
+ * bin/createAppli.sh:
+
+ PR: add some checks
+
+2006-02-01 20:48 prascle
+
+ * configure.ac, salome_adm/unix/Makefile.am,
+ salome_adm/unix/make_conclude.in:
+
+ PR: to allow GUI compilation
+
+2006-02-01 16:10 prascle
+
+ * idl/Makefile.am, src/MPIContainer/Makefile.am,
+ src/TestMPIContainer/Makefile.am:
+
+ PR: debug MPI optional compilation
+
+2006-02-01 16:07 prascle
+
+ * src/: TestContainer/Makefile.am, TestContainer/TestContainer.cxx,
+ TestMPIContainer/TestMPIContainer.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx:
+
+ PR: remove SALOMETraceCollector dependance
+
+2006-02-01 16:04 prascle
+
+ * src/: Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/Makefile.am, Registry/Makefile.am,
+ Registry/SALOME_Registry_Server.cxx:
+
+ PR: remove SALOMETraceCollector dependance
+
+2006-02-01 16:03 prascle
+
+ * src/Container/Makefile.am:
+
+ PR: remove SALOMETraceCollector dependance, SALOME_ContainerPy.py must be executable
+
+2006-02-01 09:48 jfa
+
+ * src/SALOMEDS/: SALOMEDS_AttributeComment.cxx,
+ SALOMEDS_AttributeDrawable.cxx, SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeLocalID.cxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS_AttributePythonObject.cxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
+
+ Fix for bugs 11276, 11387: protect 'local' branches of 'client' classes with SALOMEDS::Locker.
+
+2006-01-31 19:24 boulant
+
+ * Makefile.in, clean_configure, configure.ac, bin/Makefile.am,
+ idl/Makefile.am, src/Makefile.am, src/Makefile.in,
+ src/Communication/Makefile.am, src/Communication/Makefile.in,
+ src/Communication_SWIG/Makefile.am,
+ src/Communication_SWIG/Makefile.in, src/Container/Makefile.in,
+ src/HDFPersist/Makefile.am, src/HDFPersist/Makefile.in,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/MPIContainer/Makefile.am, src/MPIContainer/Makefile.in,
+ src/NamingService/Test/Makefile.am,
+ src/NamingService/Test/Makefile.in, src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/Makefile.in, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in,
+ src/TestMPIContainer/Makefile.am,
+ src/TestMPIContainer/Makefile.in, src/UnitTests/Makefile.am,
+ src/UnitTests/Makefile.in:
+
+ - Traitement des Makefile.in modifiés depuis V310a2,
+ - Prise en compte des répertoires de test + nouveaux répertoires
+
+2006-01-31 13:52 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Debug of DumpStudy() method.
+
+2006-01-27 19:37 boulant
+
+ * AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, clean_configure,
+ configure.ac, configure.in.base, make_config.in,
+ DEPRECATED/Makefile.in, DEPRECATED/configure.in.base,
+ DEPRECATED/make_config.in, bin/Makefile.am, bin/runIDLparser.in,
+ doc/Makefile.in, doc/index.txt, doc/rst.css, doc/txt2html.sh,
+ doc/userguide.txt, idl/Makefile.am, idl/Makefile.in,
+ resources/Makefile.am, resources/Plugin.in,
+ salome_adm/Makefile.am, salome_adm/Makefile.in,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/Makefile.am, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/config.h.in, salome_adm/unix/envScript.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/sstream.in,
+ salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/sstream.in,
+ salome_adm/unix/config_files/Makefile.am,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_local.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/config.guess,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/libtool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ltconfig,
+ salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
+ salome_adm/unix/config_files/DEPRECATED/missing,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Basics/Makefile.am, src/Basics/Makefile.in,
+ src/Basics/Test/Makefile.am, src/Basics/Test/Makefile.in,
+ src/Communication/Makefile.am, src/Container/Makefile.am,
+ src/GenericObj/Makefile.am, src/GenericObj/Makefile.in,
+ src/HDFPersist/Makefile.am, src/KERNEL_PY/Makefile.am,
+ src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.in, src/Logger/Makefile.am,
+ src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/Logger/Test/Makefile.am, src/Logger/Test/Makefile.in,
+ src/ModuleCatalog/Makefile.am, src/ModuleCatalog/Makefile.in,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
+ src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
+ src/NamingService/Makefile.in, src/Notification/Makefile.am,
+ src/Notification/Makefile.in, src/Registry/Makefile.am,
+ src/Registry/Makefile.in, src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.am,
+ src/SALOMEDSClient/Makefile.am, src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSImpl/Makefile.am, src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/TOOLSDS/Makefile.am, src/TestContainer/Makefile.am,
+ src/TestContainer/Makefile.in, src/UnitTests/Makefile.am,
+ src/Utils/Makefile.am, src/Utils/Makefile.in,
+ src/Utils/Test/Makefile.am, src/Utils/Test/Makefile.in:
+
+ Merge de la branche BR_auto_V310a2
+
+2006-01-27 19:18 boulant
+
+ * build_configure:
+
+ Merge de la branche BR_auto_V310a2
+
+2006-01-26 16:12 boulant
+
+ * src/Basics/Makefile.am:
+
+ Suppression du subdir Test car il est prévu par le Makefile.am principal (src).
+
+2006-01-26 08:10 srn
+
+ * idl/SALOMEDS_Attributes.idl, src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeParameter_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeParameter.hxx,
+ src/SALOMEDSImpl/Makefile.in,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeParameter.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/testDS.cxx:
+
+ Implementation of AttributeParameter
+
+2006-01-20 07:50 apo
+
+ * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
+
+ Join BR2-D5-38-2003
+
+2006-01-16 15:56 secher
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx:
+
+ porting on Mandrake 10.1
+
+2006-01-13 07:28 apo
+
+ * bin/runSalome.py, src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Adjust to OCC_development_generic_2006
+
+2006-01-12 14:35 jfa
+
+ * bin/: runSalome.py:
+
+ PAL9102: Problem with module name with lower case.
+
+2006-01-11 09:18 apo
+
+ * INSTALL, LICENCE, Makefile.in, README, README.FIRST.txt,
+ build_configure, configure.in.base, make_config.in,
+ bin/NSparam.py, bin/VERSION, bin/addToKillList.py,
+ bin/createAppli.sh, bin/envSalome.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runNS.sh, bin/runSalome, bin/runSalome.csh,
+ bin/runSalome.py, bin/salome.launch, bin/salomeConsole.py,
+ bin/showNS.py, bin/appliskel/.bashrc,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/setAppliPath.sh, doc/INSTALL.txt, doc/Makefile.in,
+ doc/SALOME_Application.txt, doc/UnitTests.txt,
+ doc/configuration_examples/example_prerequis.sh,
+ doc/salome/DevelopersGuide.pdf, doc/salome/DevelopersGuide.ps,
+ doc/salome/KERNEL_index.html, doc/salome/Makefile.in,
+ doc/salome/OrganisationProduction_PAL.pdf,
+ doc/salome/OrganisationProduction_PAL.ps,
+ doc/salome/OrganisationProduction_PAL.sxw,
+ doc/salome/Parallelisme_dans_Salome.pdf,
+ doc/salome/Parallelisme_dans_Salome.ps,
+ doc/salome/ResourcesManagerManual.pdf,
+ doc/salome/Utilitaires_SALOME.doc,
+ doc/salome/Utilitaires_SALOME.pdf,
+ doc/salome/Utilitaires_SALOME.ps,
+ doc/salome/kernel_resources.pdf, doc/salome/kernel_resources.ps,
+ doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.in,
+ doc/salome/tui/pythfilter.py, idl/Logger.idl, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_DataTypeCatalog.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_MPIContainer.idl, idl/SALOME_MPIObject.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, idl/nstest.idl,
+ resources/Application-About.png, resources/Application-Logo.png,
+ resources/Application-Splash.png, resources/CatalogDataType.xml,
+ resources/CatalogModulePersonnel.xml_skel,
+ resources/CatalogResources.xml, resources/KERNELCatalog.xml,
+ resources/Plugin.in, resources/SALOMEDS_Resources,
+ resources/Tools_en.xml, resources/Tools_fr.xml,
+ resources/back.xpm, resources/cascade.png, resources/channel.cfg,
+ resources/close.png, resources/config, resources/copy.png,
+ resources/default.png, resources/dl_delete.png,
+ resources/dl_insert.png, resources/dl_movedown.png,
+ resources/dl_moveup.png, resources/forward.xpm,
+ resources/help.png, resources/home.xpm, resources/new.png,
+ resources/open.png, resources/paste.png,
+ resources/plot2d_dump.png, resources/plot2d_fitall.png,
+ resources/plot2d_fitarea.png, resources/plot2d_legend.png,
+ resources/plot2d_linear.png, resources/plot2d_linear_y.png,
+ resources/plot2d_lines.png, resources/plot2d_log.png,
+ resources/plot2d_log_y.png, resources/plot2d_pan.png,
+ resources/plot2d_points.png, resources/plot2d_settings.png,
+ resources/plot2d_splines.png, resources/plot2d_zoom.png,
+ resources/print.png, resources/redo.png, resources/reset.png,
+ resources/salomeCommonModel.spml, resources/save.png,
+ resources/select1.png, resources/tile.png, resources/uc_add.png,
+ resources/uc_clear.png, resources/uc_current.png,
+ resources/uc_del.png, resources/uc_new.png, resources/undo.png,
+ resources/view_back.png, resources/view_bottom.png,
+ resources/view_camera_dump.png, resources/view_fitall.png,
+ resources/view_fitarea.png, resources/view_front.png,
+ resources/view_glpan.png, resources/view_left.png,
+ resources/view_pan.png, resources/view_reset.png,
+ resources/view_right.png, resources/view_rotate.png,
+ resources/view_top.png, resources/view_triedre.png,
+ resources/view_zoom.png, salome_adm/Makefile.in,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/depend.in, salome_adm/unix/envScript.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in, salome_adm/unix/pythonbe.py,
+ salome_adm/unix/sstream.in,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.in,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.in,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.in,
+ src/Communication/Makefile.in,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Communication_SWIG/Makefile.in,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx, src/GenericObj/Makefile.in,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrGetSize.c, src/HDFPersist/HDFattrGetType.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetOrder.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
+ src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
+ src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
+ src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.in, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/Launchers.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/Logger/Test/Makefile.in, src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/SALOME_TestModuleCatalog.py,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.in,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/Makefile.in,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/NamingService/Test/Makefile.in,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS.cdl, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS.hxx, src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.in,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.in, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.in,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_Mutex.cxx, src/Utils/Utils_Mutex.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.in, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx:
+
+ Merge with OCC_development_generic_2006
+
+2006-01-10 15:34 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ PAL11181: 'invalid pointer' when loading GEOM after an hdf.
+
+2006-01-10 10:49 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Update version number: 2.2.8
+
+2005-12-29 13:53 asl
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
+
+ PAL10035 - no warning if there is no rights to save
+
+2005-12-29 13:07 apo
+
+ * salome_adm/unix/make_commence.in:
+
+ Adjust to HEAD modifications
+
+2005-12-22 15:01 prascle
+
+ * INSTALL, bin/VERSION, bin/launchConfigureParser.py,
+ bin/runSalome.py, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml, salome_adm/unix/pythonbe.py,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/Makefile.in,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_test.py, src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ PR: merge from branch BR_3_1_0deb tag mergeto_trunk_22dec05
+
+2005-12-20 18:56 prascle
+
+ * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ PR: bug 10994 correction proposal
+
+2005-12-16 15:52 prascle
+
+ * src/ResourcesManager/: SALOME_ResourcesCatalog_Handler.cxx,
+ SALOME_ResourcesManager.cxx:
+
+ PR: comment not useful traces
+
+2005-12-16 15:49 prascle
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NamingService/SALOME_NamingService.cxx:
+
+ PR: comment not useful traces
+
+2005-12-15 12:32 boulant
+
+ * src/Makefile.am, configure.ac, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_local.m4:
+
+ Intégration bibliothèque Batch version 0.3.0 (avec gestionnaire local)
+ Finalisation de la partie swig.
+
+2005-12-14 15:42 jfa
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Update version name to 3.1.0
+
+2005-12-13 15:34 prascle
+
+ * src/: KERNEL_PY/kernel_shared_modules.py,
+ LifeCycleCORBA/Launchers.hxx, MPIContainer/MPIContainer_i.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ PR: mergefrom branch BR_PR_V310b1 tag mergeto_BR_3_1_0deb_13dec05
+
+2005-12-13 15:34 jfa
+
+ * bin/killSalomeWithPort.py:
+
+ PAL10873: Debian: HOSTNAME settings. Update fix in accordance with modifications in HEAD.
+
+2005-12-13 15:31 prascle
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.hxx:
+
+ PR: mergefrom branch BR_PR_V310b1 tag mergeto_BR_3_1_0deb_13dec05
+
+2005-12-13 15:25 jfa
+
+ * bin/killSalomeWithPort.py:
+
+ PAL10873: Debian: HOSTNAME settings. A patch by Paul RASCLE.
+
+2005-12-13 14:06 jfa
+
+ * salome_adm/unix/pythonbe.py,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ src/Container/SALOME_ContainerPy.py, src/KERNEL_PY/Makefile.in,
+ src/KERNEL_PY/kernel_shared_modules.py,
+ src/KERNEL_PY/omnipatch.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_shared_modules.py:
+
+ PAL10310: Problem with incomplete import of python CORBA modules.
+
+2005-12-13 13:53 prascle
+
+ * salome_adm/unix/config_files/check_lam.m4:
+
+ PR: clean
+
+2005-12-12 19:36 prascle
+
+ * salome_adm/unix/config_files/check_lam.m4:
+
+ PR: from bernard Secher
+
+2005-12-09 19:31 prascle
+
+ * src/Container/Container_i.cxx:
+
+ PR: import pthread before python, some cleaning (indent, comments)
+
+2005-12-09 19:29 prascle
+
+ * src/: LifeCycleCORBA/Launchers.hxx,
+ MPIContainer/MPIContainer_i.cxx:
+
+ PR: import pthread before python
+
+2005-12-09 19:26 prascle
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ PR: check return on sem_wait: interruptible by signal
+
+2005-12-09 19:24 prascle
+
+ * src/KERNEL_PY/kernel_shared_modules.py:
+
+ PR: avoid import CORBA, in case of multiple ORB (orbit), use from omniORB import CORBA
+
+2005-12-09 19:21 prascle
+
+ * src/: Container/SALOME_ContainerManager.hxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ PR: allow inheritance for paco++
+
+2005-12-09 16:43 vsr
+
+ * src/TOOLSDS/SALOMEDS_Tool.cxx:
+
+ Bug PAL10850: A problem in SALOMEDS_Tool::PutStreamToFiles() method : crash
+
+2005-12-09 16:04 boulant
+
+ * bin/Makefile.am:
+
+ Adding comments
+
+2005-12-09 16:01 boulant
+
+ * Makefile.am, configure.ac, bin/Makefile.am,
+ salome_adm/unix/config_files/check_cppunit.m4, src/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.am,
+ src/LifeCycleCORBA/Test/Makefile.in, src/Logger/Test/Makefile.am,
+ src/Logger/Test/Makefile.in, src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.am,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/UnitTests/Makefile.am, src/UnitTests/Makefile.in,
+ src/Utils/Makefile.am, src/Utils/Test/Makefile.am,
+ src/Utils/Test/Makefile.in:
+
+ Modification for building unit tests (src/UnitTest and src/*/Test) with automake from Makefile.am.
+
+2005-12-08 16:41 boulant
+
+ * salome_adm/Makefile.am, salome_adm/Makefile.in,
+ salome_adm/unix/Makefile.am,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/Makefile.am, Makefile.am,
+ clean_configure, configure.ac, idl/Makefile.am, src/Makefile.am,
+ src/Basics/Makefile.am, src/Basics/Test/Makefile.am,
+ src/Basics/Test/Makefile.in, src/Notification/Makefile.am,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.am,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMETraceCollector/Makefile.am:
+
+ Complétude passage automake:
+ - bin
+ - resources
+ - idl
+ - salome_adm
+ Et amorce de prise en charge des Test unitaire
+
+2005-12-08 16:01 boulant
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ Report d'une correction de la V310
+
+2005-12-08 15:46 vsr
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ PAL10841: To disable exception handler in GUI by command line option
+
+2005-12-08 08:53 jfa
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Fix bug 10214. Import salome_test crashes Salome on Debian. Suppress parallel computations of GEOM nodes, using gates.
+
+2005-12-07 18:42 boulant
+
+ * resources/: Makefile.am, Plugin.in:
+
+ Gestion par Makefile.am
+
+2005-12-07 18:38 boulant
+
+ * bin/: Makefile.am, runIDLparser.in:
+
+ Gestion par Makefile.am
+ runIDLParser est ramené dans le répertoire courant.
+
+2005-12-07 14:10 jfa
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ PAL10716: Using native qwt on mandriva 2006.0. A fix by Erwan ADAM.
+
+2005-12-07 13:24 vsr
+
+ * bin/runSalome.py:
+
+ CSF_PluginDefaults environment variable should be set to default value only if it is not customized by the user (e.g. if there is a custom CAF-based application or module)
+
+2005-12-05 17:04 smh
+
+ * src/Basics/Test/BasicMainTest.hxx,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ idl/SALOME_Comm.idl, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_TestMPIComponent.idl, idl/nstest.idl,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/UnitTests.cxx, src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Test/TestUtils.cxx, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFascii.hxx:
+
+ Copyrights update
+
+2005-12-05 15:40 jfa
+
+ * src/: Communication/libSALOME_Comm.i,
+ Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ PAL10761: improve remote launch of containers. A fix by Anthony GEAY.
+
+2005-12-05 12:16 prascle
+
+ * src/NamingService/Test/: NamingServiceTest.cxx,
+ NamingServiceTest.hxx:
+
+ PR: merge from BR_UT_V310a3 tag mergeto_trunk_06dec05
+
+2005-12-05 12:12 prascle
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ PR: merge from BR_UT_V310a3 tag mergeto_trunk_06dec05
+
+2005-12-05 12:07 prascle
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ PR: avoid unnecessary tests and warnings
+
+2005-12-05 12:06 prascle
+
+ * src/NamingService/Test/: NamingServiceTest.cxx,
+ NamingServiceTest.hxx:
+
+ PR: clean Naming service directory /containers after tests
+
+2005-12-05 09:03 prascle
+
+ * INSTALL, Makefile.in, bin/NSparam.py, bin/VERSION,
+ bin/killSalomeWithPort.py, bin/runSalome.py,
+ bin/appliskel/README, bin/appliskel/envd,
+ bin/appliskel/killCurrentPort, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/setAppliPath.sh, doc/SALOME_Application.txt,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ PR: merge from branch BR_UT_V310a3 tag mergeto_trunk_05dec05
+
+2005-12-03 14:24 prascle
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ PR: a cause of bad traces th. 0...
+
+2005-12-02 20:59 boulant
+
+ * build_configure, salome_adm/unix/make_common_starter.am,
+ src/Makefile.am, src/Communication/Makefile.am,
+ src/Communication/Makefile.in, src/Container/Makefile.am,
+ src/KERNEL_PY/Makefile.am, src/KERNEL_PY/Makefile.in,
+ src/LifeCycleCORBA/Makefile.am, src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA_SWIG/Makefile.am,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/ModuleGenerator/Makefile.am, src/ModuleGenerator/Makefile.in,
+ src/NOTIFICATION_SWIG/Makefile.am, src/SALOMEDS/Makefile.am,
+ src/SALOMEDS/Makefile.in, src/SALOMEDSClient/Makefile.am,
+ src/SALOMEDSClient/Makefile.in, src/SALOMEDSImpl/Makefile.am,
+ src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.am,
+ src/TOOLSDS/Makefile.in, src/TestContainer/Makefile.am,
+ src/TestContainer/Makefile.in:
+
+ Première version avec la totalité des packages sources en automake.
+ Les répertoires tests ne sont pas encore traités.
+ La compilation et installation sont menées à termes, mais le produit n'est pas validé par la mise en fonctionnement avec le GUI et les autres modules (prochaine étape).
+
+2005-12-02 14:07 jfa
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Update version name to 2.2.7
+
+2005-12-02 10:59 jfa
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ PAL10716: Using native gwt on mandriva 2006.0. A fix by Erwan ADAM.
+
+2005-12-02 10:00 prascle
+
+ * INSTALL, bin/VERSION, bin/killSalomeWithPort.py,
+ bin/runSalome.py, salome_adm/unix/config_files/check_qt.m4,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py:
+
+ PR: merge from branch BR_OCC_For_3_1_0b1 tag mergeto_BR_UT_V310a3_01dec05
+
+2005-12-01 19:54 boulant
+
+ * configure.ac, salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/check_qt.m4, src/Makefile.am,
+ src/Container/Makefile.am, src/Container/Makefile.in,
+ src/GenericObj/Makefile.am, src/GenericObj/Makefile.in,
+ src/Logger/Makefile.am, src/ModuleCatalog/Makefile.am,
+ src/ModuleCatalog/Makefile.in, src/NOTIFICATION_SWIG/Makefile.am,
+ src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.am,
+ src/NamingService/Makefile.in, src/Notification/Makefile.am,
+ src/Notification/Makefile.in, src/Registry/Makefile.am,
+ src/Registry/Makefile.in, src/ResourcesManager/Makefile.am,
+ src/ResourcesManager/Makefile.in,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMETraceCollector/Makefile.am,
+ src/SALOMETraceCollector/Makefile.in, src/Utils/Makefile.am,
+ src/Utils/Makefile.in:
+
+ Version avec Traitement d'une interface swig (NOTIFICATION_SWIG). Le KERNEL est transformé jusque Container (reste TestContainer LifeCycleCORBA, ...).
+
+2005-12-01 10:19 jfa
+
+ * salome_adm/unix/: pythonbe.py, config_files/check_omniorb.m4:
+
+ PAL10310: Problem with incomplete import of python CORBA modules. Full patch applied.
+
+2005-12-01 10:01 smh
+
+ * INSTALL, bin/VERSION:
+
+ Version b1
+
+2005-12-01 09:41 prascle
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ MPIContainer/MPIContainer_i.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: just in case we try to find or start more than 10**8 parallel containers!
+
+2005-11-30 20:59 prascle
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ PR: mpi containers portability
+
+2005-11-30 20:57 prascle
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ PR: remove -L/usr/lib
+
+2005-11-30 18:11 vsr
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ PAL10376: Add QT_CLEAN_NAMESPACE macro definition to avoid compilation problems on some platforms
+
+2005-11-30 10:01 prascle
+
+ * src/NamingService/: Test/NamingServiceTest.cxx,
+ SALOME_NamingService.cxx:
+
+ PR: allow directories in Naming service of only one character.
+
+2005-11-29 19:21 prascle
+
+ * bin/appliskel/README, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runParam,
+ bin/appliskel/runRemote.sh, bin/appliskel/runSession,
+ bin/appliskel/runTests, bin/appliskel/searchFreePort.sh,
+ bin/appliskel/setAppliPath.sh, Makefile.in, bin/NSparam.py,
+ bin/appliskel/killCurrentPort:
+
+ PR: Application scripts improvement
+
+2005-11-29 16:35 secher
+
+ * salome_adm/unix/config_files/check_lam.m4:
+
+ debug of check lam
+
+2005-11-29 15:13 secher
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ debug of MPI containers
+
+2005-11-28 11:36 prascle
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ PR: report corrections from occ
+
+2005-11-23 17:09 jfa
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ Improve variable handling
+
+2005-11-23 14:38 prascle
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ PR : _ComponentDatatType instance variable was not initialized (only local variable)
+
+2005-11-21 11:12 prascle
+
+ * bin/appliskel/envd:
+
+ PR: filter on *.sh (to avoid source backup files produced by text editors)
+
+2005-11-21 10:48 prascle
+
+ * doc/SALOME_Application.txt, bin/appliskel/README:
+
+ PR: doc correction
+
+2005-11-18 20:40 boulant
+
+ * AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in, NEWS,
+ build_configure, clean_configure, configure.ac,
+ DEPRECATED/Makefile.in, idl/Makefile.am, idl/Makefile.in,
+ salome_adm/unix/make_common_starter.am,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/DEPRECATED/config.guess,
+ salome_adm/unix/config_files/DEPRECATED/config.sub,
+ salome_adm/unix/config_files/DEPRECATED/install-sh,
+ salome_adm/unix/config_files/DEPRECATED/libtool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ltconfig,
+ salome_adm/unix/config_files/DEPRECATED/ltmain.sh,
+ salome_adm/unix/config_files/DEPRECATED/missing,
+ salome_adm/unix/config_files/DEPRECATED/mkinstalldirs,
+ src/Makefile.am, src/Makefile.in, src/Basics/Makefile.am,
+ src/Basics/Makefile.in, src/HDFPersist/Makefile.am,
+ src/HDFPersist/Makefile.in, src/Logger/Makefile.am,
+ src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server_main.cxx,
+ src/SALOMELocalTrace/Makefile.am,
+ src/SALOMELocalTrace/Makefile.in:
+
+ Adaptation pour le passage en automake. Seuls les 5 premiers paquets des sources sont passés et le répertoire idl
+
+2005-11-18 19:40 boulant
+
+ * clean_configure, configure.ac, configure.in.base, make_config.in,
+ DEPRECATED/configure.in.base, DEPRECATED/make_config.in,
+ doc/index.txt, doc/rst.css, doc/txt2html.sh, doc/userguide.txt,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/config.h.in, salome_adm/unix/envScript.in,
+ salome_adm/unix/sstream.in, salome_adm/unix/DEPRECATED/Doxyfile,
+ salome_adm/unix/DEPRECATED/F77config.h.in,
+ salome_adm/unix/DEPRECATED/config.h.in,
+ salome_adm/unix/DEPRECATED/envScript.in,
+ salome_adm/unix/DEPRECATED/sstream.in,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_Salome.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_java.m4,
+ salome_adm/unix/config_files/DEPRECATED/check_mico.m4:
+
+ Epuration des éléments obsolètes après analyse de la procédure de construction.
+
+2005-11-18 19:35 boulant
+
+ * Makefile.in, build_configure, doc/Makefile.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_mpi.m4:
+
+ Epuration des éléments obsolètes après analyse de la procédure de construction.
+
+2005-11-18 12:21 mkr
+
+ * bin/runSalome.py:
+
+ Add the possibility to launch Salome with --modules option.
+
+2005-11-18 11:10 vsr
+
+ * INSTALL, bin/VERSION:
+
+ Increment version number: 3.1.0a3
+
+2005-11-18 08:38 jfa
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ PAL10310: Incomplete import of python CORBA modules. Ensure patch working in python container.
+
+2005-11-17 16:51 vsr
+
+ * src/SALOMEDS/SALOME_DriverPy.py:
+
+ Fix a bug of python implementation of SALOMEDS driver: component data type should be property of the instance but not of the class
+
+2005-11-17 16:46 vsr
+
+ * bin/killSalomeWithPort.py:
+
+ Simplify getPiDict() method (taking host name)
+
+2005-11-17 16:14 mzn
+
+ * src/NamingService/SALOME_NamingServicePy.py:
+
+ SALOME_NamingServicePy_i::__init__ method modification.
+
+2005-11-17 11:03 secher
+
+ * src/: LifeCycleCORBA/Makefile.in, MPIContainer/Makefile.in,
+ ModuleCatalog/Makefile.in, SALOMEDS/Makefile.in,
+ TestContainer/Makefile.in, TestMPIContainer/Makefile.in:
+
+ unused QT dependancies
+
+2005-11-17 10:08 apo
+
+ * bin/: orbmodule.py, runSalome.py:
+
+ To apply patch for Bug PAL8142
+ Unstable runSalome
+
+2005-11-16 15:48 prascle
+
+ * bin/launchConfigureParser.py, bin/orbmodule.py, bin/runSalome.py,
+ salome_adm/unix/config_files/check_cas.m4:
+
+ PR: merge from branch BR_OCC_For_3_1_0a3 tag mergeto_trunk_16nov05
+
+2005-11-16 12:14 secher
+
+ * bin/appliskel/envd, src/LifeCycleCORBA/Makefile.in,
+ src/MPIContainer/Makefile.in, src/ModuleCatalog/Makefile.in,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Makefile.in, src/TestContainer/Makefile.in,
+ src/TestMPIContainer/Makefile.in:
+
+ resolve dependances on QT
+
+2005-11-16 01:00 prascle
+
+ * bin/killSalomeWithPort.py:
+
+ PR: HOSTNAME not always defined
+
+2005-11-15 21:46 prascle
+
+ * bin/runSalome.py, bin/appliskel/runAppli, bin/appliskel/runTests,
+ idl/nstest.idl, salome_adm/unix/config_files/check_lam.m4,
+ src/Makefile.in, src/Communication/Makefile.in,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication_SWIG/Makefile.in,
+ src/Communication_SWIG/libSALOME_Comm.i,
+ src/Container/Makefile.in, src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/MPIContainer/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/Test/Makefile.in,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/NamingService/Test/TestNamingService.cxx,
+ src/NamingService/Test/TestNamingService.py,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/TestMPIContainer/Makefile.in, src/UnitTests/Makefile.in,
+ src/UnitTests/UnitTests.cxx:
+
+ PR: merge from branch BR_UT_V310a2 tag BR_UT_V310a2_20051115
+
+2005-11-15 21:36 prascle
+
+ * bin/addToKillList.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runSalome.py, doc/SALOME_Application.txt,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFdataset.cc,
+ src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetOrder.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in:
+
+ PR: merge from trunk tag mergeto_BR_UT_V310a2_15nov05
+
+2005-11-15 20:53 prascle
+
+ * bin/appliskel/runAppli:
+
+ PR: runAppli without args must not delete omniORB config files.
+
+2005-11-15 20:52 prascle
+
+ * bin/runSalome.py:
+
+ PR: Allow Only Kernel, Gui not mandatory (CCRT, Tests...)
+
+2005-11-15 20:50 prascle
+
+ * src/NamingService/: SALOME_NamingService.cxx,
+ SALOME_NamingService.hxx:
+
+ PR: SALOME_NamingService class rewrited
+
+2005-11-15 20:49 prascle
+
+ * src/NamingService/Test/: NamingServiceTest.cxx,
+ NamingServiceTest.hxx:
+
+ PR: unit tests Naming service completed
+
+2005-11-15 18:32 jfa
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ CAS_STDPLUGIN must be set
+
+2005-11-15 17:15 mkr
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Modify OCC flags.
+
+2005-11-15 08:28 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Improve resource manager: SalomeAppConfig variable: ";" symbol is used as directories separator under Windows; both ";" and ":" symbols can be used under Linux
+
+2005-11-14 17:12 prascle
+
+ * doc/SALOME_Application.txt:
+
+ PR: some comments added
+
+2005-11-14 16:53 prascle
+
+ * bin/addToKillList.py, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runSalome.py, doc/SALOME_Application.txt,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFdataset.cc,
+ src/HDFPersist/HDFdataset.hxx, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetOrder.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDSImpl/Makefile.in, src/TOOLSDS/Makefile.in:
+
+ PR: merge from branch BR_OCC_For_3_1_0a3 tag mergeto_trunk_14nov05
+
+2005-11-14 16:40 mzn
+
+ * bin/: orbmodule.py, runSalome.py:
+
+ Improve waitNS function for more stable salome launch.
+
+2005-11-11 10:25 mkr
+
+ * src/: SALOMEDSImpl/Makefile.in, SALOMEDS/Makefile.in:
+
+ Remove uncessary libraries and dependences (for OCC6.0) from configuration
+ files and Makefiles.
+
+2005-11-11 10:21 mkr
+
+ * salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/make_commence.in, src/TOOLSDS/Makefile.in,
+ src/HDFPersist/Makefile.in:
+
+ Remove uncessary libraries and dependences (for OCC6.0) from configuration
+ files and Makefiles.
+
+2005-11-09 14:28 vsr
+
+ * bin/addToKillList.py:
+
+ PAL9538
+
+2005-11-08 19:16 prascle
+
+ * src/NamingService/: SALOME_NamingService.cxx,
+ Test/NamingServiceTest.cxx, Test/NamingServiceTest.hxx:
+
+ PR: Naming service Unit tests, complements...
+
+2005-11-07 19:53 prascle
+
+ * bin/appliskel/: runAppli, runTests:
+
+ PR: in case of use MPI LAM for MPI components
+
+2005-11-07 19:28 prascle
+
+ * idl/nstest.idl, src/LifeCycleCORBA/Test/Makefile.in,
+ src/NamingService/Test/Makefile.in,
+ src/NamingService/Test/NamingServiceTest.cxx,
+ src/NamingService/Test/NamingServiceTest.hxx,
+ src/UnitTests/Makefile.in:
+
+ PR: some unit tests on Naming service
+
+2005-11-07 16:13 eap
+
+ * src/HDFPersist/Makefile.in:
+
+ PAL6948 (Persistence in MED). Add HDFdatasetGetOrder.c
+
+2005-11-07 16:13 eap
+
+ * src/HDFPersist/HDFtypes.h:
+
+ PAL6948 (Persistence in MED). Add "typedef H5T_order_t hdf_byte_order;"
+
+2005-11-07 16:12 eap
+
+ * src/HDFPersist/: HDFascii.cc, HDFdataset.cc, HDFdataset.hxx,
+ HDFdatasetCreate.c, HDFdatasetGetOrder.c, hdfi.h:
+
+ PAL6948 (Persistence in MED). Get byte order of dataset and store it in ASCII format
+
+2005-11-07 14:03 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Fix PAL10459
+
+2005-11-07 13:42 vsr
+
+ * bin/: killSalome.py, killSalomeWithPort.py, runSalome.py:
+
+ Fix PAL9538
+
+2005-11-07 13:32 jfa
+
+ * src/SALOMEDS/SALOMEDS_SComponent_i.cxx:
+
+ PAL10400: Mandrake porting: SALOMEDS::SComponent::ComponentIOR() leads to Salome crash if the IOR is not set
+
+2005-11-07 10:23 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: with lam, transfer some environment variables
+
+2005-11-05 13:05 prascle
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ src/Communication_SWIG/Makefile.in, src/Container/Makefile.in:
+
+ PR: for use of MPI lam
+
+2005-11-03 17:56 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Increment version number: 2.2.6
+
+2005-11-03 17:56 vsr
+
+ * salome_adm/unix/make_commence.in:
+
+ Fix a bug of -XLinker option: "-XLinker <path>" should be used instead of "-XLinker -L<path>"
+
+2005-11-03 08:09 vsr
+
+ * bin/: runSalome.py, killSalome.py, killSalomeWithPort.py:
+
+ PAL9538
+
+2005-11-02 16:55 prascle
+
+ * src/: Makefile.in, Communication/Makefile.in,
+ Communication/MultiCommException.hxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SenderFactory.hxx, Communication_SWIG/Makefile.in,
+ Communication_SWIG/libSALOME_Comm.i, MPIContainer/Makefile.in,
+ TestMPIContainer/Makefile.in:
+
+ PR: corrections from A. Geay
+
+2005-11-02 16:48 prascle
+
+ * src/: NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/Test/Makefile.in,
+ NamingService/Test/NamingServiceTest.cxx,
+ NamingService/Test/NamingServiceTest.hxx,
+ NamingService/Test/TestNamingService.cxx,
+ NamingService/Test/TestNamingService.py, UnitTests/Makefile.in,
+ UnitTests/UnitTests.cxx, LifeCycleCORBA/Test/Makefile.in,
+ LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx, Makefile.in:
+
+ PR: Naming Service Comments, add unit tests
+
+2005-11-02 12:10 prascle
+
+ * src/: SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: debug some synchro problems on UnitTests
+
+2005-10-26 12:06 jfa
+
+ * src/SALOMEDS/SALOMEDS_SComponent_i.cxx:
+
+ PAL10400: ComponentIOR() leads to Salome crash if the IOR is not set
+
+2005-10-26 12:03 jfa
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ PAL10399: Possible problems with saving data of Python modules
+
+2005-10-26 09:50 vsr
+
+ * INSTALL:
+
+ Update version number: 3.1.0a2
+
+2005-10-26 08:13 jfa
+
+ * src/NamingService/SALOME_NamingService.cxx:
+
+ PAL10358: GetStudyByName() doesn't work if a study has not already been created
+
+2005-10-21 10:24 akk
+
+ * src/KERNEL_PY/salome_test.py:
+
+ Correction of the path to MED file to import.
+
+2005-10-19 18:06 smh
+
+ * salome_adm/unix/make_module.in, src/KERNEL_PY/salome_test.py,
+ Makefile.in:
+
+ Remove examples
+
+2005-10-19 15:55 mzn
+
+ * Makefile.in, salome_adm/unix/make_module.in,
+ src/KERNEL_PY/salome_test.py:
+
+ Movement of examples to CVS EXAMPLES SAMPLES_SRC.
+
+2005-10-19 15:23 apo
+
+ * salome_adm/unix/: make_commence.in, config_files/check_boost.m4:
+
+ To merge with HEAD version
+
+2005-10-18 17:07 prascle
+
+ * bin/addToKillList.py, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: merge from BR_UnitTests (tag mergeto_trunk_18oct05)
+ improvement trace when shutdown
+
+2005-10-18 16:39 smh
+
+ * bin/VERSION:
+
+ Preparation of 3.1.0a2 - version ID
+
+2005-10-18 16:38 smh
+
+ * src/SALOMEDS/Makefile.in:
+
+ Preparation of 3.1.0a2 - compilation error on Fedora3 platform
+
+2005-10-18 16:08 prascle
+
+ * bin/addToKillList.py,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py:
+
+ PR: killList procedure for containers used in tests
+
+2005-10-18 16:07 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_ContainerManager.cxx:
+
+ PR: more messages for debug shutdown
+
+2005-10-18 09:20 prascle
+
+ * src/: SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ PR: trace improvement
+
+2005-10-17 12:48 prascle
+
+ * idl/SALOME_Session.idl, resources/CatalogRessources.xml,
+ resources/Plugin, salome_adm/unix/config_files/check_med2.m4,
+ src/A_LIRE_SALOME, src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
+
+ PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05 - remove files
+
+2005-10-17 12:29 prascle
+
+ * INSTALL, Makefile.in, README, README.FIRST.txt,
+ configure.in.base, bin/VERSION, bin/addToKillList.py,
+ bin/createAppli.sh, bin/killSalome.py, bin/killSalomeWithPort.py,
+ bin/launchConfigureParser.py, bin/orbmodule.py, bin/runNS.sh,
+ bin/runSalome, bin/runSalome.py, bin/salome.launch,
+ bin/salomeConsole.py, bin/appliskel/.bashrc,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/runTests,
+ doc/INSTALL.txt, doc/SALOME_Application.txt, doc/UnitTests.txt,
+ doc/salome/Parallelisme_dans_Salome.pdf,
+ doc/salome/Parallelisme_dans_Salome.ps,
+ doc/salome/ResourcesManagerManual.pdf, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOME_Comm.idl, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
+ resources/CatalogResources.xml, resources/KERNELCatalog.xml,
+ resources/Plugin.in, salome_adm/Makefile.in,
+ salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_cppunit.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_msg2qm.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.in,
+ src/Basics/BasicsGenericDestructor.cxx,
+ src/Basics/BasicsGenericDestructor.hxx, src/Basics/Makefile.in,
+ src/Basics/Test/BasicMainTest.hxx, src/Basics/Test/Makefile.in,
+ src/Communication/Makefile.in,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/HDFPersist/HDFascii.cc, src/HDFPersist/HDFascii.hxx,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFobject.hxx, src/KERNEL_PY/Help.py,
+ src/KERNEL_PY/Makefile.in, src/KERNEL_PY/PyInterp.py,
+ src/KERNEL_PY/batchmode_salome.py, src/KERNEL_PY/import_hook.py,
+ src/KERNEL_PY/kernel_shared_modules.py, src/KERNEL_PY/salome.py,
+ src/KERNEL_PY/salome_ComponentGUI.py,
+ src/KERNEL_PY/salome_iapp.py, src/KERNEL_PY/salome_kernel.py,
+ src/KERNEL_PY/salome_shared_modules.py,
+ src/KERNEL_PY/salome_study.py, src/KERNEL_PY/salome_test.py,
+ src/LifeCycleCORBA/Launchers.cxx, src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.py, src/Logger/Test/Makefile.in,
+ src/Logger/Test/TestKiller.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/IDLparser.py, src/NamingService/Makefile.in,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cxx,
+ src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Attributes.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.cxx,
+ src/SALOMEDS/SALOMEDS_Driver_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Study.cxx, src/SALOMEDS/SALOMEDS_Study.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/SALOMEDS/SALOME_DriverPy.py, src/SALOMEDSClient/Makefile.in,
+ src/SALOMEDSClient/SALOMEDSClient.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ src/SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ src/SALOMEDSImpl/Makefile.in,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ src/SALOMEDSImpl/testDS.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ src/TOOLSDS/Makefile.in, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.hxx, src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py, src/Utils/Makefile.in,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/Utils_Timer.hxx, src/Utils/duplicate.cxx,
+ src/Utils/Test/Makefile.in, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/TestUtils.py, src/Utils/Test/UtilsTest.cxx,
+ src/Utils/Test/UtilsTest.hxx:
+
+ PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
+
+2005-10-17 11:20 prascle
+
+ * src/: SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: try to stop trace earlier (commented: no visible effect)
+
+2005-10-17 11:17 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container.cxx:
+
+ PR: trace must be deleted before orb shutdown.
+
+2005-10-17 10:13 prascle
+
+ * bin/appliskel/: .bashrc, .basrhc:
+
+ PR: wrong name
+
+2005-10-15 12:26 prascle
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ PR: manual merge from BR_3_0_0_OCC
+
+2005-10-15 12:25 prascle
+
+ * src/Basics/Test/BasicMainTest.hxx:
+
+ PR: test result summary in a file
+
+2005-10-15 12:24 prascle
+
+ * src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx:
+
+ PR: more specific messages on test fails
+
+2005-10-15 12:22 prascle
+
+ * README.FIRST.txt, doc/INSTALL.txt, doc/SALOME_Application.txt,
+ doc/UnitTests.txt:
+
+ PR: complements on doc files
+
+2005-10-15 12:21 prascle
+
+ * bin/appliskel/.basrhc:
+
+ PR: definitions from ~/.bashrc, specific prompt
+
+2005-10-12 10:18 apo
+
+ * src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Restore from mistaken integration
+
+2005-10-12 10:11 jfa
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ Small correction: delete [] string, allocated by CORBA
+
+2005-10-11 18:19 prascle
+
+ * README.FIRST.txt, doc/INSTALL.txt, doc/UnitTests.txt,
+ doc/SALOME_Application.txt:
+
+ PR: doc
+
+2005-10-11 11:26 prascle
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SenderFactory.hxx,
+ src/Container/SALOME_Container.cxx, src/HDFPersist/HDFascii.cc,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOME_DriverPy.py,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ PR: manual merge with V3_1_0a1
+
+2005-10-11 09:07 jfa
+
+ * src/SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ Fix error of LocalTraceCollector: crash on exit from application
+
+2005-10-11 09:00 prascle
+
+ * src/LifeCycleCORBA/Test/: LifeCycleCORBATest.cxx,
+ LifeCycleCORBATest.hxx:
+
+ PR: more test on LifeCycleCORBA
+
+2005-10-10 16:50 prascle
+
+ * bin/appliskel/runAppli, bin/appliskel/runRemote.sh,
+ bin/appliskel/runTests,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ PR: resources manager with and without SALOME Appli
+
+2005-10-10 11:24 prascle
+
+ * configure.in.base, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cppunit.m4, src/Makefile.in,
+ src/Basics/Test/Makefile.in, src/LifeCycleCORBA/Test/Makefile.in,
+ src/Logger/Test/Makefile.in,
+ src/SALOMELocalTrace/Test/Makefile.in,
+ src/SALOMETraceCollector/Test/Makefile.in,
+ src/UnitTests/Makefile.in, src/Utils/Test/Makefile.in:
+
+ PR: check cppunit library
+
+2005-10-10 11:15 apo
+
+ * INSTALL, bin/VERSION, bin/launchConfigureParser.py,
+ bin/runSalome.py, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml, src/Container/Makefile.in,
+ src/Container/SALOME_DriverPy.py, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ Merging with V3_1_0a
+
+2005-10-09 18:23 prascle
+
+ * bin/launchConfigureParser.py, bin/runSalome.py, src/Makefile.in,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.cxx,
+ src/LifeCycleCORBA/Test/LifeCycleCORBATest.hxx,
+ src/LifeCycleCORBA/Test/Makefile.in,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/Test/TestLifeCycleCORBA.py,
+ src/Logger/Test/TestKiller.py, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ src/SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ src/SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ src/SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ src/SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ src/UnitTests/Makefile.in, src/UnitTests/UnitTests.cxx,
+ src/UnitTests/UnitTests.py,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Test/TestUtils.cxx,
+ src/Utils/Test/UtilsTest.cxx:
+
+ PR : Unit Testing - LifeCycleCORBA - in progress
+
+2005-10-05 22:23 prascle
+
+ * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: design simplification
+
+2005-10-05 20:25 prascle
+
+ * src/: Basics/BasicsGenericDestructor.cxx,
+ Basics/BasicsGenericDestructor.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: trace debug at exit
+
+2005-10-05 12:08 prascle
+
+ * src/: Utils/Test/Makefile.in, Utils/Test/TestUtils.cxx,
+ Utils/Test/TestUtils.py, Logger/Test/Makefile.in,
+ Logger/Test/TestKiller.py:
+
+ PR: complement on unit tests
+
+2005-10-05 12:05 prascle
+
+ * src/: Makefile.in, Basics/Makefile.in,
+ Basics/Test/BasicMainTest.hxx, Basics/Test/Makefile.in,
+ SALOMELocalTrace/Test/Makefile.in,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.cxx,
+ SALOMELocalTrace/Test/TestSALOMELocalTrace.py,
+ SALOMETraceCollector/Test/Makefile.in,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.cxx,
+ SALOMETraceCollector/Test/TestSALOMETraceCollector.py,
+ UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
+ UnitTests/UnitTests.py:
+
+ PR: complement on unit tests
+
+2005-10-05 12:04 prascle
+
+ * bin/appliskel/: runAppli, runSession, runTests:
+
+ PR: script to set SALOME environment for unit tests
+
+2005-10-05 11:20 secher
+
+ * src/: MPIContainer/Makefile.in, TestMPIContainer/Makefile.in:
+
+ update for link with libSALOMEBasics
+
+2005-10-05 09:16 prascle
+
+ * README, README.FIRST.txt, doc/INSTALL.txt, doc/UnitTests.txt:
+
+ PR: some doc, in docutils format
+
+2005-10-04 16:15 jfa
+
+ * INSTALL, bin/VERSION, resources/CatalogResources.xml,
+ resources/KERNELCatalog.xml:
+
+ Update version to 3.1.0a
+
+2005-10-03 19:01 prascle
+
+ * README.FIRST.txt:
+
+ PR: example of document.txt in reST format, to produce html documentation with docutils - rest2html
+
+2005-10-03 15:14 prascle
+
+ * src/: Makefile.in, SALOMELocalTrace/Test/Makefile.in,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.cxx,
+ SALOMELocalTrace/Test/SALOMELocalTraceTest.hxx,
+ SALOMETraceCollector/Test/Makefile.in,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.cxx,
+ SALOMETraceCollector/Test/SALOMETraceCollectorTest.hxx,
+ UnitTests/Makefile.in, UnitTests/UnitTests.cxx,
+ Utils/Test/Makefile.in, Utils/Test/UtilsTest.cxx,
+ Utils/Test/UtilsTest.hxx:
+
+ PR: Testing: Add Unit Tests based on cppunit prerequisite
+
+2005-10-03 12:06 prascle
+
+ * src/Makefile.in:
+
+ PR: correct previous commit (intended to be on a branch dedicated to unitary tests)
+
+2005-10-03 12:03 prascle
+
+ * src/Container/SALOME_Container_i.hxx:
+
+ PR: methods required by parallel containers
+
+2005-10-03 12:02 prascle
+
+ * src/SALOMEDS/SALOMEDS_SObject.cxx:
+
+ PR: explicit dependancy to utilities.h
+
+2005-10-03 12:00 prascle
+
+ * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.cxx,
+ Utils_SINGLETON.hxx:
+
+ PR: remove explicit calls to Trace mecanism to avoid problems when trace classes are deleted early (temporary fix)
+
+2005-10-03 11:47 prascle
+
+ * src/: SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ PR: use of BasicsGenericDestructor
+
+2005-10-03 11:45 prascle
+
+ * src/Basics/: BasicsGenericDestructor.cxx,
+ BasicsGenericDestructor.hxx, Makefile.in:
+
+ PR: A pure C++ generic destructor with protected delete
+
+2005-09-30 16:47 prascle
+
+ * src/: A_LIRE_SALOME, Makefile.in, Container/Makefile.in,
+ LifeCycleCORBA/Makefile.in, ModuleCatalog/Makefile.in,
+ Registry/Makefile.in, SALOMEDS/Makefile.in,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/Makefile.in, TestContainer/Makefile.in:
+
+ PR: obsolete
+
+2005-09-30 11:01 jfa
+
+ * src/Container/: Makefile.in, SALOME_DriverPy.py:
+
+ PAL10120: provide default implementation of SALOMEDS::Driver for python modules
+
+2005-09-30 10:34 vsr
+
+ * src/SALOMEDS/SALOMEDS_AttributeReal.cxx:
+
+ Fix a bug of AttributeReal: value is converted to bool
+
+2005-09-30 10:06 jfa
+
+ * src/Container/: Makefile.in, SALOME_DriverPy.py:
+
+ PAL10120: provide default implementation of SALOMEDS::Driver for python modules
+
+2005-09-30 09:53 vsr
+
+ * bin/runSalome.py:
+
+ Set default values for SUITRoot and SalomeAppConfig variables
+
+2005-09-29 14:38 prascle
+
+ * src/: SALOMELocalTrace/BaseTraceCollector.cxx,
+ SALOMELocalTrace/BaseTraceCollector.hxx,
+ SALOMELocalTrace/FileTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx:
+
+ PR: debug delete trace classes
+
+2005-09-29 13:36 jfa
+
+ * src/: SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ PAL10114: GetStudyByName() finds a study although it doesn't exist
+
+2005-09-29 13:35 jfa
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ Add missing _retn()
+
+2005-09-27 09:47 prascle
+
+ * bin/runSalome.py, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/SALOMELocalTrace/BaseTraceCollector.cxx,
+ src/SALOMELocalTrace/BaseTraceCollector.hxx,
+ src/SALOMELocalTrace/FileTraceCollector.cxx,
+ src/SALOMELocalTrace/FileTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ PR: automatic start of trace collector, different classes of trace. (todo: automatic destruction of trace buffer pool and collector)
+
+2005-09-26 09:20 prascle
+
+ * src/: ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ TestContainer/TestContainer.cxx:
+
+ PR: Automatic trace collector start
+
+2005-09-26 09:16 prascle
+
+ * src/: Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx:
+
+ PR: Automatic trace collector start
+
+2005-09-26 09:13 prascle
+
+ * src/: SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx:
+
+ PR: Automatic trace collector start
+
+2005-09-23 14:38 mpv
+
+ * src/ModuleCatalog/Makefile.in:
+
+ MPV: correction of appeared "undefined symbols" in libSalomeCatalog.so
+
+2005-09-22 18:49 prascle
+
+ * src/: Container/SALOME_ContainerManager.cxx,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: LifeCycle and Application
+
+2005-09-22 15:06 mkr
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Fix for bug IPAL10056 : Crash after run Dataflow and creating new file.
+
+2005-09-22 08:31 vsr
+
+ * salome_adm/unix/: config_files/check_pyqt.m4,
+ config_files/check_sip.m4, make_commence.in:
+
+ Fix bug PAL10043
+
+2005-09-21 17:30 vsr
+
+ * bin/launchConfigureParser.py:
+
+ Avoid unexpected exception in launchConfigureParser (if some wrong key is given for command line)
+
+2005-09-21 14:53 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ fix bug 10044 (There is misprint in comment to generated files of DumpPython)
+
+2005-09-21 14:27 jfa
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ Do not mark document as Modified on IOR attribute setting
+
+2005-09-20 21:19 prascle
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ PR: Trace collector instance when used in an external Python module
+
+2005-09-20 17:02 vsr
+
+ * bin/launchConfigureParser.py:
+
+ avoid exception when configuration files do not exist
+
+2005-09-20 16:44 jfa
+
+ * src/: SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fix some problems with Study Properties
+
+2005-09-20 16:36 prascle
+
+ * bin/appliskel/runAppli, bin/appliskel/runSession,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.py,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/ModuleCatalog/Makefile.in, src/NamingService/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/Registry/Makefile.in, src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/TestContainer/Makefile.in:
+
+ PR: LifeCycleCORBA and Container Manager Corrections
+
+2005-09-20 16:30 prascle
+
+ * bin/appliskel/: CatalogResources.xml, README, SalomeApp.xml,
+ envd, runAppli, runConsole, runParam, runRemote.sh, runSession:
+
+ PR: missing merge
+
+2005-09-16 10:55 jfa
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Prevent connecting of not unloaded study: now SALOMEDS::Study::_name keeps full path of the study file
+
+2005-09-16 09:33 apo
+
+ * salome_adm/unix/: config_files/check_boost.m4, make_commence.in:
+
+ Complete usage of boost-1.33.0 library
+
+2005-09-13 12:41 mzn
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Version.
+
+2005-09-12 13:52 srn
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Modified method PasteLabel, added {}
+
+2005-09-12 10:51 srn
+
+ * src/HDFPersist/HDFascii.cc:
+
+ BugID: PAL9884, Modified a method CreateDatasetFromASCII.
+
+2005-09-09 07:07 env
+
+ * src/: Container/SALOME_Container.cxx,
+ Communication/MultiCommException.hxx,
+ Communication/SALOMEMultiComm.hxx,
+ Communication/SenderFactory.hxx:
+
+ ENV: Windows porting.
+
+2005-09-08 11:37 srn
+
+ * src/HDFPersist/HDFdatasetWrite.c:
+
+ Modified the way a size of INT32 dataset is calculated
+
+2005-09-06 13:25 mzn
+
+ * src/SALOMEDS/SALOMEDS_SObject.cxx:
+
+ Fix for problem: crash of application during getting object with empty ior.
+
+2005-09-06 07:22 srn
+
+ * src/SALOMETraceCollector/SALOMETraceCollector.cxx:
+
+ Added a new condition to get out of while cycle in a mthod run
+
+2005-09-05 12:31 vsr
+
+ * salome_adm/unix/: make_conclude.in, make_module.in:
+
+ Fix a problem of 'make install' step for resource files.
+
+2005-09-01 14:40 apo
+
+ * salome_adm/unix/: make_conclude.in, make_module.in:
+
+ Fix a bug of previous integration
+
+2005-09-01 08:50 smh
+
+ * bin/VERSION:
+
+ Version 3.0.2
+
+2005-08-31 15:40 prascle
+
+ * bin/runSalome.py:
+
+ PR: Launch SALOME_Session_Server after all other servers and environment
+ bug PAL9842
+
+2005-08-31 12:49 srn
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Removed unnecessary mutex locks.
+
+2005-08-30 11:49 srn
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Removed a mutex lock in the method PasteInto
+
+2005-08-30 09:12 srn
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Added a mutex unlock before call to FindOrLoadComponent
+
+2005-08-30 08:19 asv
+
+ * salome_adm/unix/: make_conclude.in, make_module.in:
+
+ improvement to building of resources:
+ 1) if "RESOURCES_FILES" variable is NOT defined in Makefile.in, then ALL files from srcdir/resources are copied to builddir/share/salome/resources
+ 2) including directories ("cp -fr" is used)
+ 3) except "CVS" directory
+
+2005-08-29 09:35 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Added an update of the ObjectBrowser
+
+2005-08-29 07:54 env
+
+ * src/Container/Container_i.cxx:
+
+ ENV: Windows porting
+
+2005-08-25 06:37 mkr
+
+ * src/Container/: Component_i.cxx, SALOME_ComponentPy.py:
+
+ Fix for bug PAL9773 : SALOME_ComponentPy.py not synchronized with latest LifeCycleCORBA changes.
+
+2005-08-24 15:40 sln
+
+ * src/SALOMEDS/SALOMEDS_Study.cxx:
+
+ Verification if ( !aSeq.IsNull() ) added before aLength = aSeq->Length(); string in FindDependances method to avoid exception
+
+2005-08-24 14:46 srn
+
+ * src/KERNEL_PY/kernel_shared_modules.py:
+
+ added import of CORBA module
+
+2005-08-24 12:22 vsr
+
+ * src/KERNEL_PY/kernel_shared_modules.py:
+
+ LifeCycleCORBA swig-wrapping library should be loaded only once in the Python interpreter
+
+2005-08-24 06:32 mkr
+
+ * src/Container/: SALOME_ComponentPy.py, SALOME_ContainerPy.py:
+
+ Fix for bug PAL9772 : SALOME_ContainerPy.py not synchronized with latest LifeCycleCORBA changes.
+
+2005-08-23 12:54 mkr
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ Fix for bug IPAL9730 (CRASH after trying to run "GraphConvertIORCheck.xml"
+ dataflow) and partially for bug PAL9772 (SALOME_ContainerPy.py not
+ synchronized with latest LifeCycleCORBA changes).
+
+2005-08-22 13:47 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_AttributeIOR.cxx, SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_GenericAttribute.cxx, SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ Added a method Modify to Study and a method SetModifyFlag to GenericAttribute. Now all attributes calls the method SetModifyFlag when they change their state
+
+2005-08-22 08:52 vsr
+
+ * salome_adm/unix/: config_files/check_pyqt.m4, make_commence.in:
+
+ Fix a bug of SALOME_PYQT package - to work properly with Sip and PyQt libraries additional SIP flags should be defined depending on existing Qt packages.
+
+2005-08-18 14:21 jfa
+
+ * bin/runSalome.py:
+
+ Implicitly set paths for GUI module like for KERNEL
+
+2005-08-18 12:59 srn
+
+ * src/HDFPersist/HDFdatasetWrite.c:
+
+ BugID: IPAL9619, modified a way to get the size of a dataset in case if the dataset has a type HDF_INT32
+
+2005-08-18 11:00 mpv
+
+ * src/Container/Container_i.cxx:
+
+ Windows porting
+
+2005-08-17 09:05 vsr
+
+ * salome_adm/unix/config_files/: ac_cxx_bool.m4,
+ ac_cxx_depend_flag.m4, ac_cxx_mutable.m4, ac_cxx_namespaces.m4,
+ ac_cxx_partial_specialization.m4, ac_cxx_typename.m4,
+ check_pthreads.m4, libtool.m4, production.m4, pyembed.m4,
+ python.m4:
+
+ Fix check files errors: autoconf 2.59 (Debian 3.1) applies more strict rules for macros definition
+
+2005-08-16 11:51 srn
+
+ * src/SALOMEDS/SALOMEDS_StudyManager.cxx:
+
+ BugID: IPAL9763, modified methods NewStudy and Open to create directly CORBA Studies.
+
+2005-08-10 12:21 env
+
+ * src/Utils/Utils_ExceptHandlers.hxx:
+
+ ENV: Windows porting.
+
+2005-08-04 11:41 env
+
+ * src/: HDFPersist/HDFdataset.cc, HDFPersist/HDFfile.cc,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ ENV: Windows porting
+
+2005-08-03 09:34 env
+
+ * src/: Container/Container_init_python.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_Driver_i.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_Study_i.hxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ NamingService/NamingService_WaitForServerReadiness.hxx:
+
+ ENV: Windows porting
+
+2005-08-01 09:56 adam
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ if $QWTHOME"/include/qwt does not exists, define
+ QWT_INCLUDES as $QWTHOME"/include".
+
+2005-07-29 06:49 env
+
+ * src/: Container/Container_init_python.hxx,
+ Container/SALOME_Container.cxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx, SALOMEDSImpl/testDS.cxx,
+ SALOMEDS/SALOMEDS_Server.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx:
+
+ ENV: Windows porting
+
+2005-07-29 06:45 env
+
+ * src/: SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ NamingService/ServiceUnreachable.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
+
+ ENV: Windows porting
+
+2005-07-29 06:35 env
+
+ * src/: Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx:
+
+ ENV: Windows porting
+
+2005-07-28 17:26 san
+
+ * bin/VERSION:
+
+ Preparation of v.3.0.1
+
+2005-07-28 17:09 san
+
+ * src/: SALOMEDS/Makefile.in, SALOMEDSImpl/Makefile.in:
+
+ SALOME porting to OCCT 5.2.4
+
+2005-07-28 14:23 mzn
+
+ * src/KERNEL_PY/batchmode_salome.py:
+
+ Fix for ( Bug IPAL9592 3.0.0 REGRESSION: error is raised after import "batchmode_salome.py" ).
+
+2005-07-27 10:36 env
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx:
+
+ ENV: Fix of regression of IPAL9392 and IPAL9485 after windows porting.
+
+2005-07-26 13:51 san
+
+ * Makefile.in:
+
+ install-appliskel step coorrected so as not to break installation when appliskel sub-directory is not found in bin/salome subdirectory (sometimes it happens, since appliskel directory contains no files currently, and cvs checkout -P ignores this directory).
+
+2005-07-26 11:51 env
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
+
+ ENV: Windows porting.
+
+2005-07-26 11:32 env
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ ENV: Fix of regression after Windows porting.
+
+2005-07-26 10:59 env
+
+ * src/SALOMEDS/: SALOMEDS_SObject.cxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.hxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx,
+ SALOMEDS_Study_i.cxx:
+
+ ENV: Windows porting.
+
+2005-07-26 10:56 env
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SAttribute_i.hxx, SALOMEDS_SComponent.cxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx:
+
+ ENV: Windows porting.
+
+2005-07-26 10:52 env
+
+ * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeGraphic_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTarget_i.cxx:
+
+ ENV: Windows porting.
+
+2005-07-26 08:15 env
+
+ * src/: SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ GenericObj/SALOME_GenericObj_i.hh,
+ Communication/SALOMEMultiComm.cxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx:
+
+ ENV: Windows porting.
+
+2005-07-25 13:43 srn
+
+ * src/Container/SALOME_Container.cxx:
+
+ BugID IPAL9541, changed the ORB creation. Added a call to Utils_ORB_INIT as there a GIOP message size is initialized.
+
+2005-07-22 14:05 mkr
+
+ * src/Communication/libSALOME_Comm.i:
+
+ From V2_2_4 with an extention of this file done by Anthony Geay.
+
+2005-07-22 14:00 mkr
+
+ * idl/SALOME_Comm.idl:
+
+ Modifications from Anthony Geay from V2_2_0_maintainance branch.
+
+2005-07-22 13:33 mkr
+
+ * src/: Makefile.in, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/SALOME_Component_i.hxx,
+ Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ Container/SALOME_Container_i.hxx, LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.in,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ TestMPIContainer/Makefile.in,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ Merge with BR_V300_lcrm branch.
+
+2005-07-22 13:26 mkr
+
+ * idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
+ resources/CatalogResources.xml, resources/CatalogRessources.xml:
+
+ Merge with BR_V300_lcrm branch.
+
+2005-07-22 13:18 mkr
+
+ * bin/createAppli.sh, doc/salome/Parallelisme_dans_Salome.pdf,
+ doc/salome/Parallelisme_dans_Salome.ps,
+ doc/salome/ResourcesManagerManual.pdf:
+
+ Merge with BR_V300_lcrm branch.
+
+2005-07-22 13:14 mkr
+
+ * INSTALL, Makefile.in, configure.in.base, bin/runSalome,
+ bin/runSalome.py:
+
+ Merge with BR_V300_lcrm branch.
+
+2005-07-22 10:20 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx:
+
+ BugID: IPAL9392, modified methods GetRowUnits.
+
+2005-07-20 13:42 secher
+
+ * idl/SALOME_MPIContainer.idl,
+ src/Container/SALOME_Container_i.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ last version after merge
+
+2005-07-20 13:39 env
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_AttributeUserID.cxx, SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_OCAFApplication.cxx, SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl_SObject.cxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyBuilder.hxx, SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseIterator.cxx:
+
+ ENV: Windows porting.
+
+2005-07-20 13:36 env
+
+ * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFobject.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ TOOLSDS/SALOMEDS_Tool.cxx:
+
+ ENV: Windows porting.
+
+2005-07-20 08:27 san
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Fix for bug PAL9523 : Crash at attempt to run XMLs from PAL8912.
+
+2005-07-19 15:01 secher
+
+ * resources/CatalogResources.xml,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ version qui roule en sequentielle
+
+2005-07-19 11:01 secher
+
+ * INSTALL, Makefile.in, doc/salome/Parallelisme_dans_Salome.pdf,
+ doc/salome/Parallelisme_dans_Salome.ps,
+ doc/salome/ResourcesManagerManual.pdf,
+ idl/SALOME_ContainerManager.idl, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_Session.idl, resources/CatalogResources.xml,
+ resources/CatalogRessources.xml, resources/Plugin,
+ salome_adm/unix/config_files/check_med2.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIContainer.cxx:
+
+ premier merge avec branche BR_V222_resman
+
+2005-07-13 13:45 mkr
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Fix for IPAL9408 : 3.0.0(current3106): CRASH after trying to "Close" saved document with executed dataflow.
+
+2005-07-13 12:11 env
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ ENV: Windows porting. Removed reference to SALOME_container_i, which causes cyclic dependency on WNT platform.
+
+2005-07-13 10:03 prascle
+
+ * Makefile.in, configure.in.base, bin/createAppli.sh,
+ bin/runSalome, bin/runSalome.py,
+ bin/appliskel/CatalogResources.xml, bin/appliskel/README,
+ bin/appliskel/SalomeApp.xml, bin/appliskel/envd,
+ bin/appliskel/runAppli, bin/appliskel/runConsole,
+ bin/appliskel/runParam, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, src/Makefile.in,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/NamingService/SALOME_NamingService.cxx:
+
+ PR: modifications related to LifeCycle CORBA and SALOME Application concept
+
+2005-07-13 09:09 env
+
+ * src/: SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/utilities.h,
+ SALOMETraceCollector/SALOMETraceCollector.cxx,
+ SALOMETraceCollector/SALOMETraceCollector.hxx,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ Utils/OpUtil.hxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils/Utils_Identity.cxx,
+ Utils/Utils_Identity.hxx, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SignalsHandler.h,
+ Utils/duplicate.cxx:
+
+ ENV: Windows porting.
+
+2005-07-13 09:05 env
+
+ * src/: NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx:
+
+ ENV: Windows porting.
+
+2005-07-13 09:02 env
+
+ * src/: GenericObj/SALOME_GenericObj_i.cc,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.hxx:
+
+ ENV: Windows porting.
+
+2005-07-13 08:54 env
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ SALOME_Component_i.hxx, SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx, SALOME_Container_i.hxx:
+
+ ENV: Windows porting.
+
+2005-07-12 07:18 vsr
+
+ * salome_adm/unix/make_commence.in:
+
+ Remove check_med() configuration procedure (moved to MED component)
+
+2005-07-11 13:24 eap
+
+ * src/Makefile.in:
+
+ Move MEDWrapper to MED module
+
+2005-07-11 12:16 eap
+
+ * salome_adm/unix/config_files/check_med2.m4:
+
+ Move MEDWrapper to MED module
+
+2005-07-11 12:02 eap
+
+ * configure.in.base, salome_adm/unix/make_commence.in:
+
+ Move MEDWrapper to MED module
+
+2005-07-08 11:10 prascle
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
+
+ PR: overloaded method possible with SWIG: unification of FindOrLoad_Component
+
+2005-07-08 09:13 prascle
+
+ * INSTALL, Makefile.in, bin/VERSION, bin/killSalome.py,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runNS.sh, bin/runSalome, bin/runSalome.py,
+ idl/SALOME_Comm.idl, resources/KERNELCatalog.xml,
+ resources/Plugin, resources/Plugin.in, salome_adm/Makefile.in,
+ salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4, src/Makefile.in,
+ src/Communication/Makefile.in, src/Communication/Receiver.cxx,
+ src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Communication/libSALOME_Comm.i,
+ src/Container/Container_i.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA_SWIG/Makefile.in,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i,
+ src/ModuleGenerator/IDLparser.py,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMELocalTrace/utilities.h,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_SINGLETON.hxx:
+
+ PR: merge V2_2_4
+
+2005-07-05 13:50 vsr
+
+ * INSTALL:
+
+ Update version number: 3.0.0
+
+2005-06-30 09:11 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_StudyBuilder.cxx:
+
+ BugID: 9377, fixed method IsModified, Saved in the Study and added _doc.Modify() to methods of StduyBuilder which modify the study
+
+2005-06-29 15:57 asv
+
+ * src/ModuleGenerator/: IDLparser.py:
+
+ Fix for bug 8337 - "return" out-parameter must be the first one in outParameter-list.
+
+2005-06-28 12:59 mpv
+
+ * src/KERNEL_PY/batchmode_salome.py:
+
+ MPV: for automatic test scenarios:
+ import SALOME must be before import SALOMEDS
+ (problems with SALOME.Session field otherwise)
+
+2005-06-28 12:57 mpv
+
+ * bin/runSalome:
+
+ MPV: for automatic test scenarios:
+ just return free port in case "-nothing" option
+
+2005-06-28 12:55 mpv
+
+ * bin/killSalomeWithPort.py:
+
+ MPV: solution for the problem of kill Salome appllication: it hangs up when tried to kill omniORB process of another user (is started with the same port)
+
+2005-06-27 15:15 eap
+
+ * salome_adm/unix/depend.in:
+
+ Fix compilation of GHS3DPLUGIN on Mandrake: pb in using path with .. as regexp
+
+2005-06-24 14:39 mpv
+
+ * src/Container/SALOME_Container.cxx:
+
+ MPV: fix for bug IPAL9221
+ add script for addind processes to the kill list (addToKillList.py)
+ this script is called by SALOME_Container to register new run-time launched process
+
+2005-06-24 14:37 mpv
+
+ * bin/addToKillList.py, Makefile.in:
+
+ MPV: fix for bug IPAL9221
+ add script for addind processes to the kill list
+ this script is called by SALOME_Container to register new run-time launched process
+
+2005-06-24 11:55 mpv
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ MPV: fix for bug IPAL9237
+ Make non-zero undo-limit to perform OCAF operation correctly (operations never opened if undolimit=0 => problems with Locked flag)
+
+2005-06-24 11:40 mpv
+
+ * Makefile.in:
+
+ MPV: fix for bug IPAL9312
+ In the resources directory both files (CatalogResources.xml and CatalogRessources.xml) are needed.
+ ResourceManager searches for CatalogResources.xml by default.
+
+2005-06-23 15:14 eap
+
+ * bin/launchConfigureParser.py:
+
+ bug 9264. enable reading specific module parameters, eg mesh plugins
+
+2005-06-23 13:48 asv
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ Displaying splash on application startup is added to GUI/Session package. In start *.py scripts the following chages were made:
+ 1) added "SPLASH" parameter to SalomeApp.xml resource file and its handling in launchConfigureParser
+ 2) moved section of conversion of "GUI", "CPP", "PY", "SUPERV" parameters (and new "SPLASH") from unused SessionLoader to SessionServer, these parameter are now passed to SessionServer on launch and they are handled there.
+ 3) start of SessionServer is moved to the very beginning of startSalome (to display splash).
+
+2005-06-23 13:05 jfa
+
+ * src/: Container/Container_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.cxx:
+
+ Suppress compilation warnings
+
+2005-06-22 17:23 vsr
+
+ * src/KERNEL_PY/: kernel_shared_modules.py, salome_iapp.py:
+
+ Fix a bug with SWIG 1.3.24 - the swigged library should be loaded only once to the Python interpreter
+
+2005-06-22 11:31 mkr
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Don't write one log-file for all users in /tmp directory (fix for bug IPAL9117).
+
+2005-06-20 13:05 srn
+
+ * src/Container/Container_i.cxx:
+
+ BugID IPAL9188: Moved an expression out of ASSERT macro in method createInstance
+
+2005-06-20 06:44 vsr
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ Add support for sip 4.2
+
+2005-06-16 06:39 vsr
+
+ * salome_adm/unix/config_files/: check_vtk.m4, check_boost.m4,
+ check_med2.m4, check_qwt.m4:
+
+ Applying patch from Erwan Adam (customization of check files)
+
+2005-06-14 08:59 smh
+
+ * bin/runSalome.py, salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ src/ModuleCatalog/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/SALOMEDSImpl/Makefile.in, src/TestContainer/Makefile.in:
+
+ SMH: Fixes and patches from Paul.
+
+2005-06-14 08:27 mpv
+
+ * salome_adm/unix/config_files/: check_hdf5.m4, check_lam.m4,
+ check_lsf.m4, check_med2.m4, check_mico.m4, check_mpi.m4,
+ check_mpich.m4, check_omniorb.m4, check_opengl.m4,
+ check_openpbs.m4, check_pyqt.m4, check_qt.m4, check_qwt.m4,
+ check_sip.m4, check_vtk.m4:
+
+ Patches from Paul for Debian
+
+2005-06-10 08:48 smh
+
+ * src/TestContainer/Makefile.in:
+
+ Fix binflags
+
+2005-06-10 08:26 smh
+
+ * salome_adm/unix/make_conclude.in:
+
+ Fix misprint
+
+2005-06-10 07:50 smh
+
+ * salome_adm/unix/make_conclude.in:
+
+ SMH: Fix for flags
+
+2005-06-10 07:49 prascle
+
+ * bin/appliskel/: runAppli, runConsole, runRemote.sh, runSession:
+
+ PR: on Debian Sarge, 'which' gives not allways the absolute path
+
+2005-06-09 16:01 ageay
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ When ssh is used used of scp.
+
+2005-06-08 16:13 prascle
+
+ * bin/appliskel/: README, runAppli, runConsole, runRemote.sh,
+ runSession:
+
+ PR: environment must be sourced...
+
+2005-06-08 15:56 mkr
+
+ * bin/createAppli.sh:
+
+ file createAppli.sh was added on branch BR_3_0_0_OCC on 2005-07-22 11:18:10 +0000
+
+2005-06-08 15:56 prascle
+
+ * Makefile.in, configure.in.base, bin/createAppli.sh,
+ bin/runSalome, bin/appliskel/CatalogResources.xml,
+ bin/appliskel/README, bin/appliskel/envd, bin/appliskel/runAppli,
+ bin/appliskel/runConsole, bin/appliskel/runRemote.sh,
+ bin/appliskel/runSession, bin/appliskel/salome.launch,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: distributed SALOME Application concept
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/CatalogResources.xml:
+
+ file CatalogResources.xml was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/README:
+
+ file README was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/createAppli.sh:
+
+ file createAppli.sh was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/envd:
+
+ file envd was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/runAppli:
+
+ file runAppli was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/runConsole:
+
+ file runConsole was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/runRemote.sh:
+
+ file runRemote.sh was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 15:56 prascle
+
+ * bin/appliskel/runSession:
+
+ file runSession was added on branch BR_V300_lcrm on 2005-07-13 08:03:31 +0000
+
+2005-06-08 12:12 mpv
+
+ * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_SINGLETON.hxx:
+
+ Migration to Mandrake 10.1 (external patch)
+
+2005-06-08 10:53 ageay
+
+ * src/Makefile.in:
+
+ Needed for dependancies.
+
+2005-06-08 10:39 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Change version number to 2.2.4
+
+2005-06-08 10:33 mkr
+
+ * src/Communication/libSALOME_Comm.i:
+
+ file libSALOME_Comm.i was added on branch BR_3_0_0_OCC on 2005-07-22 12:05:49 +0000
+
+2005-06-08 10:33 prascle
+
+ * src/Communication/libSALOME_Comm.i:
+
+ file libSALOME_Comm.i was added on branch BR_V220_LifeCycle on 2005-07-08 07:13:36 +0000
+
+2005-06-08 10:33 ageay
+
+ * src/Communication/: Makefile.in, libSALOME_Comm.i:
+
+ Swigging of senderDouble.
+
+2005-06-08 09:10 ageay
+
+ * idl/SALOME_Comm.idl:
+
+ Protect from double inclusion.
+
+2005-06-08 08:49 mpv
+
+ * bin/: killSalome.py, killSalomeWithPort.py, runSalome.py:
+
+ Fixing of PAL9090 bug: save Serser's pids not to the "/tmp" directory, but to the ${HOME} directory.
+
+2005-06-08 07:36 asv
+
+ * bin/launchConfigureParser.py:
+
+ user's resource file name is changed from $HOME/.SalomeApprc to $HOME/.SalomeApprc.<version>
+
+ Version is taken from $GUI_ROOT_DIR/bin/salome/VERSION file or $KERNEL_ROOT_DIR/bin/salome/VERSION file (in batch mode, no GUI).
+
+2005-06-08 06:35 mpv
+
+ * src/SALOMELocalTrace/utilities.h:
+
+ Porting to Mandrake 10.1 and new products:
+ porting to the gcc 3.4.1 ('endl' is in 'std' namespace)
+
+2005-06-08 06:25 mpv
+
+ * salome_adm/unix/depend.in:
+
+ Porting to Mandrake 10.1 and new products:
+ right 'sed' instructions to generate .depend file: '.' is "any symbol" of regexp => this symbol have to be screened, it means substituted by '.'
+
+2005-06-08 06:24 mpv
+
+ * salome_adm/unix/: make_commence.in, make_conclude.in,
+ config_files/check_cas.m4, config_files/check_pyqt.m4,
+ config_files/check_qt.m4, config_files/check_qwt.m4,
+ config_files/check_sip.m4:
+
+ Porting to Mandrake 10.1 and new products:
+ new products checking rules
+
+2005-06-08 06:23 mpv
+
+ * salome_adm/Makefile.in:
+
+ Porting to Mandrake 10.1 and new products:
+ right Makefile: new rule clean
+
+2005-06-08 06:21 mpv
+
+ * Makefile.in, resources/Plugin, resources/Plugin.in:
+
+ Porting to Mandrake 10.1 and new products:
+ OCC 5.2.3 compatibility: different Plugin formats for OCAF in different versions
+
+2005-06-08 06:19 mpv
+
+ * bin/: launchConfigureParser.py, runNS.sh, runSalome:
+
+ Porting to Mandrake 10.1 and new products:
+ omniORB3 and omniORB4 configure scripts support
+
+2005-06-07 16:07 adam
+
+ * salome_adm/unix/depend.in:
+
+ replace " ./" by " " at line begininig for
+ the dependance computation 'cause when a line
+ begin with
+ " ./toto.hxx" (it's now the case with gcc3.4)
+ and $(top_builddir) is "..", the command
+
+ sed 's% $(top_builddir)/% $$(top_builddir)/%g'
+ becomes
+ sed 's% ../% $$(top_builddir)/%g'
+
+ and the " ./" before toto.hxx is replaced by " ../"
+ by mystery of sed.
+
+2005-06-07 10:55 secher
+
+ * doc/salome/ResourcesManagerManual.pdf:
+
+ update
+
+2005-06-07 10:26 adam
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ portability vtk 4.4
+
+2005-06-07 09:18 adam
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ search in LD_LIBRARY_PATH before system
+
+2005-06-06 14:13 asv
+
+ * src/ModuleGenerator/: IDLparser.py:
+
+ Fix for bug PAL 8922: component name, given by user in "Catalog Generator" dialog box was NOT properly handled (was not used) in IDLparser.py script.
+ Another fix: if user name is not set in "Catalog Generator", but component name is set - then component name is used instead of component user name.
+
+2005-06-06 09:50 mkr
+
+ * doc/salome/ResourcesManagerManual.pdf:
+
+ file ResourcesManagerManual.pdf was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
+
+2005-06-06 09:50 secher
+
+ * doc/salome/ResourcesManagerManual.pdf:
+
+ doc
+
+2005-06-06 09:50 secher
+
+ * doc/salome/ResourcesManagerManual.pdf:
+
+ file ResourcesManagerManual.pdf was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
+
+2005-06-03 13:26 smh
+
+ * src/TOOLSDS/SALOMEDS_Tool.hxx:
+
+ SMH: Remove dependency on implementation
+
+2005-06-03 10:31 adam
+
+ * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_SINGLETON.hxx:
+
+ gcc 3.4 portability
+
+2005-06-03 09:16 adam
+
+ * salome_adm/unix/config_files/check_qwt.m4:
+
+ improve the way to detect QWTHOME and QWT_INCLUDES
+ add mandrake 10.2 support (qwt.h in /usr/lib/qt3/include/qwt)
+
+2005-06-03 09:15 adam
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ replace moc by MOC
+ adding V3.3.4 support
+
+2005-06-03 08:40 adam
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ sip 4.2 version availibility
+
+2005-06-03 08:30 adam
+
+ * salome_adm/unix/config_files/check_med2.m4:
+
+ If MED2HOME is not defined, search in mdump in PATH
+
+2005-06-03 08:08 smh
+
+ * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
+
+ SMH: Remove implementation dependency
+
+2005-06-02 15:44 adam
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ If VTKHOME is not defined, search in /usr
+
+2005-06-02 15:15 adam
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ If CASROOT is not defined, search in LD_LIBRARY_PATH
+
+2005-06-02 15:12 adam
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ If BOOSTDIR is not defined, search in system
+
+2005-06-02 14:44 smh
+
+ * idl/SALOME_Comm.idl, src/Communication/Makefile.in,
+ src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx:
+
+ SMH: Merge with V2_2_3 version (to be compatible with MED from maintainance branch) - prepare 3.0.0
+
+2005-06-02 14:23 adam
+
+ * salome_adm/unix/config_files/: check_hdf5.m4:
+
+ If HDF5HOME is not defined, search h5dump in PATH
+
+2005-06-02 13:55 secher
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx:
+
+ Container Manager knows only ResourcesManager and not LoadRate
+
+2005-06-02 11:35 srn
+
+ * src/KERNEL_PY/kernel_shared_modules.py:
+
+ Added import of CosNaming
+
+2005-06-02 09:33 secher
+
+ * resources/: CatalogResources.xml:
+
+ [no log message]
+
+2005-06-02 09:14 prascle
+
+ * src/Container/Container_i.cxx:
+
+ PAL9042, Correction from Jean Rahuel
+
+2005-06-01 10:46 mkr
+
+ * doc/salome/Parallelisme_dans_Salome.pdf:
+
+ file Parallelisme_dans_Salome.pdf was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
+
+2005-06-01 10:46 mkr
+
+ * doc/salome/Parallelisme_dans_Salome.ps:
+
+ file Parallelisme_dans_Salome.ps was added on branch BR_3_0_0_OCC on 2005-07-22 11:20:44 +0000
+
+2005-06-01 10:46 secher
+
+ * doc/salome/Parallelisme_dans_Salome.pdf:
+
+ file Parallelisme_dans_Salome.pdf was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
+
+2005-06-01 10:46 secher
+
+ * doc/salome/Parallelisme_dans_Salome.ps:
+
+ file Parallelisme_dans_Salome.ps was added on branch BR_V300_lcrm on 2005-07-19 09:01:56 +0000
+
+2005-06-01 10:46 secher
+
+ * doc/salome/: Parallelisme_dans_Salome.pdf,
+ Parallelisme_dans_Salome.ps:
+
+ rajout de la doc sur les container MPI
+
+2005-05-31 11:44 srn
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ BugID: PAL8727, fixed method _SaveAs. Added a pair unlock/lock around a method Translate_IOR_to_persistentID
+
+2005-05-30 14:12 mkr
+
+ * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
+
+ file LifeCycleCORBA.py was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:46 +0000
+
+2005-05-30 14:12 mkr
+
+ * src/LifeCycleCORBA_SWIG/Makefile.in:
+
+ file Makefile.in was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
+
+2005-05-30 14:12 mkr
+
+ * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
+
+ file TestLifeCycleCORBA.py was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
+
+2005-05-30 14:12 mkr
+
+ * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ file libSALOME_LifeCycleCORBA.i was added on branch BR_3_0_0_OCC on 2005-07-22 11:33:47 +0000
+
+2005-05-30 14:12 prascle
+
+ * src/: LifeCycleCORBA_SWIG/LifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/Makefile.in,
+ LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py,
+ LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i, Makefile.in,
+ LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
+
+ PR: Swig LifeCycleCORBA
+
+2005-05-30 14:12 prascle
+
+ * src/LifeCycleCORBA_SWIG/LifeCycleCORBA.py:
+
+ file LifeCycleCORBA.py was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
+
+2005-05-30 14:12 prascle
+
+ * src/LifeCycleCORBA_SWIG/Makefile.in:
+
+ file Makefile.in was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
+
+2005-05-30 14:12 prascle
+
+ * src/LifeCycleCORBA_SWIG/TestLifeCycleCORBA.py:
+
+ file TestLifeCycleCORBA.py was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
+
+2005-05-30 14:12 prascle
+
+ * src/LifeCycleCORBA_SWIG/libSALOME_LifeCycleCORBA.i:
+
+ file libSALOME_LifeCycleCORBA.i was added on branch BR_V300_lcrm on 2005-07-13 08:03:32 +0000
+
+2005-05-30 11:51 vsr
+
+ * resources/Plugin:
+
+ remove deprecated file
+
+2005-05-30 11:50 vsr
+
+ * salome_adm/unix/make_commence.in:
+
+ - fix a bugs of 'check msg2qm' procedure
+
+2005-05-30 11:49 vsr
+
+ * salome_adm/unix/make_conclude.in:
+
+ - fix a bugs of 'check msg2qm' procedure
+ - fix a bug of processing SIP-wrapping libraries (for SIP-4.1)
+
+2005-05-30 11:48 vsr
+
+ * salome_adm/unix/config_files/check_msg2qm.m4:
+
+ Fix a bugs of 'check msg2qm' procedure
+
+2005-05-30 11:47 vsr
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ Fix a bug of 'check CASCADE' procedure: do not generate config.h file if it already exists
+
+2005-05-30 11:46 vsr
+
+ * Makefile.in:
+
+ Fix a bug of make procedure: copy Plugin file (generated from resources/Plugin.in) to share/salome/resources
+
+2005-05-30 07:32 vsr
+
+ * salome_adm/Makefile.in:
+
+ Fix a bug of 'make clean' procedure
+
+2005-05-27 15:06 asv
+
+ * idl/SALOME_Session.idl:
+
+ This file was removed from Makefile.in, so remove it from repository.
+
+2005-05-27 14:38 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container.cxx:
+
+ PR: cleaning
+
+2005-05-27 13:13 secher
+
+ * resources/CatalogResources.xml, src/Container/Component_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ improvement for NP component
+
+2005-05-27 12:37 prascle
+
+ * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
+ SALOME_LifeCycleCORBA.hxx:
+
+ PR: documentation, find method, load method...
+
+2005-05-27 07:29 smh
+
+ * src/Registry/Makefile.in:
+
+ SMH: Correction - new libarary
+
+2005-05-26 15:54 smh
+
+ * src/Utils/: duplicate.cxx, Utils_SINGLETON.hxx,
+ Utils_SignalsHandler.cxx, Utils_Timer.cxx, Utils_Timer.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:51 smh
+
+ * src/Utils/: Utils_Identity.cxx, Utils_Identity.hxx,
+ Utils_ORB_INIT.cxx, Utils_SALOME_Exception.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:47 smh
+
+ * src/Utils/: Makefile.in, OpUtil.cxx, Utils_CorbaException.hxx,
+ Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils_ExceptHandlers.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:43 smh
+
+ * src/TestContainer/: Makefile.in, SALOME_TestComponent_i.cxx,
+ TestComponentPy.py, TestContainer.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:37 smh
+
+ * src/: SALOMELocalTrace/utilities.h,
+ SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ TOOLSDS/Makefile.in, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:30 smh
+
+ * src/: Registry/SALOME_Registry_Server.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:26 smh
+
+ * src/: NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ Notification/NOTIFICATION.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:23 smh
+
+ * src/: ModuleCatalog/Makefile.in,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ NamingService/NamingService_WaitForServerReadiness.cxx,
+ NamingService/SALOME_NamingService.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:18 smh
+
+ * src/: LifeCycleCORBA/Launchers.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.py,
+ Logger/SALOME_Trace.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:15 smh
+
+ * src/Container/: SALOME_Container.cxx,
+ SALOME_ContainerManager.cxx, SALOME_Container_i.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:12 smh
+
+ * src/Container/: Component_i.cxx, Container_i.cxx, Makefile.in,
+ SALOME_ComponentPy.py, SALOME_Component_i.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:07 smh
+
+ * salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4, src/Makefile.in:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:04 smh
+
+ * salome_adm/unix/: make_conclude.in,
+ config_files/ac_cxx_depend_flag.m4, config_files/check_boost.m4,
+ config_files/check_cas.m4, config_files/check_lsf.m4,
+ config_files/check_med2.m4, config_files/check_openpbs.m4:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 15:01 smh
+
+ * idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ resources/KERNELCatalog.xml, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/make_commence.in:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:53 smh
+
+ * INSTALL, Makefile.in, configure.in.base, bin/VERSION,
+ bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/orbmodule.py, bin/runNS.sh, bin/runSalome, bin/runSalome.py,
+ bin/salome.launch, bin/salomeConsole.py:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:42 smh
+
+ * src/Utils/: Utils_Mutex.cxx, Utils_Mutex.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:39 smh
+
+ * src/SALOMEDS/: SALOMEDS.cxx, SALOMEDS.hxx,
+ SALOMEDS_AttributeComment.cxx, SALOMEDS_AttributeComment.hxx,
+ SALOMEDS_AttributeDrawable.cxx, SALOMEDS_AttributeDrawable.hxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS_AttributeFlags.cxx, SALOMEDS_AttributeFlags.hxx,
+ SALOMEDS_AttributeGraphic.cxx, SALOMEDS_AttributeGraphic.hxx,
+ SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS_AttributeInteger.cxx, SALOMEDS_AttributeInteger.hxx,
+ SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeName.hxx,
+ SALOMEDS_AttributeOpened.cxx, SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS_AttributePythonObject.hxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS_AttributeTextColor.cxx, SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS_AttributeUserID.cxx, SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS_Attributes.hxx, SALOMEDS_ChildIterator.cxx,
+ SALOMEDS_ChildIterator.hxx, SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SComponent.hxx,
+ SALOMEDS_SComponentIterator.cxx, SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_Study.hxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyBuilder.hxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager.hxx, SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS_UseCaseBuilder.hxx, SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS_UseCaseIterator.hxx, Makefile.in,
+ SALOMEDS_AttributeComment_i.cxx, SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Client.cxx,
+ SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.hxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_Server.cxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyManager_i.hxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS_AttributeIOR_i.cxx, SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeUserID_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_UseCaseIterator_i.cxx, SALOMEDS_UseCaseIterator_i.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:28 smh
+
+ * src/: SALOMEDSImpl/Makefile.in,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Callback.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Tool.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl/testDS.cxx, Container/Container_init_python.cxx,
+ Container/Container_init_python.hxx,
+ Container/SALOME_Container.py,
+ Container/SALOME_ContainerManagerServer.cxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:23 smh
+
+ * src/: KERNEL_PY/Help.py, KERNEL_PY/Makefile.in,
+ KERNEL_PY/PyInterp.py, KERNEL_PY/batchmode_salome.py,
+ KERNEL_PY/import_hook.py, KERNEL_PY/kernel_shared_modules.py,
+ KERNEL_PY/salome_ComponentGUI.py, KERNEL_PY/salome_iapp.py,
+ KERNEL_PY/salome_kernel.py, KERNEL_PY/salome_shared_modules.py,
+ KERNEL_PY/salome.py, KERNEL_PY/salome_study.py,
+ KERNEL_PY/salome_test.py, SALOMEDSClient/Makefile.in,
+ SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 14:20 prascle
+
+ * resources/Plugin.in:
+
+ file Plugin.in was added on branch BR_V220_LifeCycle on 2005-07-08 07:13:35 +0000
+
+2005-05-26 14:20 mpv
+
+ * resources/Plugin.in:
+
+ file Plugin.in was added on branch V2_2_0_maintainance on 2005-06-08 04:22:12 +0000
+
+2005-05-26 14:20 smh
+
+ * resources/Plugin.in,
+ salome_adm/unix/config_files/check_msg2qm.m4:
+
+ SMH: Merge with development version = NEW GUI, POLY_WORK, OCC_development_02, BR_LyfeCycle, HEAD
+
+2005-05-26 13:22 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_StudyManager_i.cxx:
+
+ BugID: PAL8917: Added a support for store/restore operations on ExternalFileDef and FileType attributes.
+
+2005-05-26 12:37 ageay
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ Correction of a bug :
+ When a component does not exist in a machine, list of machine was not updated correctly.
+
+2005-05-25 11:01 secher
+
+ * idl/SALOME_MPIContainer.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx:
+
+ destroy container name in naming service on shutdown
+
+2005-05-24 13:59 secher
+
+ * Makefile.in, idl/SALOME_ContainerManager.idl,
+ idl/SALOME_MPIContainer.idl, resources/CatalogResources.xml,
+ resources/CatalogRessources.xml, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIContainer.cxx:
+
+ manage MPI containers in resources manager
+
+2005-05-20 16:31 prascle
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ Container_init_python.cxx, Container_init_python.hxx,
+ SALOME_Container.cxx, SALOME_Container_i.hxx:
+
+ PR: compatibility with Supervision, use new Python thread states for safety
+
+2005-05-18 17:16 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container.cxx,
+ SALOME_Container.py:
+
+ PR: embedded container C++ & Python, debug
+
+2005-05-18 11:48 prascle
+
+ * bin/runSalome.py, src/Container/Container_i.cxx,
+ src/Container/Container_init_python.cxx,
+ src/Container/Container_init_python.hxx,
+ src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
+ src/LifeCycleCORBA/Launchers.cxx,
+ src/TestContainer/TestContainer.cxx:
+
+ PR: embedded container C++ & Python
+
+2005-05-18 11:48 smh
+
+ * src/Container/Container_init_python.cxx:
+
+ file Container_init_python.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
+
+2005-05-18 11:48 smh
+
+ * src/Container/Container_init_python.hxx:
+
+ file Container_init_python.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
+
+2005-05-13 16:17 prascle
+
+ * src/Container/Container_i.cxx:
+
+ PR: C++ container used as a Python container
+
+2005-05-13 13:31 prascle
+
+ * src/: Container/Container_i.cxx, Container/SALOME_Container.py,
+ TestContainer/TestContainer.cxx:
+
+ PR: C++ container used as a Python container
+
+2005-05-13 10:32 smh
+
+ * src/Container/SALOME_Container.py:
+
+ file SALOME_Container.py was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
+
+2005-05-13 10:32 prascle
+
+ * src/Container/: Container_i.cxx, Makefile.in,
+ SALOME_Container.cxx, SALOME_Container.py:
+
+ PR: C++ container used as a Python container
+
+2005-05-12 13:17 prascle
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ TestContainer/TestContainer.cxx:
+
+ PR: remove argument library name (always libCOMPONENTEngine.so)
+
+2005-05-12 13:13 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
+
+ PR: remove argument library name (always libCOMPONENTEngine.so)
+
+2005-05-12 13:12 prascle
+
+ * idl/SALOME_Component.idl:
+
+ PR: remove argument library name (always libCOMPONENTEngine.so), + comments
+
+2005-05-12 11:17 srn
+
+ * src/SALOMEDS/: SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager.hxx:
+
+ Added empty constructor
+
+2005-05-12 10:23 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
+
+ Added support of BOOST's shared_ptr
+
+2005-05-12 07:58 srn
+
+ * src/TOOLSDS/: Makefile.in, SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
+
+ Added support of BOOST's shared_ptr
+
+2005-05-12 07:23 srn
+
+ * src/: SALOMEDSClient/SALOMEDSClient.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx,
+ SALOMEDSClient/SALOMEDSClient_definitions.hxx,
+ SALOMEDS/Makefile.in, SALOMEDS/SALOMEDS_AttributeTarget.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator.hxx,
+ SALOMEDS/SALOMEDS_SObject.cxx, SALOMEDS/SALOMEDS_SObject.hxx,
+ SALOMEDS/SALOMEDS_Study.cxx, SALOMEDS/SALOMEDS_Study.hxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator.hxx:
+
+ Added support of BOOST's shared_ptr
+
+2005-05-06 08:39 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Bug IPAL8742 (Add comments into generated files of DumpPython). Add static GetDumpStudyComment()
+ Bug IPAL8749. Return false if any of scripts is invalid
+
+2005-05-06 08:36 eap
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ Bug IPAL8742 (Add comments into generated files of DumpPython). Add static GetDumpStudyComment()
+
+2005-05-06 07:51 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Removed unnecessary cout's from method DumpPython
+
+2005-05-05 13:51 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ BugID IPAL8745, IPAL8744. Modified method DumpStudy, now if the components are not loaded
+ they will be loaded when study dumps their content in the Python script. The name of the main script now coincides with that given as input parameter, without an addion a suffix _Study.
+
+2005-04-29 13:24 asv
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Fix for bug PAL8727.
+ In method _SaveAs() (called from Save(), SaveAs(), SaveAscii(), SaveAsAscii()) there was a double call to SALOMEDS::lock() from different threads. The first call was in Save(), and the second - was in some Engine::Save().
+ The fix consists in calling to unlock() BEFORE calling Engine::Save() and lock() again - after the call.
+
+2005-04-29 13:17 asv
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Fix for bug PAL8727.
+ In method _SaveAs() (called from Save(), SaveAs(), SaveAscii(), SaveAsAscii()) there was a double call to SALOMEDS::lock() from different threads. The first call was in Save(), and the second - was in some Engine::Save().
+ The fix consists in calling to unlock() BEFORE calling Engine::Save() and lock() again - after the call.
+
+2005-04-25 11:14 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Increment version number (2.2.3)
+
+2005-04-20 14:27 prascle
+
+ * src/Container/Component_i.cxx:
+
+ PR: Documentation
+
+2005-04-20 13:50 prascle
+
+ * idl/SALOME_Component.idl:
+
+ PR: doc
+
+2005-04-20 07:28 mpv
+
+ * src/TOOLSDS/Makefile.in:
+
+ MPV:
+ GenericObj is necessary for SALOMEDS
+
+2005-04-20 06:32 mpv
+
+ * src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_ChildIterator.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx, idl/SALOMEDS.idl:
+
+ MPV:
+ SObject and SComponent, all Attributes, SComponentIterator, ChildIterator, UseCaseIterator and UseCaseBuilder classes now inherit GenericObj class. Thus, servants of these classes now destroyed by common CORBA algorithm (by calling Destroy method in the Client-classes destructors)
+
+2005-04-19 16:38 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container.cxx:
+
+ PR: find method...
+
+2005-04-18 15:58 prascle
+
+ * src/Container/: Component_i.cxx, Container_i.cxx,
+ SALOME_Container_i.hxx:
+
+ PR: container lifecycle, new design, try to dlclose, still not safe...
+
+2005-04-18 13:11 adam
+
+ * salome_adm/unix/config_files/check_swig.m4:
+
+ E.A. : OOPS, removing the "exit"
+
+2005-04-18 13:09 adam
+
+ * salome_adm/unix/config_files/check_swig.m4:
+
+ E.A. : Add a SWIG_VERSION variable
+
+2005-04-18 08:02 prascle
+
+ * idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx:
+
+ PR: container lifecycle, new design, first part
+
+2005-04-14 10:44 ageay
+
+ * idl/SALOME_Comm.idl:
+
+ Sender replaced by SenderDouble, SenderInt.
+
+2005-04-14 08:54 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ Fixed bug in the method Copy, now a clipboard document is re-created every time.
+
+2005-04-14 08:08 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Modified method dump
+
+2005-04-14 07:51 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
+
+ In method GetAllAttributes added a check to avoid returning of AttributeReference
+
+2005-04-13 14:54 ageay
+
+ * src/Communication/Receiver.cxx:
+
+ Improvement PAL8343.
+ Receiver is henceforth a template class.
+
+2005-04-13 14:53 ageay
+
+ * src/Communication/: Makefile.in, Receiver.hxx,
+ ReceiverFactory.cxx, ReceiverFactory.hxx, Receivers.cxx,
+ Receivers.hxx, SALOME_Comm_i.cxx, SALOME_Comm_i.hxx,
+ SenderFactory.cxx, SenderFactory.hxx:
+
+ Improvement PAL8343.
+ Sender reaplaced by SenderInt and SenderDouble for more explicit API.
+
+ WARNING as it is asked in PAL8343 ReceiverFactory do not yet release local obj ref SenderInt_ptr and SenderDouble_ptr, but it still releases remote sender servant and optionally the c++ array pointer (ownTabToSend).
+
+2005-04-13 14:07 srn
+
+ * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS_SComponent.cxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyManager.cxx:
+
+ Removed unnecessary CORBA::release statements. Added _retn() to CORBA objects returned from GetStudy. GetSObject and GetSComponent methods.
+
+2005-04-12 10:38 srn
+
+ * src/SALOMEDS/: SALOMEDS_SComponent.cxx, SALOMEDS_SComponent.hxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx:
+
+ Added methods to get a CORBA wrappers of the SALOMEDSClient objects
+
+2005-04-11 12:55 srn
+
+ * src/SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ Modified methdo GetObjectPath, to take into account an input argument of type SObject
+
+2005-04-11 11:30 srn
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ Removed unnecessary CORBA::release calls.
+
+2005-04-08 10:58 srn
+
+ * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_Study.hxx:
+
+ Added method GetStudy, which return a CORBA SALOMEDS::Study
+
+2005-04-08 09:15 srn
+
+ * src/SALOMEDS/SALOMEDS_ChildIterator.cxx:
+
+ Removed CORBA::release from destructors to avoid releasing already deleted objects
+
+2005-04-08 08:10 srn
+
+ * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS_SComponentIterator.cxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyManager.cxx, SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS_UseCaseIterator.cxx:
+
+ Removed CORBA::release from destructors to avoid releasing already deleted objects
+
+2005-04-07 15:36 vsr
+
+ * src/Makefile.in:
+
+ Fix a bug of compilation: TOOLSDS package depends on SALOMEDSImpl
+
+2005-04-07 14:29 srn
+
+ * src/SALOMEDSClient/: SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
+ SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient_UseCaseIterator.hxx:
+
+ Added virtual destructors
+
+2005-04-07 13:49 mpv
+
+ * src/Utils/OpUtil.cxx:
+
+ mpv: memory leak fix: gethostname method returns 0 if OK
+
+2005-04-07 13:31 srn
+
+ * src/: SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx,
+ SALOMEDSClient/SALOMEDSClient_Study.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx,
+ SALOMEDSClient/SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS/SALOMEDS_AttributeName.cxx,
+ SALOMEDS/SALOMEDS_AttributeName.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS/SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS/SALOMEDS_SComponent.cxx,
+ SALOMEDS/SALOMEDS_SComponent.hxx, SALOMEDS/SALOMEDS_SObject.cxx,
+ SALOMEDS/SALOMEDS_SObject.hxx, SALOMEDS/SALOMEDS_Study.cxx,
+ SALOMEDS/SALOMEDS_Study.hxx, SALOMEDS/SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder.hxx,
+ SALOMEDS/SALOMEDS_StudyManager.cxx,
+ SALOMEDS/SALOMEDS_StudyManager.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder.hxx:
+
+ replaced char* to std::string
+
+2005-04-07 11:18 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
+
+ Added const modificator for Name method
+
+2005-04-07 08:26 srn
+
+ * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx,
+ SALOMEDS_ChildIterator.hxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
+
+ Added duplicate and release to constructors/destructors
+
+2005-04-07 07:41 srn
+
+ * src/SALOMEDS/: SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx:
+
+ Added release of _driver and _orb in the destructor of the SALOMEDS_Driver_i
+
+2005-04-07 07:22 srn
+
+ * src/SALOMEDS/: SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager_i.cxx:
+
+ Added deletion of Drivers in Copy/Paste methods
+
+2005-04-07 06:55 srn
+
+ * src/SALOMEDS/: SALOMEDS_GenericAttribute.cxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyManager.cxx, SALOMEDS_StudyManager.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
+
+ Cnaged WNT on WIN32, modified methods for Copy/Paste in StudManager
+
+2005-04-06 13:56 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeName.cxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyManager.cxx:
+
+ Added CORBA::release to destrutors
+
+2005-04-06 12:40 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx:
+
+ Added method dump for out the study's content in the file
+
+2005-04-06 11:38 srn
+
+ * src/SALOMEDS/SALOMEDS_SObject.cxx:
+
+ Removed debug outputs
+
+2005-04-06 11:14 srn
+
+ * src/TOOLSDS/: SALOMEDS_Tool.cxx, SALOMEDS_Tool.hxx:
+
+ Added 3 mthods to work with SALOMEDSClients
+
+2005-04-06 11:13 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
+
+ Added & to return arguments
+
+2005-04-06 11:12 srn
+
+ * src/SALOMEDS/: SALOMEDS_ChildIterator.cxx, Makefile.in,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SObject.cxx, SALOMEDS_SObject.hxx, SALOMEDS_Study.cxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_UseCaseBuilder.cxx, SALOMEDS_UseCaseIterator.cxx:
+
+ Removed method _duplicate from constructors of Clients
+
+2005-04-06 06:49 srn
+
+ * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
+
+ Removed debug output
+
+2005-04-05 14:31 srn
+
+ * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
+
+ Removed debug output
+
+2005-04-05 14:20 srn
+
+ * src/SALOMEDS/: SALOMEDS_Study.cxx, SALOMEDS_StudyBuilder.cxx,
+ SALOMEDS_StudyManager.cxx:
+
+ Fixes of the return SObjects and SComponents that are NULL
+
+2005-04-04 14:35 srn
+
+ * src/SALOMEDSClient/SALOMEDSClient.hxx:
+
+ Added a newline at the file end
+
+2005-04-04 13:42 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx:
+
+ Changed vector<double> on structure STextColor
+
+2005-04-04 13:40 srn
+
+ * src/SALOMEDSClient/: Makefile.in, SALOMEDSClient.hxx,
+ SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient_definitions.hxx:
+
+ Added common inclusion file, added structure TextColor
+
+2005-04-04 13:40 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient.hxx:
+
+ file SALOMEDSClient.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 13:40 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_definitions.hxx:
+
+ file SALOMEDSClient_definitions.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 11:23 mpv
+
+ * src/SALOMEDS/SALOMEDS_Client.cxx:
+
+ MPV: added HDF include to avoid compilation error
+
+2005-04-04 09:34 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl_StudyManager.hxx:
+
+ Removed a HDF include from hxx file.
+
+2005-04-04 09:05 srn
+
+ * idl/SALOMEDS.idl:
+
+ Added methods GetLocalImpl() to SObject, Study, StudyManager and GenericAttribute interfaces
+ (for SALOMEDS proxy task)
+
+2005-04-04 09:04 srn
+
+ * src/SALOMEDS/SALOMEDS_SObject.cxx:
+
+ Removed unnecessary output
+
+2005-04-04 09:03 srn
+
+ * src/SALOMEDS/: Makefile.in, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx:
+
+ Modified attributes to comply with modifications in the method's names in SALOMEDSImpl
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeComment.hxx:
+
+ file SALOMEDS_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeDrawable.hxx:
+
+ file SALOMEDS_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeExpandable.cxx:
+
+ file SALOMEDS_AttributeExpandable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.hxx:
+
+ file SALOMEDS_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeFileType.hxx:
+
+ file SALOMEDS_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeFlags.cxx:
+
+ file SALOMEDS_AttributeFlags.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeFlags.hxx:
+
+ file SALOMEDS_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeGraphic.cxx:
+
+ file SALOMEDS_AttributeGraphic.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeIOR.cxx:
+
+ file SALOMEDS_AttributeIOR.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeIOR.hxx:
+
+ file SALOMEDS_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeInteger.hxx:
+
+ file SALOMEDS_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeLocalID.hxx:
+
+ file SALOMEDS_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeName.cxx:
+
+ file SALOMEDS_AttributeName.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeOpened.hxx:
+
+ file SALOMEDS_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeReal.hxx:
+
+ file SALOMEDS_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSelectable.hxx:
+
+ file SALOMEDS_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.cxx:
+
+ file SALOMEDS_AttributeSequenceOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.hxx:
+
+ file SALOMEDS_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeStudyProperties.hxx:
+
+ file SALOMEDS_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.cxx:
+
+ file SALOMEDS_AttributeTableOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfInteger.hxx:
+
+ file SALOMEDS_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTarget.cxx:
+
+ file SALOMEDS_AttributeTarget.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTextColor.cxx:
+
+ file SALOMEDS_AttributeTextColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTextColor.hxx:
+
+ file SALOMEDS_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.hxx:
+
+ file SALOMEDS_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_ChildIterator.hxx:
+
+ file SALOMEDS_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SObject.cxx:
+
+ file SALOMEDS_SObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_Study.hxx:
+
+ file SALOMEDS_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder.hxx:
+
+ file SALOMEDS_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeComment.cxx:
+
+ file SALOMEDS_AttributeComment.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeFileType.cxx:
+
+ file SALOMEDS_AttributeFileType.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSelectable.cxx:
+
+ file SALOMEDS_AttributeSelectable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeStudyProperties.cxx:
+
+ file SALOMEDS_AttributeStudyProperties.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTarget.hxx:
+
+ file SALOMEDS_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_GenericAttribute.hxx:
+
+ file SALOMEDS_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder.cxx:
+
+ file SALOMEDS_StudyBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_UseCaseBuilder.hxx:
+
+ file SALOMEDS_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeDrawable.cxx:
+
+ file SALOMEDS_AttributeDrawable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeLocalID.cxx:
+
+ file SALOMEDS_AttributeLocalID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeOpened.cxx:
+
+ file SALOMEDS_AttributeOpened.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor.cxx:
+
+ file SALOMEDS_AttributeTextHighlightColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_UseCaseIterator.cxx:
+
+ file SALOMEDS_UseCaseIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeExpandable.hxx,
+ SALOMEDS_AttributeExternalFileDef.cxx,
+ SALOMEDS_AttributeGraphic.hxx, SALOMEDS_AttributeInteger.cxx,
+ SALOMEDS_AttributeName.hxx, SALOMEDS_AttributePersistentRef.cxx,
+ SALOMEDS_AttributePersistentRef.hxx,
+ SALOMEDS_AttributePixMap.cxx, SALOMEDS_AttributePixMap.hxx,
+ SALOMEDS_AttributePythonObject.cxx,
+ SALOMEDS_AttributePythonObject.hxx, SALOMEDS_AttributeReal.cxx,
+ SALOMEDS_AttributeSequenceOfInteger.hxx,
+ SALOMEDS_AttributeSequenceOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal.cxx,
+ SALOMEDS_AttributeTableOfReal.hxx,
+ SALOMEDS_AttributeTableOfString.cxx,
+ SALOMEDS_AttributeTableOfString.hxx,
+ SALOMEDS_AttributeTreeNode.cxx, SALOMEDS_AttributeTreeNode.hxx,
+ SALOMEDS_AttributeUserID.cxx, SALOMEDS_AttributeUserID.hxx,
+ SALOMEDS_ChildIterator.cxx, SALOMEDS_ClientAttributes.hxx,
+ SALOMEDS_GenericAttribute.cxx, SALOMEDS_SComponent.cxx,
+ SALOMEDS_SComponent.hxx, SALOMEDS_SComponentIterator.cxx,
+ SALOMEDS_SComponentIterator.hxx, SALOMEDS_SObject.hxx,
+ SALOMEDS_Study.cxx, SALOMEDS_StudyManager.cxx,
+ SALOMEDS_StudyManager.hxx, SALOMEDS_UseCaseBuilder.cxx,
+ SALOMEDS_UseCaseIterator.hxx, SALOMEDS_AttributeDrawable.cxx,
+ SALOMEDS_AttributeLocalID.cxx, SALOMEDS_AttributeOpened.cxx,
+ SALOMEDS_AttributeTextHighlightColor.cxx,
+ SALOMEDS_UseCaseIterator.cxx, SALOMEDS_AttributeComment.cxx,
+ SALOMEDS_AttributeFileType.cxx, SALOMEDS_AttributeSelectable.cxx,
+ SALOMEDS_AttributeStudyProperties.cxx,
+ SALOMEDS_AttributeTarget.hxx, SALOMEDS_GenericAttribute.hxx,
+ SALOMEDS_StudyBuilder.cxx, SALOMEDS_UseCaseBuilder.hxx,
+ SALOMEDS_AttributeComment.hxx, SALOMEDS_AttributeDrawable.hxx,
+ SALOMEDS_AttributeExpandable.cxx,
+ SALOMEDS_AttributeExternalFileDef.hxx,
+ SALOMEDS_AttributeFileType.hxx, SALOMEDS_AttributeFlags.cxx,
+ SALOMEDS_AttributeFlags.hxx, SALOMEDS_AttributeGraphic.cxx,
+ SALOMEDS_AttributeIOR.cxx, SALOMEDS_AttributeIOR.hxx,
+ SALOMEDS_AttributeInteger.hxx, SALOMEDS_AttributeLocalID.hxx,
+ SALOMEDS_AttributeName.cxx, SALOMEDS_AttributeOpened.hxx,
+ SALOMEDS_AttributeReal.hxx, SALOMEDS_AttributeSelectable.hxx,
+ SALOMEDS_AttributeSequenceOfInteger.cxx,
+ SALOMEDS_AttributeSequenceOfReal.hxx,
+ SALOMEDS_AttributeStudyProperties.hxx,
+ SALOMEDS_AttributeTableOfInteger.cxx,
+ SALOMEDS_AttributeTableOfInteger.hxx,
+ SALOMEDS_AttributeTarget.cxx, SALOMEDS_AttributeTextColor.cxx,
+ SALOMEDS_AttributeTextColor.hxx,
+ SALOMEDS_AttributeTextHighlightColor.hxx,
+ SALOMEDS_ChildIterator.hxx, SALOMEDS_SObject.cxx,
+ SALOMEDS_Study.hxx, SALOMEDS_StudyBuilder.hxx:
+
+ Proxy classe's implementations for SALOMEDS
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeExpandable.hxx:
+
+ file SALOMEDS_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeExternalFileDef.cxx:
+
+ file SALOMEDS_AttributeExternalFileDef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeGraphic.hxx:
+
+ file SALOMEDS_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeInteger.cxx:
+
+ file SALOMEDS_AttributeInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeName.hxx:
+
+ file SALOMEDS_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePersistentRef.cxx:
+
+ file SALOMEDS_AttributePersistentRef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePersistentRef.hxx:
+
+ file SALOMEDS_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePixMap.cxx:
+
+ file SALOMEDS_AttributePixMap.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePixMap.hxx:
+
+ file SALOMEDS_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePythonObject.cxx:
+
+ file SALOMEDS_AttributePythonObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributePythonObject.hxx:
+
+ file SALOMEDS_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeReal.cxx:
+
+ file SALOMEDS_AttributeReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger.hxx:
+
+ file SALOMEDS_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal.cxx:
+
+ file SALOMEDS_AttributeSequenceOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfReal.cxx:
+
+ file SALOMEDS_AttributeTableOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfReal.hxx:
+
+ file SALOMEDS_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfString.cxx:
+
+ file SALOMEDS_AttributeTableOfString.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTableOfString.hxx:
+
+ file SALOMEDS_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTreeNode.cxx:
+
+ file SALOMEDS_AttributeTreeNode.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeTreeNode.hxx:
+
+ file SALOMEDS_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeUserID.cxx:
+
+ file SALOMEDS_AttributeUserID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_AttributeUserID.hxx:
+
+ file SALOMEDS_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_ChildIterator.cxx:
+
+ file SALOMEDS_ChildIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_ClientAttributes.hxx:
+
+ file SALOMEDS_ClientAttributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_GenericAttribute.cxx:
+
+ file SALOMEDS_GenericAttribute.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SComponent.cxx:
+
+ file SALOMEDS_SComponent.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SComponent.hxx:
+
+ file SALOMEDS_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SComponentIterator.cxx:
+
+ file SALOMEDS_SComponentIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SComponentIterator.hxx:
+
+ file SALOMEDS_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_SObject.hxx:
+
+ file SALOMEDS_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_Study.cxx:
+
+ file SALOMEDS_Study.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyManager.cxx:
+
+ file SALOMEDS_StudyManager.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyManager.hxx:
+
+ file SALOMEDS_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_UseCaseBuilder.cxx:
+
+ file SALOMEDS_UseCaseBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 09:02 smh
+
+ * src/SALOMEDS/SALOMEDS_UseCaseIterator.hxx:
+
+ file SALOMEDS_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:44 +0000
+
+2005-04-04 08:59 srn
+
+ * src/SALOMEDSClient/: Makefile.in,
+ SALOMEDSClient_AttributeComment.hxx,
+ SALOMEDSClient_AttributeDrawable.hxx,
+ SALOMEDSClient_AttributeExpandable.hxx,
+ SALOMEDSClient_AttributeExternalFileDef.hxx,
+ SALOMEDSClient_AttributeFileType.hxx,
+ SALOMEDSClient_AttributeFlags.hxx,
+ SALOMEDSClient_AttributeGraphic.hxx,
+ SALOMEDSClient_AttributeIOR.hxx,
+ SALOMEDSClient_AttributeInteger.hxx,
+ SALOMEDSClient_AttributeLocalID.hxx,
+ SALOMEDSClient_AttributeName.hxx,
+ SALOMEDSClient_AttributeOpened.hxx,
+ SALOMEDSClient_AttributePersistentRef.hxx,
+ SALOMEDSClient_AttributePixMap.hxx,
+ SALOMEDSClient_AttributePythonObject.hxx,
+ SALOMEDSClient_AttributeReal.hxx,
+ SALOMEDSClient_AttributeSelectable.hxx,
+ SALOMEDSClient_AttributeSequenceOfInteger.hxx,
+ SALOMEDSClient_AttributeSequenceOfReal.hxx,
+ SALOMEDSClient_AttributeStudyProperties.hxx,
+ SALOMEDSClient_AttributeTableOfInteger.hxx,
+ SALOMEDSClient_AttributeTableOfReal.hxx,
+ SALOMEDSClient_AttributeTableOfString.hxx,
+ SALOMEDSClient_AttributeTarget.hxx,
+ SALOMEDSClient_AttributeTextColor.hxx,
+ SALOMEDSClient_AttributeTextHighlightColor.hxx,
+ SALOMEDSClient_AttributeTreeNode.hxx,
+ SALOMEDSClient_AttributeUserID.hxx,
+ SALOMEDSClient_ChildIterator.hxx,
+ SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient_SComponentIterator.hxx,
+ SALOMEDSClient_SObject.hxx, SALOMEDSClient_Study.hxx,
+ SALOMEDSClient_StudyBuilder.hxx, SALOMEDSClient_StudyManager.hxx,
+ SALOMEDSClient_UseCaseBuilder.hxx,
+ SALOMEDSClient_UseCaseIterator.hxx:
+
+ Proxy classe's headers for SALOMEDS
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeComment.hxx:
+
+ file SALOMEDSClient_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeDrawable.hxx:
+
+ file SALOMEDSClient_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeExpandable.hxx:
+
+ file SALOMEDSClient_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeExternalFileDef.hxx:
+
+ file SALOMEDSClient_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeFileType.hxx:
+
+ file SALOMEDSClient_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeFlags.hxx:
+
+ file SALOMEDSClient_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeGraphic.hxx:
+
+ file SALOMEDSClient_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeIOR.hxx:
+
+ file SALOMEDSClient_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeInteger.hxx:
+
+ file SALOMEDSClient_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeLocalID.hxx:
+
+ file SALOMEDSClient_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeName.hxx:
+
+ file SALOMEDSClient_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeOpened.hxx:
+
+ file SALOMEDSClient_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributePersistentRef.hxx:
+
+ file SALOMEDSClient_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributePixMap.hxx:
+
+ file SALOMEDSClient_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributePythonObject.hxx:
+
+ file SALOMEDSClient_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeReal.hxx:
+
+ file SALOMEDSClient_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeSelectable.hxx:
+
+ file SALOMEDSClient_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfInteger.hxx:
+
+ file SALOMEDSClient_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeSequenceOfReal.hxx:
+
+ file SALOMEDSClient_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeStudyProperties.hxx:
+
+ file SALOMEDSClient_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfInteger.hxx:
+
+ file SALOMEDSClient_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfReal.hxx:
+
+ file SALOMEDSClient_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTableOfString.hxx:
+
+ file SALOMEDSClient_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTarget.hxx:
+
+ file SALOMEDSClient_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTextColor.hxx:
+
+ file SALOMEDSClient_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ *
+ src/SALOMEDSClient/SALOMEDSClient_AttributeTextHighlightColor.hxx:
+
+ file SALOMEDSClient_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeTreeNode.hxx:
+
+ file SALOMEDSClient_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_AttributeUserID.hxx:
+
+ file SALOMEDSClient_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_ChildIterator.hxx:
+
+ file SALOMEDSClient_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_SComponentIterator.hxx:
+
+ file SALOMEDSClient_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_Study.hxx:
+
+ file SALOMEDSClient_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_StudyBuilder.hxx:
+
+ file SALOMEDSClient_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx:
+
+ file SALOMEDSClient_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_UseCaseBuilder.hxx:
+
+ file SALOMEDSClient_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:59 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_UseCaseIterator.hxx:
+
+ file SALOMEDSClient_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-04-04 08:57 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributePixMap.hxx, SALOMEDSImpl_AttributeReal.cxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_SComponentIterator.cxx, SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl_Study.cxx, SALOMEDSImpl_Study.hxx,
+ SALOMEDSImpl_StudyBuilder.cxx, SALOMEDSImpl_StudyManager.cxx,
+ SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseIterator.cxx, testDS.cxx,
+ SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl_GenericAttribute.hxx, SALOMEDSImpl_SComponent.cxx:
+
+ Make most of attribute have method's names coinciding with that in IDL
+
+2005-04-04 08:22 prascle
+
+ * INSTALL, bin/VERSION, bin/orbmodule.py, bin/runSalome.py,
+ bin/salomeConsole.py, resources/KERNELCatalog.xml,
+ salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4, src/Makefile.in,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Notification/NOTIFICATION.cxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS.cxx, src/SALOMEDS/SALOMEDS.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_CorbaException.hxx, src/Utils/Utils_Mutex.cxx,
+ src/Utils/Utils_Mutex.hxx:
+
+ PR: merge from tag V2_2_2
+
+2005-03-30 12:12 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx:
+
+ Added Copy and empty constructors.
+
+2005-03-30 11:48 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx:
+
+ Added method GetSObject
+
+2005-03-28 08:00 srn
+
+ * idl/SALOMEDS.idl:
+
+ Added 2 methods to StudyManger (ConvertObjectToString and ConvertStringToObject)
+
+2005-03-28 07:58 srn
+
+ * src/SALOMEDS/: SALOMEDS_Driver_i.hxx,
+ SALOMEDS_StudyManager_i.hxx:
+
+ Added 2 methods to StudyManger (ConvertObjectToString and ConvertStringToObject),
+ changed a field of Driver from Driver_ptr to Driver_var
+
+2005-03-25 13:15 vsr
+
+ * INSTALL, bin/VERSION, resources/KERNELCatalog.xml:
+
+ Change version number to 2.2.2
+
+2005-03-25 08:23 srn
+
+ * src/: SALOMEDSImpl/Makefile.in,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl/SALOMEDSImpl_Study.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ New implementation of ChildIterator
+
+2005-03-25 08:23 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.cxx:
+
+ file SALOMEDSImpl_ChildIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-25 08:23 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ChildIterator.hxx:
+
+ file SALOMEDSImpl_ChildIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-24 06:45 srn
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx, idl/SALOMEDS.idl,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx:
+
+ Removed unnecessary methods for Callback
+
+2005-03-23 08:56 srn
+
+ * src/SALOMEDS/: SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyManager_i.hxx:
+
+ Removed unnecessary methods
+
+2005-03-23 08:03 srn
+
+ * src/SALOMEDS/SALOMEDS_Callback_i.hxx:
+
+ Mark this class as depricated
+
+2005-03-22 10:57 srn
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx:
+
+ Removed depricated methods Store and Restore from GenericAttribute interface
+
+2005-03-22 08:54 srn
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_Attributes.hxx, SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS_Driver_i.cxx, SALOMEDS_Driver_i.hxx,
+ SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseIterator_i.cxx:
+
+ Fixed bug with freezing the SALOMEDS in standalone mode.
+ Implemented a support of creation SObjects, SComponents and Attributes only once, without their later re-creation.
+
+2005-03-22 08:52 srn
+
+ * src/SALOMEDSImpl/:
+ Handle_SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
+ Handle_SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDSImpl_DataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapStringLabel_0.cxx:
+
+ Replaced Maps on templates from NCollection package
+
+2005-03-22 08:51 srn
+
+ * src/SALOMEDSImpl/: SALOMEDSImpl_Study.hxx, Makefile.in,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl_SComponent.cxx, SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl_SObject.cxx, SALOMEDSImpl_SObject.hxx,
+ SALOMEDSImpl_Study.cxx, SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseIterator.cxx:
+
+ Implemented a support of creation of SObjects, SComponents and Attributes only once, without later re-creation.
+
+2005-03-21 09:26 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ Fixed bug in method LoadWith for case when study is filled by Python script
+
+2005-03-18 15:14 srn
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ Changed "import of batchmode_salome" to "import salome" in DumpStudy
+
+2005-03-18 13:25 prascle
+
+ * bin/orbmodule.py, bin/runSalome.py, bin/salomeConsole.py,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ src/Container/SALOME_Container.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Notification/NOTIFICATION.cxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/TestContainer/TestContainer.cxx:
+
+ merged from mergeto_V2_2_0_maintainance_18mar05
+
+2005-03-18 13:01 prascle
+
+ * bin/runSalome.py, salome_adm/unix/SALOMEconfig.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_med2.m4, src/Makefile.in,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManagerServer.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/Utils/Utils_CorbaException.hxx:
+
+ merged from V2_2_0_maintainance_18mar05
+
+2005-03-17 13:17 apo
+
+ * salome_adm/unix/: SALOMEconfig.h.in,
+ config_files/ac_cxx_depend_flag.m4, config_files/check_med2.m4:
+
+ Fix on previous integration, that was associated with CCRT_Port_V220.
+ The regression was caused by customisation of compilation between PCLINUX and OSF1 platforms for KERNEL/MEDWrapper library.
+ By the fix we define corresponded C++ preprocessor variable (MACHINE) at configuration step of KERNEL module in SALOMEconfig.h header file. So, every client of KERNEL module will automaticaly be customizing by including of this header file.
+
+2005-03-17 12:57 apo
+
+ * salome_adm/unix/: SALOMEconfig.h.in,
+ config_files/ac_cxx_depend_flag.m4, config_files/check_med2.m4:
+
+ Fix on previous integration, that was associated with CCRT_Port_V220.
+ The regression was caused by customisation of compilation between PCLINUX and OSF1 platforms for KERNEL/MEDWrapper library.
+ By the fix we define corresponded C++ preprocessor variable (MACHINE) at configuration step of KERNEL module in SALOMEconfig.h header file. So, every client of KERNEL module will automaticaly be customizing by including of this header file.
+
+2005-03-17 09:59 prascle
+
+ * bin/orbmodule.py:
+
+ PR: behavior change on iterators in CosNaming, omniORB 4.0
+
+2005-03-17 09:58 srn
+
+ * src/Utils/: Makefile.in, Utils_Mutex.cxx, Utils_Mutex.hxx:
+
+ Locks
+
+2005-03-17 09:56 prascle
+
+ * bin/runSalome.py:
+
+ PR: get the same behavior as in V2_2_1
+
+2005-03-17 09:19 srn
+
+ * src/SALOMEDS/: SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS_TableOfStringAttribute.ixx,
+ SALOMEDS_TableOfStringAttribute.jxx,
+ SALOMEDS_TargetAttribute.cdl, SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cdl,
+ SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS_TextHighlightColorAttribute.cdl,
+ SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS_TextHighlightColorAttribute.jxx:
+
+ Local Study
+
+2005-03-17 09:11 srn
+
+ * src/SALOMEDS/:
+ Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ Handle_SALOMEDS_DrawableAttribute.hxx,
+ Handle_SALOMEDS_ExpandableAttribute.hxx,
+ Handle_SALOMEDS_ExternalFileDef.hxx,
+ Handle_SALOMEDS_FileType.hxx, Handle_SALOMEDS_IORAttribute.hxx,
+ Handle_SALOMEDS_LocalIDAttribute.hxx,
+ Handle_SALOMEDS_OCAFApplication.hxx,
+ Handle_SALOMEDS_OpenedAttribute.hxx,
+ Handle_SALOMEDS_PersRefAttribute.hxx,
+ Handle_SALOMEDS_PixMapAttribute.hxx,
+ Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ Handle_SALOMEDS_SelectableAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ Handle_SALOMEDS_TargetAttribute.hxx,
+ Handle_SALOMEDS_TextColorAttribute.hxx,
+ Handle_SALOMEDS_TextHighlightColorAttribute.hxx, SALOMEDS.cdl,
+ SALOMEDS_AttLong_i.cxx, SALOMEDS_AttLong_i.hxx,
+ SALOMEDS_AttReal_i.cxx, SALOMEDS_AttReal_i.hxx,
+ README_attributes, SALOMEDS.cxx, SALOMEDS.hxx:
+
+ [no log message]
+
+2005-03-17 08:52 srn
+
+ * src/SALOMEDS/: Makefile.in, README_attributes, SALOMEDS.cxx,
+ SALOMEDS.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeFlags_i.hxx, SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS_AttributeGraphic_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS_AttributeInteger_i.hxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget_i.cxx, SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_AttributeUserID_i.hxx, SALOMEDS_Attributes.hxx,
+ SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS_Callback_i.hxx, SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Client.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapOfIntegerString.hxx,
+ SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS_DrawableAttribute.cdl, SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS_DrawableAttribute.jxx, SALOMEDS_Driver_i.cxx,
+ SALOMEDS_Driver_i.hxx, SALOMEDS_ExpandableAttribute.cdl,
+ SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cdl,
+ SALOMEDS_ExternalFileDef.cxx, SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS_ExternalFileDef.ixx, SALOMEDS_ExternalFileDef.jxx,
+ SALOMEDS_FileType.cdl, SALOMEDS_FileType.cxx,
+ SALOMEDS_FileType.hxx, SALOMEDS_FileType.ixx,
+ SALOMEDS_FileType.jxx, SALOMEDS_FlagsAttribute.cxx,
+ SALOMEDS_FlagsAttribute.hxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_GraphicAttribute.cxx,
+ SALOMEDS_GraphicAttribute.hxx, SALOMEDS_IORAttribute.cdl,
+ SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
+ SALOMEDS_IORAttribute.ixx, SALOMEDS_IORAttribute.jxx,
+ SALOMEDS_LocalIDAttribute.cdl, SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS_LocalIDAttribute.hxx, SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS_LocalIDAttribute.jxx, SALOMEDS_OCAFApplication.cdl,
+ SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS_OCAFApplication.ixx, SALOMEDS_OCAFApplication.jxx,
+ SALOMEDS_OpenedAttribute.cdl, SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cdl,
+ SALOMEDS_PersRefAttribute.cxx, SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PersRefAttribute.jxx,
+ SALOMEDS_PixMapAttribute.cdl, SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS_PixMapAttribute.hxx, SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS_PixMapAttribute.jxx, SALOMEDS_PythonObjectAttribute.cdl,
+ SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_SelectableAttribute.cdl,
+ SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS_SequenceOfRealAttribute.cdl,
+ SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_StudyPropertiesAttribute.cdl,
+ SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseBuilder_i.hxx, SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS_UseCaseIterator_i.hxx:
+
+ Local Study
+
+2005-03-17 08:52 smh
+
+ * src/SALOMEDS/SALOMEDS_Attributes.hxx:
+
+ file SALOMEDS_Attributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-03-17 08:52 smh
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.cxx:
+
+ file SALOMEDS_Driver_i.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-03-17 08:52 smh
+
+ * src/SALOMEDS/SALOMEDS_Driver_i.hxx:
+
+ file SALOMEDS_Driver_i.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:28 +0000
+
+2005-03-17 08:45 srn
+
+ * src/Container/: Component_i.cxx, SALOME_ComponentPy.py,
+ SALOME_Component_i.hxx:
+
+ Dump Python
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.hxx:
+
+ file SALOMEDSImpl_StudyBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/testDS.cxx:
+
+ file testDS.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.cxx:
+
+ file SALOMEDSImpl_OCAFApplication.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_OCAFApplication.hxx:
+
+ file SALOMEDSImpl_OCAFApplication.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SComponent.cxx:
+
+ file SALOMEDSImpl_SComponent.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SComponent.hxx:
+
+ file SALOMEDSImpl_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.cxx:
+
+ file SALOMEDSImpl_SComponentIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SComponentIterator.hxx:
+
+ file SALOMEDSImpl_SComponentIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SObject.cxx:
+
+ file SALOMEDSImpl_SObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_SObject.hxx:
+
+ file SALOMEDSImpl_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx:
+
+ file SALOMEDSImpl_Study.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Study.hxx:
+
+ file SALOMEDSImpl_Study.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyBuilder.cxx:
+
+ file SALOMEDSImpl_StudyBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.cxx:
+
+ file SALOMEDSImpl_StudyHandle.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyHandle.hxx:
+
+ file SALOMEDSImpl_StudyHandle.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.cxx:
+
+ file SALOMEDSImpl_StudyManager.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_StudyManager.hxx:
+
+ file SALOMEDSImpl_StudyManager.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.cxx:
+
+ file SALOMEDSImpl_Tool.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Tool.hxx:
+
+ file SALOMEDSImpl_Tool.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.cxx:
+
+ file SALOMEDSImpl_UseCaseBuilder.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseBuilder.hxx:
+
+ file SALOMEDSImpl_UseCaseBuilder.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.cxx:
+
+ file SALOMEDSImpl_UseCaseIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_UseCaseIterator.hxx:
+
+ file SALOMEDSImpl_UseCaseIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.hxx:
+
+ file SALOMEDSImpl_AttributeSequenceOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.cxx:
+
+ file SALOMEDSImpl_AttributeSequenceOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfReal.hxx:
+
+ file SALOMEDSImpl_AttributeSequenceOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.cxx:
+
+ file SALOMEDSImpl_AttributeStudyProperties.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeStudyProperties.hxx:
+
+ file SALOMEDSImpl_AttributeStudyProperties.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.cxx:
+
+ file SALOMEDSImpl_AttributeTableOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfInteger.hxx:
+
+ file SALOMEDSImpl_AttributeTableOfInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.cxx:
+
+ file SALOMEDSImpl_AttributeTableOfReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfReal.hxx:
+
+ file SALOMEDSImpl_AttributeTableOfReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.cxx:
+
+ file SALOMEDSImpl_AttributeTableOfString.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTableOfString.hxx:
+
+ file SALOMEDSImpl_AttributeTableOfString.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.cxx:
+
+ file SALOMEDSImpl_AttributeTarget.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTarget.hxx:
+
+ file SALOMEDSImpl_AttributeTarget.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.cxx:
+
+ file SALOMEDSImpl_AttributeTextColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextColor.hxx:
+
+ file SALOMEDSImpl_AttributeTextColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.cxx:
+
+ file SALOMEDSImpl_AttributeTextHighlightColor.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTextHighlightColor.hxx:
+
+ file SALOMEDSImpl_AttributeTextHighlightColor.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.cxx:
+
+ file SALOMEDSImpl_AttributeTreeNode.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeTreeNode.hxx:
+
+ file SALOMEDSImpl_AttributeTreeNode.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.cxx:
+
+ file SALOMEDSImpl_AttributeUserID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeUserID.hxx:
+
+ file SALOMEDSImpl_AttributeUserID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Attributes.hxx:
+
+ file SALOMEDSImpl_Attributes.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Callback.cxx:
+
+ file SALOMEDSImpl_Callback.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Callback.hxx:
+
+ file SALOMEDSImpl_Callback.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.cxx:
+
+ file SALOMEDSImpl_ChildNodeIterator.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_ChildNodeIterator.hxx:
+
+ file SALOMEDSImpl_ChildNodeIterator.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_Driver.hxx:
+
+ file SALOMEDSImpl_Driver.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.cxx:
+
+ file SALOMEDSImpl_GenericAttribute.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_GenericAttribute.hxx:
+
+ file SALOMEDSImpl_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 srn
+
+ * src/SALOMEDSImpl/:
+ Handle_SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
+ Handle_SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
+ Makefile.in, SALOMEDSImpl_AttributeComment.cxx,
+ SALOMEDSImpl_AttributeComment.hxx,
+ SALOMEDSImpl_AttributeDrawable.cxx,
+ SALOMEDSImpl_AttributeDrawable.hxx,
+ SALOMEDSImpl_AttributeExpandable.cxx,
+ SALOMEDSImpl_AttributeExpandable.hxx,
+ SALOMEDSImpl_AttributeExternalFileDef.cxx,
+ SALOMEDSImpl_AttributeExternalFileDef.hxx,
+ SALOMEDSImpl_AttributeFileType.cxx,
+ SALOMEDSImpl_AttributeFileType.hxx,
+ SALOMEDSImpl_AttributeFlags.cxx, SALOMEDSImpl_AttributeFlags.hxx,
+ SALOMEDSImpl_AttributeGraphic.cxx,
+ SALOMEDSImpl_AttributeGraphic.hxx, SALOMEDSImpl_AttributeIOR.cxx,
+ SALOMEDSImpl_AttributeIOR.hxx, SALOMEDSImpl_AttributeInteger.cxx,
+ SALOMEDSImpl_AttributeInteger.hxx,
+ SALOMEDSImpl_AttributeLocalID.cxx,
+ SALOMEDSImpl_AttributeLocalID.hxx,
+ SALOMEDSImpl_AttributeName.cxx, SALOMEDSImpl_AttributeName.hxx,
+ SALOMEDSImpl_AttributeOpened.cxx,
+ SALOMEDSImpl_AttributeOpened.hxx,
+ SALOMEDSImpl_AttributePersistentRef.cxx,
+ SALOMEDSImpl_AttributePersistentRef.hxx,
+ SALOMEDSImpl_AttributePixMap.cxx,
+ SALOMEDSImpl_AttributePixMap.hxx,
+ SALOMEDSImpl_AttributePythonObject.cxx,
+ SALOMEDSImpl_AttributePythonObject.hxx,
+ SALOMEDSImpl_AttributeReal.cxx, SALOMEDSImpl_AttributeReal.hxx,
+ SALOMEDSImpl_AttributeReference.cxx,
+ SALOMEDSImpl_AttributeReference.hxx,
+ SALOMEDSImpl_AttributeSelectable.cxx,
+ SALOMEDSImpl_AttributeSelectable.hxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.cxx,
+ SALOMEDSImpl_AttributeSequenceOfInteger.hxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.cxx,
+ SALOMEDSImpl_AttributeSequenceOfReal.hxx,
+ SALOMEDSImpl_AttributeStudyProperties.cxx,
+ SALOMEDSImpl_AttributeStudyProperties.hxx,
+ SALOMEDSImpl_AttributeTableOfInteger.cxx,
+ SALOMEDSImpl_AttributeTableOfInteger.hxx,
+ SALOMEDSImpl_AttributeTableOfReal.cxx,
+ SALOMEDSImpl_AttributeTableOfReal.hxx,
+ SALOMEDSImpl_AttributeTableOfString.cxx,
+ SALOMEDSImpl_AttributeTableOfString.hxx,
+ SALOMEDSImpl_AttributeTarget.cxx,
+ SALOMEDSImpl_AttributeTarget.hxx,
+ SALOMEDSImpl_AttributeTextColor.cxx,
+ SALOMEDSImpl_AttributeTextColor.hxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.cxx,
+ SALOMEDSImpl_AttributeTextHighlightColor.hxx,
+ SALOMEDSImpl_AttributeTreeNode.cxx,
+ SALOMEDSImpl_AttributeTreeNode.hxx,
+ SALOMEDSImpl_AttributeUserID.cxx,
+ SALOMEDSImpl_AttributeUserID.hxx, SALOMEDSImpl_Attributes.hxx,
+ SALOMEDSImpl_Callback.cxx, SALOMEDSImpl_Callback.hxx,
+ SALOMEDSImpl_ChildNodeIterator.cxx,
+ SALOMEDSImpl_ChildNodeIterator.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDSImpl_DataMapOfIntegerString.hxx,
+ SALOMEDSImpl_DataMapOfIntegerString_0.cxx,
+ SALOMEDSImpl_DataMapStringLabel.hxx,
+ SALOMEDSImpl_DataMapStringLabel_0.cxx, SALOMEDSImpl_Driver.hxx,
+ SALOMEDSImpl_GenericAttribute.cxx,
+ SALOMEDSImpl_GenericAttribute.hxx,
+ SALOMEDSImpl_OCAFApplication.cxx,
+ SALOMEDSImpl_OCAFApplication.hxx, SALOMEDSImpl_SComponent.cxx,
+ SALOMEDSImpl_SComponent.hxx, SALOMEDSImpl_SComponentIterator.cxx,
+ SALOMEDSImpl_SComponentIterator.hxx, SALOMEDSImpl_SObject.cxx,
+ SALOMEDSImpl_SObject.hxx, SALOMEDSImpl_Study.cxx,
+ SALOMEDSImpl_Study.hxx, SALOMEDSImpl_StudyBuilder.cxx,
+ SALOMEDSImpl_StudyHandle.cxx, SALOMEDSImpl_StudyHandle.hxx,
+ SALOMEDSImpl_StudyManager.cxx, SALOMEDSImpl_StudyManager.hxx,
+ SALOMEDSImpl_Tool.cxx, SALOMEDSImpl_UseCaseBuilder.cxx,
+ SALOMEDSImpl_UseCaseBuilder.hxx,
+ SALOMEDSImpl_UseCaseIterator.cxx,
+ SALOMEDSImpl_UseCaseIterator.hxx, SALOMEDSImpl_StudyBuilder.hxx,
+ SALOMEDSImpl_Tool.hxx, testDS.cxx:
+
+ Local Study
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/Makefile.in:
+
+ file Makefile.in was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.cxx:
+
+ file SALOMEDSImpl_AttributeComment.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeComment.hxx:
+
+ file SALOMEDSImpl_AttributeComment.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.cxx:
+
+ file SALOMEDSImpl_AttributeDrawable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeDrawable.hxx:
+
+ file SALOMEDSImpl_AttributeDrawable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.cxx:
+
+ file SALOMEDSImpl_AttributeExpandable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExpandable.hxx:
+
+ file SALOMEDSImpl_AttributeExpandable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.cxx:
+
+ file SALOMEDSImpl_AttributeExternalFileDef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeExternalFileDef.hxx:
+
+ file SALOMEDSImpl_AttributeExternalFileDef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.cxx:
+
+ file SALOMEDSImpl_AttributeFileType.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFileType.hxx:
+
+ file SALOMEDSImpl_AttributeFileType.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.cxx:
+
+ file SALOMEDSImpl_AttributeFlags.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeFlags.hxx:
+
+ file SALOMEDSImpl_AttributeFlags.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.cxx:
+
+ file SALOMEDSImpl_AttributeGraphic.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeGraphic.hxx:
+
+ file SALOMEDSImpl_AttributeGraphic.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.cxx:
+
+ file SALOMEDSImpl_AttributeIOR.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeIOR.hxx:
+
+ file SALOMEDSImpl_AttributeIOR.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.cxx:
+
+ file SALOMEDSImpl_AttributeInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeInteger.hxx:
+
+ file SALOMEDSImpl_AttributeInteger.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.cxx:
+
+ file SALOMEDSImpl_AttributeLocalID.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeLocalID.hxx:
+
+ file SALOMEDSImpl_AttributeLocalID.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.cxx:
+
+ file SALOMEDSImpl_AttributeName.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeName.hxx:
+
+ file SALOMEDSImpl_AttributeName.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.cxx:
+
+ file SALOMEDSImpl_AttributeOpened.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeOpened.hxx:
+
+ file SALOMEDSImpl_AttributeOpened.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.cxx:
+
+ file SALOMEDSImpl_AttributePersistentRef.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePersistentRef.hxx:
+
+ file SALOMEDSImpl_AttributePersistentRef.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.cxx:
+
+ file SALOMEDSImpl_AttributePixMap.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePixMap.hxx:
+
+ file SALOMEDSImpl_AttributePixMap.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.cxx:
+
+ file SALOMEDSImpl_AttributePythonObject.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributePythonObject.hxx:
+
+ file SALOMEDSImpl_AttributePythonObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.cxx:
+
+ file SALOMEDSImpl_AttributeReal.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReal.hxx:
+
+ file SALOMEDSImpl_AttributeReal.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.cxx:
+
+ file SALOMEDSImpl_AttributeReference.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeReference.hxx:
+
+ file SALOMEDSImpl_AttributeReference.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.cxx:
+
+ file SALOMEDSImpl_AttributeSelectable.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSelectable.hxx:
+
+ file SALOMEDSImpl_AttributeSelectable.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:13 +0000
+
+2005-03-17 08:35 smh
+
+ * src/SALOMEDSImpl/SALOMEDSImpl_AttributeSequenceOfInteger.cxx:
+
+ file SALOMEDSImpl_AttributeSequenceOfInteger.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:28:14 +0000
+
+2005-03-17 08:27 smh
+
+ * src/SALOMEDSClient/Makefile.in:
+
+ file Makefile.in was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-03-17 08:27 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx:
+
+ file SALOMEDSClient_GenericAttribute.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-03-17 08:27 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_SComponent.hxx:
+
+ file SALOMEDSClient_SComponent.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-03-17 08:27 smh
+
+ * src/SALOMEDSClient/SALOMEDSClient_SObject.hxx:
+
+ file SALOMEDSClient_SObject.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:24:41 +0000
+
+2005-03-17 08:26 srn
+
+ * src/: Makefile.in, SALOMEDSClient/Makefile.in,
+ SALOMEDSClient/SALOMEDSClient_GenericAttribute.hxx,
+ SALOMEDSClient/SALOMEDSClient_SComponent.hxx,
+ SALOMEDSClient/SALOMEDSClient_SObject.hxx:
+
+ Local Study
+
+2005-03-17 08:25 srn
+
+ * idl/: SALOMEDS.idl, SALOME_Component.idl:
+
+ Dump Python
+
+2005-03-16 08:03 ageay
+
+ * src/Utils/Utils_CorbaException.hxx:
+
+ Merge from branch CCRT_Port_V220.
+
+2005-03-16 08:00 ageay
+
+ * src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ContainerManagerServer.cxx, src/Makefile.in,
+ bin/runSalome.py, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx:
+
+ Merge from branch CCRT_Port_V220.
+
+2005-03-16 06:48 ageay
+
+ * bin/runSalome.py:
+
+ Merge from branch CCRT_Port_V220.
+
+2005-03-16 06:44 ageay
+
+ * src/: ResourcesManager/SALOME_ResourcesManager.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ Utils/Utils_CorbaException.hxx:
+
+ Merge from branch CCRT_Port_V220.
+
+2005-03-16 06:40 ageay
+
+ * src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ContainerManagerServer.cxx, src/Makefile.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cas.m4:
+
+ Merge from branch CCRT_Port_V220.
+
+2005-03-14 16:21 prascle
+
+ * salome_adm/unix/: make_commence.in, config_files/check_pyqt.m4,
+ config_files/check_qt.m4, config_files/check_sip.m4:
+
+ PR: SARGE port...
+
+2005-03-08 07:26 ageay
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ This servant must be invoked remotely sequentially to prevent that concurrent invocation of lcc.FindOrLoadComponent needed during containers launching corrupt data.
+
+2005-03-08 07:10 ageay
+
+ * src/Container/SALOME_ContainerManager.cxx:
+
+ This servant must be invoked remotely sequentially to prevent that concurrent invocation of lcc.FindOrLoadComponent needed during containers launching corrupt data.
+
+2005-03-07 13:10 prascle
+
+ * bin/orbmodule.py, bin/runSalome.py, bin/salomeConsole.py,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ src/Container/SALOME_Container.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Trace.cxx, src/Logger/SALOME_Trace.py,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Notification/NOTIFICATION.cxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMETraceCollector/TraceCollector_WaitForServerReadiness.cxx,
+ src/TestContainer/TestContainer.cxx:
+
+ port on debian sarge, first step
+
+2005-03-01 15:07 vsr
+
+ * resources/KERNELCatalog.xml:
+
+ Update version number : 2.2.1
+
+2005-03-01 15:02 vsr
+
+ * INSTALL, bin/VERSION:
+
+ Update version number : 2.2.1
+
+2005-02-28 16:14 san
+
+ * src/: Utils/Makefile.in, Utils/Utils_Mutex.cxx,
+ Utils/Utils_Mutex.hxx, SALOMEDS/Makefile.in,
+ SALOMEDS/SALOMEDS.cxx, SALOMEDS/SALOMEDS.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx:
+
+ PAL8065
+
+2005-02-28 16:07 san
+
+ * src/SALOMEDS/: Makefile.in, SALOMEDS.cxx, SALOMEDS.hxx,
+ SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeFileType_i.cxx, SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS_AttributeGraphic_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx:
+
+ PAL8065
+
+2005-02-28 16:07 smh
+
+ * src/SALOMEDS/SALOMEDS.cxx:
+
+ file SALOMEDS.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-02-28 16:07 smh
+
+ * src/SALOMEDS/SALOMEDS.hxx:
+
+ file SALOMEDS.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:39:14 +0000
+
+2005-02-28 16:03 san
+
+ * src/Utils/: Makefile.in, Utils_Mutex.cxx, Utils_Mutex.hxx:
+
+ PAL8065
+
+2005-02-28 16:03 smh
+
+ * src/Utils/Utils_Mutex.cxx:
+
+ file Utils_Mutex.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:42:22 +0000
+
+2005-02-28 16:03 smh
+
+ * src/Utils/Utils_Mutex.hxx:
+
+ file Utils_Mutex.hxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:42:22 +0000
+
+2005-02-25 15:41 ageay
+
+ * src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx:
+
+ [no log message]
+
+2005-02-25 15:38 ageay
+
+ * src/: ResourcesManager/SALOME_ResourcesManager.cxx,
+ Utils/Utils_CorbaException.hxx:
+
+ [no log message]
+
+2005-02-25 15:37 ageay
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx:
+
+ Useless includes of CASCADE includes.
+
+2005-02-25 15:37 ageay
+
+ * src/Makefile.in:
+
+ MEDWrapper added in withoutihm subdirs for MED module.
+
+2005-02-25 15:36 ageay
+
+ * src/Container/Container_i.cxx:
+
+ sizeof(CORBA::Long) != sizeof(long) sur le CCRT.
+
+2005-02-25 15:35 ageay
+
+ * src/Container/SALOME_ContainerManagerServer.cxx:
+
+ Server only present for ContainerManager servant.
+
+2005-02-25 15:34 ageay
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ NO_CXX_EXCEPTION flag deactivated on CCRT to be compatible with CASCADE includes.
+
+2005-02-25 15:33 ageay
+
+ * salome_adm/unix/make_commence.in, src/Container/Makefile.in:
+
+ [no log message]
+
+2005-02-25 15:32 ageay
+
+ * bin/runSalome.py:
+
+ Launch a server only for ContainerManager to launch on CCRT.
+
+2005-02-11 14:48 prascle
+
+ * src/LifeCycleCORBA/LifeCycleCORBA.py:
+
+ PR: from E.Adam, Engines import sometimes incomplete...
+
+2005-02-11 09:47 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: from A. Geay
+
+2005-02-10 16:44 dutka
+
+ * salome_adm/unix/config_files/install-sh:
+
+ IDM : Batch sur CCRT (Dev. A. Geay)
+
+2005-02-10 16:38 dutka
+
+ * configure.in.base, src/Makefile.in:
+
+ IDM : Batch sur CCRT
+
+2005-02-10 14:04 prascle
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ PR: add shutdown method (A. Geay)
+
+2005-02-10 14:02 prascle
+
+ * bin/orbmodule.py:
+
+ PR: wait a little more for slow systems
+
+2005-02-07 08:03 prascle
+
+ * src/Container/: Container_i.cxx, SALOME_Container.cxx,
+ SALOME_Container_i.hxx:
+
+ PR: Modif A.Geay, Shutdown container when servant alone
+
+2005-02-03 16:06 vsr
+
+ * resources/: Application-About.png, Application-Splash.png:
+
+ Improve SALOME images
+
+2005-02-03 13:50 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ sigaction was called with a mask of signals (SIGINT | SIGUSR1)
+ But sigaction must be called with only one signal code.
+ So there is one call for SIGINT and an other one for SIGUSR1
+
+2005-02-03 09:12 mpv
+
+ * src/SALOMEDS/: SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx:
+
+ MPV:
+ Fix for bug PAL7956:
+ Don not chechLock on CORBA attribute creation (without OCAF document modifications)
+
+2005-02-01 12:25 mpv
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ MPV:
+ Correct creation of the study file-paths for multi-file saving.
+ Fix for bug PAL7827
+
+2005-01-31 10:57 prascle
+
+ * src/LifeCycleCORBA/Launchers.py:
+
+ PR: traceback is confusing, replaced by a warning, because it's OK to continue
+
+2005-01-31 10:55 prascle
+
+ * bin/runSalome.py:
+
+ PR: bug 7930: to work with $KERNEL_ROOT_DIR/bin/salome/runSalome --interp=1
+
+2005-01-31 09:13 prascle
+
+ * src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx:
+
+ PR: from A. Geay, RedHat 9.0 compatibility
+
+2005-01-31 08:45 san
+
+ * bin/runSalome.py:
+
+ PAL7930
+
+2005-01-28 13:51 apo
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ [Bug PAL7900] g++ 3.3 compatibility
+ There are 3 other occurences of ::data_type in the same file.
+
+2005-01-28 10:54 prascle
+
+ * doc/salome/: kernel_resources.pdf, kernel_resources.ps:
+
+ PR: update documentation
+
+2005-01-28 06:49 apo
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ Fix on [Bug PAL7900] g++ 3.3 compatibility
+
+2005-01-27 20:35 prascle
+
+ * README, doc/configuration_examples/example_prerequis.sh:
+
+ PR: some more install documentation.
+
+2005-01-27 19:43 prascle
+
+ * idl/SALOME_MPIContainer.idl, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx:
+
+ PR: merge some files (MPI) from debug_V2_1_0a2
+
+2005-01-27 18:59 prascle
+
+ * README:
+
+ PR: a first README, to be completed
+
+2005-01-27 18:47 prascle
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ PR: merge from tag mergeto_HEAD_26Jan05
+
+2005-01-27 15:04 prascle
+
+ * Makefile.in, bin/envSalome.py, bin/launchConfigureParser.py,
+ bin/runSalome.py, bin/salomeConsole.py, idl/SALOME_Component.idl,
+ resources/KERNELCatalog.xml, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_sip.m4,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/Launchers.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Trace.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Utils/Utils_Identity.py:
+
+ PR: merge from tag mergeto_HEAD_25Jan05
+
+2005-01-27 12:37 apo
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ Fix on Bug PAL7838
+ STUD-006regress: The UseCase Browser contents isn't restored after "Save - Open"
+
+2005-01-27 07:45 apo
+
+ * src/SALOMEDS/: SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_StudyManager_i.cxx:
+
+ Fix on [Bug PAL7840] It's impossible to create a copy of imported .med file in the
+
+2005-01-26 12:17 mpv
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ MPV
+ Debug saving study:
+ SALOMEDS creates LifeCycleCORBA with not root ("/Study") current directory of naming context. Set it to "/" in LifeCycleCORBA constructor before "ContainerManager" usage.
+
+2005-01-26 07:47 prascle
+
+ * INSTALL, Makefile.in, bin/VERSION, bin/orbmodule.py,
+ bin/runSalome.py, doc/salome/tui/Makefile.in, idl/Makefile.in,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl,
+ resources/CatalogResources.xml, resources/KERNELCatalog.xml,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Registry/Makefile.in, src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMELocalTrace/Makefile.in, src/TestContainer/Makefile.in:
+
+ PR: merge from tag mergefrom_HEAD_24Jan05 + corrections
+
+2005-01-25 10:44 prascle
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ PR: patches from A.Geay
+
+2005-01-25 06:58 prascle
+
+ * src/: Container/Makefile.in, LifeCycleCORBA/Makefile.in,
+ ModuleCatalog/Makefile.in, Registry/Makefile.in,
+ SALOMEDS/Makefile.in, TestContainer/Makefile.in:
+
+ PR: binaries generation : remove duplicate rules
+
+2005-01-24 17:27 prascle
+
+ * salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, src/Container/Makefile.in,
+ src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
+ src/Registry/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/SALOMELocalTrace/Makefile.in, src/TestContainer/Makefile.in:
+
+ PR: modify makefiles to separate rules for libraries and binaries.
+
+2005-01-24 17:25 prascle
+
+ * src/LifeCycleCORBA/: SALOME_LifeCycleCORBA.cxx,
+ SALOME_LifeCycleCORBA.hxx:
+
+ PR: add FindContainer method for supervisor (non regression)
+
+2005-01-24 14:08 caremoli
+
+ * bin/envSalome.py, bin/salomeConsole.py,
+ resources/KERNELCatalog.xml, src/LifeCycleCORBA/Launchers.cxx,
+ src/LifeCycleCORBA/Launchers.hxx,
+ src/LifeCycleCORBA/Launchers.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx:
+
+ CCAR: Update of start container modifications.
+ Adding files forgotten in previous commit
+ Adding C++ functionnality (wrap of python module)
+
+2005-01-24 08:49 prascle
+
+ * bin/orbmodule.py, src/Container/SALOME_Container.cxx,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx:
+
+ PR: relax start timers everywhere to 40x500ms = 20s
+
+2005-01-24 07:26 prascle
+
+ * src/: LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ Container/SALOME_ContainerManager.cxx:
+
+ PR: debug for save study, filters not known components (Interface Applicative)
+
+2005-01-21 17:58 caremoli
+
+ * Makefile.in, bin/launchConfigureParser.py, bin/runSalome.py,
+ idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in, src/Utils/Utils_Identity.py:
+
+ CCAR: Modifications for container launching as is, ported from 2.1 to 2.2
+ Need other files not in CVS to work (work in progress).
+
+2005-01-21 15:09 caremoli
+
+ * salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ src/Logger/SALOME_Trace.hxx, src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ CCAR: Modifiactions to make KERNEL compile with g++ 3.3 (standard ISO)
+ and to make Salome able to use PyQt 3.11 (+sip 3.10.1) as a prerequisite.
+ Modification to check_boost is not mandatory
+ Modification to QAD_FileDlg.h is already in the main trunk.
+
+2005-01-21 15:05 prascle
+
+ * Makefile.in, bin/runSalome.py, doc/salome/tui/Makefile.in,
+ idl/Makefile.in, idl/SALOME_Component.idl,
+ idl/SALOME_ContainerManager.idl, resources/CatalogResources.xml,
+ src/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerManager.cxx,
+ src/Container/SALOME_ContainerManager.hxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ src/SALOMEDS/Makefile.in, src/TestContainer/Makefile.in:
+
+ PR: merge from tag mergeto_trunk_20Jan05
+
+2005-01-21 08:33 vsr
+
+ * bin/VERSION, INSTALL:
+
+ Modify the version number of SALOME: 2.2.0.
+
+2005-01-21 06:28 apo
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ Fix on [Bug PAL7750] Regression of UNDO in GEOM
+ The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
+ Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
+
+2005-01-20 15:25 prascle
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ PR: new design of salome.py (related to 7658 7659 ...)
+
+2005-01-20 15:10 vsr
+
+ * resources/KERNELCatalog.xml:
+
+ Modify the version number of SALOME: 2.2.0
+
+2005-01-20 15:10 apo
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ Fix on [Bug PAL7750] Regression of UNDO in GEOM
+ The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
+ Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
+
+2005-01-20 14:55 apo
+
+ * src/SALOMEDS/: SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_IORAttribute.cxx, SALOMEDS_IORAttribute.hxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx:
+
+ Fix on [Bug PAL7750] Regression of UNDO in GEOM
+ The regression was caused by last refactoring of SALOMEDS concerning improving memory menagement.
+ Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154))
+
+2005-01-20 13:46 ageay
+
+ * bin/runSalome.py:
+
+ [no log message]
+
+2005-01-20 12:53 ageay
+
+ * Makefile.in:
+
+ For Resource catalog
+
+2005-01-20 12:50 ageay
+
+ * resources/CatalogResources.xml:
+
+ Example of Resource catalog
+
+2005-01-20 12:32 ageay
+
+ * src/ResourcesManager/SALOME_ResourcesManager.cxx:
+
+ [no log message]
+
+2005-01-20 08:39 ageay
+
+ * src/Container/: SALOME_ContainerManagerServer.cxx,
+ Container_i.cxx, SALOME_Container.cxx,
+ SALOME_ContainerManager.cxx:
+
+ [no log message]
+
+2005-01-20 08:27 ageay
+
+ * src/LifeCycleCORBA/: LifeCycleCORBA.py,
+ SALOME_LifeCycleCORBA.cxx:
+
+ [no log message]
+
+2005-01-19 18:30 prascle
+
+ * src/Makefile.in:
+
+ PR: lib forgotten in case without ihm
+
+2005-01-19 07:57 prascle
+
+ * src/SALOMETraceCollector/: Makefile.in,
+ LocalTrace_WaitForServerReadiness.cxx,
+ LocalTrace_WaitForServerReadiness.hxx, SALOMETraceCollector.cxx,
+ SALOMETraceCollector.hxx,
+ TraceCollector_WaitForServerReadiness.cxx,
+ TraceCollector_WaitForServerReadiness.hxx:
+
+ PR: bug 7769 loader aborts when logger not found in naming service,
+ class renamed in coherence with library name.
+
+2005-01-19 07:25 prascle
+
+ * src/SALOMELocalTrace/: LocalTraceCollector.cxx,
+ LocalTraceCollector.hxx:
+
+ PR: add comments to differentiate LocalTraceCollector and SALOMETraceCollector
+
+2005-01-18 11:39 apo
+
+ * src/SALOMEDS/: SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS_UseCaseIterator_i.cxx:
+
+ Fix on [Bug PAL7023] Problem loading MED file with a large number of families (same as VISU6154)
+
+2005-01-17 17:36 ageay
+
+ * bin/runSalome.py:
+
+ [no log message]
+
+2005-01-17 17:31 ageay
+
+ * src/TestContainer/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/MPIContainer/MPIContainer_i.cxx, idl/Makefile.in,
+ idl/SALOME_Component.idl, idl/SALOME_ContainerManager.idl:
+
+ [no log message]
+
+2005-01-17 17:24 ageay
+
+ * src/: LifeCycleCORBA/LifeCycleCORBA.py,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ Container/Container_i.cxx, Container/Makefile.in,
+ Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerManager.cxx,
+ Container/SALOME_ContainerManager.hxx,
+ Container/SALOME_ContainerManagerServer.cxx,
+ Container/SALOME_Container_i.hxx, ResourcesManager/Makefile.in,
+ ResourcesManager/SALOME_LoadRateManager.cxx,
+ ResourcesManager/SALOME_LoadRateManager.hxx,
+ ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ ResourcesManager/SALOME_ResourcesManager.cxx,
+ ResourcesManager/SALOME_ResourcesManager.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx:
+
+ [no log message]
+
+2005-01-17 16:48 prascle
+
+ * src/Utils/Utils_CorbaException.hxx:
+
+ PR: merge from tag mergeto_trunk_18Jan05
+
+2005-01-17 16:18 prascle
+
+ * doc/salome/tui/Makefile.in, doc/salome/tui/pythfilter.py,
+ idl/SALOME_ModuleCatalog.idl, src/Container/Container_i.cxx,
+ src/HDFPersist/HDFexception.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx:
+
+ PR: merge from tag mergeto_trunk_17Jan05
+
+2005-01-17 14:24 prascle
+
+ * src/SALOMELocalTrace/: LocalTrace_WaitForServerReadiness.cxx,
+ LocalTrace_WaitForServerReadiness.hxx:
+
+ PR: merge from tag mergeto_trunk_16Jan05
+
+2005-01-17 14:21 prascle
+
+ * configure.in.base, bin/launchConfigureParser.py,
+ bin/runSalome.py, bin/salome.launch,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_lsf.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/utilities.h,
+ src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx:
+
+ PR: merge from tag mergeto_trunk_16Jan05
+
+2005-01-17 14:00 prascle
+
+ * src/SALOMELocalTrace/utilities.h:
+
+ PR: remove #include <strstream>, not used and deprecated
+
+2005-01-17 13:58 prascle
+
+ * src/Container/Component_i.cxx:
+
+ PR: add a #if defined __GNUC__ to use setenv or putenv.
+ todo: replace by an autoconf macro to check existence of setenv
+
+2005-01-14 08:32 jfa
+
+ * doc/salome/tui/Makefile.in:
+
+ PAL6952: Documentation of geompy.py. Provide presence of pythfilter.py in installed KERNEL, not only in build version.
+
+2005-01-13 15:30 dutka
+
+ * configure.in.base, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_lsf.m4:
+
+ Add LSF Batch Manager detection to configure.in
+
+2005-01-13 14:54 jfa
+
+ * doc/salome/tui/: Makefile.in, pythfilter.py:
+
+ PAL6952: Documentation of geompy.py. Add script for conversion of python files in format, suitable for Doxygen.
+
+2005-01-12 08:58 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ The variable k_setjmp was not resetted to false after the execution of a python function
+
+2005-01-10 11:03 prascle
+
+ * src/SALOMELocalTrace/LocalTraceCollector.cxx:
+
+ PR: remove include not needed
+
+2005-01-10 09:24 prascle
+
+ * salome_adm/unix/config_files/production.m4:
+
+ PR:bug 7656 correction from Alexey PETROV
+
+2005-01-09 19:44 prascle
+
+ * bin/launchConfigureParser.py, bin/runSalome.py,
+ bin/salome.launch, src/Makefile.in, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx,
+ src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx,
+ src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx,
+ src/SALOMETraceCollector/Makefile.in,
+ src/SALOMETraceCollector/SALOMETraceCollector.cxx,
+ src/SALOMETraceCollector/SALOMETraceCollector.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx:
+
+ PR: bugs 7433 (Splash) and 7435 (SALOMELocalTrace without CORBA), plus trace option in file:
+ M bin/launchConfigureParser.py
+ M bin/runSalome.py
+ M bin/salome.launch
+ M bin/salome/runIDLparser.in
+ M src/Makefile.in
+ M src/Container/Makefile.in
+ M src/Container/SALOME_Container.cxx
+ M src/DataTypeCatalog/Makefile.in
+ M src/DataTypeCatalog/SALOME_DataTypeCatalog_Server.cxx
+ M src/Loader/Makefile.in
+ M src/Loader/SALOME_Session_Loader.cxx
+ M src/ModuleCatalog/Makefile.in
+ M src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx
+ M src/Registry/Makefile.in
+ M src/Registry/SALOME_Registry_Server.cxx
+ M src/RessourcesCatalog/Makefile.in
+ M src/RessourcesCatalog/SALOME_RessourcesCatalog_Server.cxx
+ M src/SALOMELocalTrace/LocalTraceCollector.cxx
+ M src/SALOMELocalTrace/LocalTraceCollector.hxx
+ R src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx
+ R src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx
+ M src/SALOMELocalTrace/Makefile.in
+ A src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.cxx
+ A src/SALOMETraceCollector/LocalTrace_WaitForServerReadiness.hxx
+ A src/SALOMETraceCollector/Makefile.in
+ A src/SALOMETraceCollector/SALOMETraceCollector.cxx
+ A src/SALOMETraceCollector/SALOMETraceCollector.hxx
+ M src/Session/Makefile.in
+ M src/Session/SALOME_Session_Server.cxx
+ M src/TestContainer/Makefile.in
+ M src/TestContainer/TestContainer.cxx
+
+2005-01-07 16:32 ageay
+
+ * doc/salome/tui/Makefile.in:
+
+ For install on CCRT.
+
+2005-01-07 16:29 ageay
+
+ * src/: LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/Makefile.in, Container/SALOME_Component_i.hxx,
+ Container/SALOME_Container_i.hxx:
+
+ Draft
+
+2005-01-07 14:24 smh
+
+ * src/Container/SALOME_ContainerManagerServer.cxx:
+
+ file SALOME_ContainerManagerServer.cxx was added on branch BR_3_0_0_OCC on 2005-05-26 12:30:00 +0000
+
+2005-01-07 14:24 ageay
+
+ * src/Container/: SALOME_ContainerManager.cxx,
+ SALOME_ContainerManager.hxx, SALOME_ContainerManagerServer.cxx,
+ Makefile.in:
+
+ Draft
+
+2005-01-07 14:19 ageay
+
+ * src/Makefile.in:
+
+ Draft
+
+2005-01-07 14:16 ageay
+
+ * idl/SALOME_Component.idl:
+
+ Draft
+
+2005-01-07 14:12 ageay
+
+ * idl/Makefile.in:
+
+ Draft
+
+2005-01-07 14:09 ageay
+
+ * src/ResourcesManager/Makefile.in,
+ src/ResourcesManager/SALOME_LoadRateManager.cxx,
+ src/ResourcesManager/SALOME_LoadRateManager.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Handler.hxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.cxx,
+ src/ResourcesManager/SALOME_ResourcesCatalog_Parser.hxx,
+ src/ResourcesManager/SALOME_ResourcesManager.cxx,
+ src/ResourcesManager/SALOME_ResourcesManager.hxx,
+ idl/SALOME_ContainerManager.idl:
+
+ Draft
+
+2005-01-05 14:35 apo
+
+ * src/: SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_Server.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ HDFPersist/HDFexception.hxx, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx:
+
+ Connect to Bug PAL7023 - Problem loading MED file with a large number of families (same as VISU6154)
+
+2004-12-28 14:35 apo
+
+ * src/Utils/Utils_CorbaException.hxx:
+
+ [Bug PAL7252] DEVELOPMENT: Porting to MED2.2
+
+2004-12-22 12:19 cvsadmin
+
+ * src/Container/Container_i.cxx, idl/SALOME_ModuleCatalog.idl,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ Initial version of files for OCC developers
+
+2004-12-14 14:56 rahuel
+
+ * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
+
+ Debug for Python function execution (SuperVision)
+
+2004-12-10 11:04 rahuel
+
+ * src/Container/Component_i.cxx:
+
+ Void contructor initializations and traces
+
+2004-12-09 14:37 rahuel
+
+ * src/Container/Component_i.cxx:
+
+ Some debugs about pthread_cancel/Kill_impl() to reset correctly _ThreadId field in case of signal (SIGSEGV, etc...)
+
+2004-12-09 14:33 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ Some addtional comments
+
+2004-12-08 16:42 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ SIGSEGV, SIGFPE and SIGBUS are catched by the handler and the Container does not crash.
+
+2004-12-08 13:33 rahuel
+
+ * src/Container/SALOME_Container.cxx:
+
+ The main thread is now used for the execution of python functions. It is because of Python that allow signal handling only in the main thread. So the SuperVisionEngine may now Kill the execution of a python function.
+ Now the orb is runned in another thread started from the main thread.
+
+2004-12-08 13:30 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ New methods (and fileds) that allow the execution of python functions from the SuperVisionEngine in the main thread. It is because of Python that allow signal handling only in the main thread. See detailed comments in the source file.
+ Log files are now in /tmp/log/${USER}/ to avoid conflicts between several users.
+
+2004-12-08 13:26 rahuel
+
+ * src/Container/SALOME_Container_i.hxx:
+
+ New methods (and fileds) that allow the execution of python functions from the SuperVisionEngine in the main thread. It is because of Python that allow signal handling only in the main thread.
+
+2004-12-08 13:22 rahuel
+
+ * src/Container/Makefile.in:
+
+ CasCatch is no longer used. The previous signal handler in Container_i.cxx was disabled by that handler ===> Control of Execution of the SuperVisionEngine cannot run.
+ Now the signal handler become active again.
+
+2004-12-08 13:21 rahuel
+
+ * src/Container/SALOME_Container_SignalsHandler.cxx:
+
+ No longer used. The previous signal handler in Container_i.cxx was disabled by that handler ===> Control of Execution of the SuperVisionEngine cannot run.
+ Now the signal handler become active again.
+
+2004-12-08 13:17 rahuel
+
+ * src/Container/SALOME_Component_i.hxx:
+
+ New field (mutex) for management of Kill, Suspend, Resume and CpuUsed.
+
+2004-12-08 13:15 rahuel
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ Not implemented methods Kill, Suspend and Resume return zero.
+
+2004-12-08 13:13 rahuel
+
+ * src/Container/Component_i.cxx:
+
+ Several methods may be executed at the same time with the same object.
+ Kill, Suspend, Resume and CpuUsed may concern only one mthod of a Component of a Container. Associated datas are protected with a mutex in beginService.
+
+2004-12-03 14:32 secher
+
+ * idl/SALOME_Component.idl, idl/SALOME_MPIContainer.idl,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx:
+
+ [no log message]
+
+2004-11-29 17:15 prascle
+
+ * idl/: MPIContainer.idl, MPIObject.idl:
+
+ PR: remove files already removed from BR_CCRT2 branch
+
+2004-11-29 16:59 prascle
+
+ * build_configure, configure.in.base, bin/runSalome.py,
+ idl/SALOMEDS_Attributes.idl, resources/KERNELCatalog.xml,
+ salome_adm/unix/envScript.in, salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_withihm.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/HDFPersist/HDFconvert.cc, src/MPIContainer/Makefile.in,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleGenerator/testIDLparser.in, src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_SignalsHandler.cxx:
+
+ PR: merge from tag BR_CCRT2_mergeto_V2_1_0b1
+
+2004-11-29 16:27 prascle
+
+ * bin/runSalome.py:
+
+ PR: no args to killLocalPort(), allways used with args as global.
+
+2004-11-29 15:37 ageay
+
+ * bin/runSalome.py:
+
+ Merge with debug_V2_1_0a2
+
+2004-11-29 15:33 ageay
+
+ * src/Utils/: Utils_SignalsHandler.cxx, Utils_Identity.py:
+
+ [no log message]
+
+2004-11-26 13:54 ageay
+
+ * bin/runSalome.py:
+
+ Fix bug on killLocalPort when launching salome.
+
+2004-11-26 13:50 ageay
+
+ * src/: Communication/SALOME_Comm_i.cxx,
+ Communication/SALOME_Comm_i.hxx, HDFPersist/HDFconvert.cc,
+ MPIContainer/Makefile.in:
+
+ Porting on CCRT.
+
+2004-11-26 13:47 ageay
+
+ * src/: SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx, ModuleCatalog/Makefile.in:
+
+ Porting on CCRT.
+
+2004-11-26 13:44 ageay
+
+ * src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx:
+
+ Porting on CCRT
+
+2004-11-26 13:41 ageay
+
+ * src/: Utils/Utils_Identity.py, TestMPIContainer/Makefile.in,
+ SALOMEDS/Makefile.in:
+
+ Porting on CCRT
+
+2004-11-26 13:40 ageay
+
+ * src/Utils/Utils_Identity.cxx:
+
+ Porting on CCRT and memory violation bug fix.
+
+2004-11-26 13:38 ageay
+
+ * src/TestContainer/TestContainer.cxx:
+
+ Merge from debugV2_1_0a2
+
+2004-11-26 13:37 ageay
+
+ * src/: TestContainer/SALOME_TestComponent_i.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ Porting on CCRT
+
+2004-11-26 13:30 ageay
+
+ * src/ModuleGenerator/testIDLparser.in:
+
+ Porting on CCRT:
+
+2004-11-26 13:28 ageay
+
+ * src/Container/SALOME_Container_SignalsHandler.cxx:
+
+ Porting on CCRT:
+ For CCRT needs the system signals are not catched yet.
+
+2004-11-26 13:26 ageay
+
+ * src/Container/: Component_i.cxx, Container_i.cxx, Makefile.in,
+ SALOME_Component_i.hxx, SALOME_Container_i.hxx:
+
+ Porting on CCRT:
+
+2004-11-26 13:21 ageay
+
+ * salome_adm/unix/config_files/check_withihm.m4:
+
+ Porting on CCRT:
+
+2004-11-26 13:19 ageay
+
+ * salome_adm/unix/make_conclude.in:
+
+ Porting on CCRT : adding option CPPFLAG needed.
+
+2004-11-26 13:17 ageay
+
+ * build_configure, salome_adm/unix/envScript.in,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_med2.m4:
+
+ Porting on CCRT
+
+2004-11-26 13:16 ageay
+
+ * configure.in.base:
+
+ Porting on CCRT :
+ Adding gui presence handling.
+
+2004-11-26 13:14 ageay
+
+ * src/Makefile.in:
+
+ Porting on CCRT :
+ set subdirs taking account gui/no gui
+
+2004-11-26 08:27 secher
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ debug template option variable
+
+2004-11-25 13:11 prascle
+
+ * src/Utils/Utils_SignalsHandler.cxx:
+
+ PR: change comment
+
+2004-11-24 12:50 secher
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ compilation option for template recursion
+
+2004-11-22 11:07 secher
+
+ * src/TestContainer/TestContainer.cxx:
+
+ take account of trace modification
+
+2004-11-22 10:49 prascle
+
+ * bin/runSalome.py:
+
+ PR: problem when runSalome.py is used without args.
+ There is still a problem on killSalome whith --xterm: not solved.
+
+2004-11-19 10:44 ageay
+
+ * configure.in.base,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/production.m4, idl/MPIContainer.idl,
+ idl/MPIObject.idl:
+
+ [no log message]
+
+2004-11-19 10:23 ageay
+
+ * src/: SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx:
+
+ [no log message]
+
+2004-11-19 08:50 ageay
+
+ * idl/SALOMEDS_Attributes.idl, resources/KERNELCatalog.xml,
+ src/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx:
+
+ [no log message]
+
+2004-11-17 07:48 cvsadmin
+
+ * src/Makefile.in, idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFlags_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeGraphic_i.hxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_FlagsAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GraphicAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ resources/KERNELCatalog.xml:
+
+ Merge with PAL/SALOME 2.1.0d
+
+2004-11-16 10:14 secher
+
+ * salome_adm/unix/config_files/check_qt.m4:
+
+ portage alpha/osf1
+
+2004-11-16 09:47 secher
+
+ * idl/: MPIContainer.idl, MPIObject.idl:
+
+ suppression de fichiers inutiles
+
+2004-11-16 09:19 secher
+
+ * configure.in.base,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/check_boost.m4:
+
+ portage boost sur alpha/osf
+
+2004-11-15 13:13 secher
+
+ * salome_adm/unix/config_files/: ac_cxx_warnings.m4, production.m4:
+
+ rationalisation des contrôles des options du compilateurs c++
+
+2004-11-12 14:05 prascle
+
+ * bin/runSalome.py, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_ContainerPy.py,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/TestContainer/TestComponentPy.py,
+ src/Utils/Utils_Identity.py:
+
+ PR: new python function getShortHostName() in Utils_Identity.py, based on socket.gethotname(), to avoid use of HOSTNAME variable, not allways defined.
+
+ bin/runSalome.py
+ src/Container/SALOME_ComponentPy.py
+ src/Container/SALOME_ContainerPy.py
+ src/LifeCycleCORBA/LifeCycleCORBA.py
+ src/MPILifeCycleCORBA/MPILifeCycleCORBA.py
+ src/TestContainer/TestComponentPy.py
+ src/Utils/Utils_Identity.py
+
+2004-11-12 08:27 prascle
+
+ * configure.in.base, idl/Makefile.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.in,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/Receivers.cxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFdataset.cc,
+ src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFobject.cc, src/HDFPersist/test3.cxx,
+ src/HDFPersist/test4.cxx, src/HDFPersist/test5.cxx,
+ src/HDFPersist/test6.cxx, src/HDFPersist/test7.cxx,
+ src/HDFPersist/test8.cxx, src/HDFPersist/test9.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/utilities.h, src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SignalsHandler.cxx, src/Utils/Utils_Timer.cxx:
+
+ PR: mergefrom_BR_CCRT_11Nov04
+
+2004-11-10 20:07 prascle
+
+ * configure.in.base, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cas.m4:
+
+ PR: portage CCRT - ajustements sur RedHat8: minimisation ecart du au portage sur makefiles generes
+
+2004-11-10 13:33 secher
+
+ * salome_adm/unix/config_files/: ac_cxx_option.m4, check_lam.m4,
+ check_mpi.m4, check_mpich.m4:
+
+ merge from V1_2_4_with_MPI pour portage CCRT
+
+2004-11-10 12:53 secher
+
+ * configure.in.base, idl/Makefile.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.in,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_SignalsHandler.cxx, src/Utils/Utils_Timer.cxx:
+
+ merge from V1_2_4_with_MPI pour portage CCRT
+
+2004-11-09 09:55 rahuel
+
+ * bin/: orbmodule.py, runSalome.py:
+
+ Restore without ContainersManager and portability Alpha_OSF(CCRT)
+
+2004-11-08 21:28 prascle
+
+ * src/: Communication/MultiCommException.cxx,
+ Communication/MultiCommException.hxx, Communication/Receiver.cxx,
+ Communication/ReceiverFactory.cxx, Communication/Receivers.cxx,
+ Communication/SALOMEMultiComm.cxx,
+ Communication/SALOME_Comm_i.cxx, Communication/SALOME_Comm_i.hxx,
+ Communication/SenderFactory.cxx, Container/Component_i.cxx,
+ Container/SALOME_Container.cxx,
+ Container/SALOME_Container_SignalsHandler.cxx,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFattribute.cc,
+ HDFPersist/HDFcontainerObject.cc, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFdataset.cc, HDFPersist/HDFexplorer.cc,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFinternalObject.cc, HDFPersist/HDFobject.cc,
+ HDFPersist/test3.cxx, HDFPersist/test4.cxx, HDFPersist/test5.cxx,
+ HDFPersist/test6.cxx, HDFPersist/test7.cxx, HDFPersist/test8.cxx,
+ HDFPersist/test9.cxx, LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NamingService/ServiceUnreachable.cxx,
+ Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/utilities.h, TOOLSDS/SALOMEDS_Tool.cxx,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/TestLogger.cxx,
+ TestMPIContainer/TestMPIContainer.cxx,
+ Utils/Utils_CommException.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SignalsHandler.cxx, Utils/Utils_Timer.cxx:
+
+ PR: portage CCRT, suppression -using namespace std- des includes, report instruction apres includes, dans les cxx
+
+2004-11-08 16:27 rahuel
+
+ * src/SALOMEDS/Makefile.in:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 16:23 rahuel
+
+ * bin/: orbmodule.py, runSalome.py:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 16:07 rahuel
+
+ * src/TestContainer/: TestContainer.cxx:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 14:09 rahuel
+
+ * bin/runNS.sh:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 13:29 rahuel
+
+ * src/LifeCycleCORBA/Makefile.in:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 13:12 rahuel
+
+ * idl/SALOME_Component.idl:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 13:08 rahuel
+
+ * src/Container/SALOME_ContainerPy.py:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 12:59 rahuel
+
+ * src/Container/Container_i.cxx:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 12:51 rahuel
+
+ * src/Container/: Container_i.cxx, SALOME_Container_i.hxx:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 10:29 rahuel
+
+ * bin/startContainer.py, bin/runSalome.py,
+ idl/ContainersManager.idl, idl/ResourcesManager.idl,
+ idl/Makefile.in, Makefile.in:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 10:21 rahuel
+
+ * bin/: killSalome.py, orbmodule.py, runNS.sh, runSalome.py:
+
+ Restore without ContainersManager & ContainersManager
+
+2004-11-08 09:27 rahuel
+
+ * src/: LifeCycleCORBA/LifeCycleCORBA.py,
+ LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx, TestContainer/Makefile.in,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx:
+
+ Restore previous state without ContainersManager & ContainersManager
+
+2004-11-08 09:11 rahuel
+
+ * src/Makefile.in:
+
+ Restore previous state without ContainersManager & ContainersManager
+
+2004-11-08 09:08 rahuel
+
+ * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
+ ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
+ ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
+ ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
+ ResourcesManager_Server.cxx:
+
+ Restore previous state without ResourcesManager
+
+2004-11-05 18:54 prascle
+
+ * src/: SALOMELocalTrace/SALOME_Log.cxx,
+ SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
+
+ PR: corrections residuelles des anomalies du merge cvs
+
+2004-11-05 16:54 prascle
+
+ * bin/runSalome.py, src/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/Makefile.in,
+ src/NamingService/NamingService_WaitForServerReadiness.cxx,
+ src/NamingService/NamingService_WaitForServerReadiness.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ src/SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ src/SALOMELocalTrace/LocalTraceCollector.cxx,
+ src/SALOMELocalTrace/LocalTraceCollector.hxx,
+ src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.cxx,
+ src/SALOMELocalTrace/LocalTrace_WaitForServerReadiness.hxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/utilities.h, src/Utils/Makefile.in,
+ src/Utils/duplicate.cxx:
+
+ PR: mergefrom_PRAS_br3_06Nov04
+
+2004-11-05 16:21 prascle
+
+ * src/: SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
+ Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h:
+
+ PR: merge from trunk tag mergeto_PRAS_br3_05Nov04
+
+2004-11-05 16:17 prascle
+
+ * INSTALL, Makefile.in, build_configure, configure.in.base,
+ make_config.in, bin/VERSION, bin/launchConfigureParser.py,
+ bin/runSalome, bin/runSalome.csh, bin/runSalome.py,
+ bin/salome.launch, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOME_Comm.idl, idl/SALOME_Session.idl,
+ salome_adm/Makefile.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_sockets.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Communication/Makefile.in,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx:
+
+ PR: merge from trunk tag mergeto_PRAS_br3_05Nov04
+
+2004-11-05 15:38 rahuel
+
+ * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
+ ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
+ ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
+ ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
+ ResourcesManager_Server.cxx:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-05 13:56 prascle
+
+ * configure.in.base, idl/Makefile.in, idl/SALOME_Comm.idl,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_sockets.m4, src/Makefile.in,
+ src/Communication/Makefile.in,
+ src/Communication/MultiCommException.cxx,
+ src/Communication/MultiCommException.hxx,
+ src/Communication/Receiver.cxx, src/Communication/Receiver.hxx,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/ReceiverFactory.hxx,
+ src/Communication/Receivers.cxx, src/Communication/Receivers.hxx,
+ src/Communication/SALOMEMultiComm.cxx,
+ src/Communication/SALOMEMultiComm.hxx,
+ src/Communication/SALOME_Comm_i.cxx,
+ src/Communication/SALOME_Comm_i.hxx,
+ src/Communication/SenderFactory.cxx,
+ src/Communication/SenderFactory.hxx, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in:
+
+ PR: mergefrom_BR_GEAY_05Nov04
+
+2004-11-05 13:02 prascle
+
+ * INSTALL, Makefile.in, build_configure, configure.in.base,
+ make_config.in, bin/VERSION, bin/launchConfigureParser.py,
+ bin/runSalome, bin/runSalome.csh, bin/runSalome.py,
+ bin/salome.launch, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOME_Session.idl, salome_adm/Makefile.in,
+ salome_adm/unix/config.h.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_openpbs.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx, src/Utils/utilities.h:
+
+ PR: merge from trunk tag mergeto_BR_GEAY_04Nov04
+
+2004-11-05 09:57 rahuel
+
+ * src/Utils/Utils_Identity.py:
+
+ Portability Alpha_OSF :
+ HOST environment variable instead of HOSTNAME
+
+2004-11-05 09:55 rahuel
+
+ * src/Utils/Utils_Identity.cxx:
+
+ Portability Alpha_OSF :
+ Memory corruption
+
+2004-11-05 09:53 rahuel
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ Portability Alpha_OSF :
+ MESSAGE ===> SEGV in constructor of the static
+ Now "new list<DESTRUCTEUR_GENERIQUE_*> " is done by the first call to Ajout
+
+2004-11-05 09:46 rahuel
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx:
+
+ MESSAGE
+
+2004-11-05 09:44 rahuel
+
+ * src/TestContainer/: TestComponentPy.py, TestContainer.cxx:
+
+ ContainersManager
+
+2004-11-05 09:42 rahuel
+
+ * src/TestContainer/SALOME_TestComponentPy.py:
+
+ Trace
+
+2004-11-05 09:39 rahuel
+
+ * src/TestContainer/Makefile.in:
+
+ ContainersManager
+
+2004-11-05 09:30 rahuel
+
+ * src/SALOMELocalTrace/SALOME_Log.cxx:
+
+ Portability Alpha_OSF(CCRT) : SEGV
+
+2004-11-05 09:25 rahuel
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-05 08:52 rahuel
+
+ * src/SALOMEDS/Makefile.in:
+
+ ContainersManager
+
+2004-11-05 08:43 rahuel
+
+ * src/NamingService/SALOME_NamingServicePy.py:
+
+ ContainersManager : Unbind
+
+2004-11-05 08:39 rahuel
+
+ * src/ModuleGenerator/testIDLparser.in:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-05 08:35 rahuel
+
+ * src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
+
+ ContainersManager
+
+2004-11-05 08:32 rahuel
+
+ * src/LifeCycleCORBA/: LifeCycleCORBA.py, Makefile.in,
+ SALOME_LifeCycleCORBA.cxx, SALOME_LifeCycleCORBA.hxx:
+
+ ContainersManager
+
+2004-11-05 08:27 rahuel
+
+ * src/Container/: SALOME_ContainerPy.py, SALOME_Container_i.hxx:
+
+ ContainersManager
+
+2004-11-05 08:24 rahuel
+
+ * src/Container/SALOME_Container.cxx:
+
+ MESSAGEs
+
+2004-11-05 08:23 rahuel
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ Portability Alpha_OSF(CCRT) + ContainersManager + Missing code <--> C++
+
+2004-11-05 08:18 rahuel
+
+ * src/Container/: Component_i.cxx, Container_i.cxx:
+
+ ContainersManager
+
+2004-11-05 08:15 rahuel
+
+ * src/Makefile.in:
+
+ --without-ihm (default with-ihm)
+
+2004-11-05 08:13 rahuel
+
+ * salome_adm/unix/config_files/check_withihm.m4:
+
+ Portability Alpha_OSF(CCRT) + --without-ihm (default --with-ihm)
+
+2004-11-05 08:06 rahuel
+
+ * salome_adm/unix/config_files/check_med2.m4:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-04 16:18 rahuel
+
+ * salome_adm/unix/config_files/check_Kernel.m4:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-04 16:15 rahuel
+
+ * salome_adm/unix/make_conclude.in:
+
+ Portability Alpha_OSF(CCRT)
+
+2004-11-04 16:14 rahuel
+
+ * salome_adm/unix/envScript.in:
+
+ Portability Alpha_OSF(CCRT) : export syntax
+ MICORC=/dev/null
+ export MICORC
+ instead of export MICORC=/dev/null
+
+2004-11-04 16:10 rahuel
+
+ * resources/ResourcesCatalog.xml:
+
+ ResourcesManager : Catalog of Computers
+
+2004-11-04 16:08 rahuel
+
+ * idl/: ContainersManager.idl, Makefile.in, ResourcesManager.idl,
+ SALOME_Component.idl:
+
+ ContainersManager/ResourcesManager
+
+2004-11-04 16:06 rahuel
+
+ * bin/: killSalome.py, orbmodule.py, runSalome.py,
+ startContainer.py:
+
+ ContainersManager/ResourcesManager
+ Portability on Alpha_OSF(CCRT)
+
+2004-11-04 15:42 rahuel
+
+ * configure.in.base:
+
+ new option --without-ihm. Default is with-ihm
+
+2004-11-04 15:41 rahuel
+
+ * build_configure:
+
+ Portability on Alpha-OSF(CCRT)
+
+2004-11-04 15:39 rahuel
+
+ * Makefile.in:
+
+ ResourcesCatalog.xml and StartContainer.py added
+
+2004-10-25 16:40 prascle
+
+ * salome_adm/unix/config_files/check_boost.m4:
+
+ PR: keep previous definition of BOOSTDIR for compatibility
+
+2004-10-22 16:09 prascle
+
+ * configure.in.base, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_boost.m4,
+ salome_adm/unix/config_files/check_openpbs.m4, src/Makefile.in:
+
+ PR: mergefrom_BR_BATCH_22Oct04
+
+2004-10-22 15:11 prascle
+
+ * INSTALL, Makefile.in, build_configure, make_config.in,
+ bin/VERSION, bin/launchConfigureParser.py, bin/runSalome,
+ bin/runSalome.csh, bin/runSalome.py, bin/salome.launch,
+ idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOME_Session.idl,
+ salome_adm/Makefile.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx, src/Utils/utilities.h:
+
+ PR: merge from trunk tag mergeto_BR_BACH_21Oct04
+
+2004-10-22 14:36 prascle
+
+ * src/: SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
+ Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h:
+
+ PR: manual correction while merge PAL_OCC to HEAD
+
+2004-10-22 14:21 secher
+
+ * idl/SALOME_Session.idl:
+
+ file SALOME_Session.idl was added on branch BR_V300_lcrm on 2005-07-19 09:01:58 +0000
+
+2004-10-22 14:21 prascle
+
+ * INSTALL, Makefile.in, build_configure, make_config.in,
+ bin/VERSION, bin/launchConfigureParser.py, bin/runSalome,
+ bin/runSalome.csh, bin/runSalome.py, bin/salome.launch,
+ idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOME_Session.idl,
+ salome_adm/Makefile.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFexception.hxx, src/Logger/SALOME_Trace.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx, src/Utils/utilities.h:
+
+ PR: mergefrom_PAL_OCC_21Oct04
+
+2004-10-20 14:16 prascle
+
+ * src/: Container/SALOME_Container.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ Registry/SALOME_Registry_Server.cxx:
+
+ PR: Multithreaded traces, part 2 - with logger : orb as parameter of thread in charge of collecting traces in each server (to send trace to CORBA logger server)
+
+2004-10-20 14:12 prascle
+
+ * bin/runSalome.py:
+
+ PR: Complete restructuration to allow to call SALOME services from other applications. Designed to stay compatible with V2_0_0.
+
+2004-10-20 14:07 prascle
+
+ * src/NamingService/: Makefile.in,
+ NamingService_WaitForServerReadiness.cxx,
+ NamingService_WaitForServerReadiness.hxx:
+
+ PR: Move function WaitForServerReadiness from Session/SessionServerThread to NamingService/NamingService_WaitForServerReadiness: usage no more restricted to Session
+
+2004-10-20 13:57 prascle
+
+ * src/SALOMELocalTrace/: LocalTraceBufferPool.cxx,
+ LocalTraceCollector.cxx, LocalTraceCollector.hxx,
+ LocalTrace_WaitForServerReadiness.cxx,
+ LocalTrace_WaitForServerReadiness.hxx, Makefile.in,
+ SALOME_Log.cxx, SALOME_Log.hxx:
+
+ PR: Multithreaded trace, part 2 - with logger
+
+2004-10-19 13:29 smh
+
+ * Makefile.in, build_configure, make_config.in,
+ salome_adm/Makefile.in, salome_adm/unix/config.h.in,
+ salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/make_omniorb.in,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_SignalsHandler.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/Makefile.in,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/Makefile.in, src/Logger/SALOME_Trace.hxx,
+ src/MPIContainer/Makefile.in, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/Makefile.in,
+ src/NOTIFICATION_SWIG/Makefile.in, src/NamingService/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/Makefile.in,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx, src/TOOLSDS/SALOMEDS_Tool.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx, bin/VERSION,
+ bin/launchConfigureParser.py, bin/runSalome, bin/runSalome.csh,
+ bin/runSalome.py, bin/salome.launch, doc/Makefile.in,
+ doc/salome/Makefile.in, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_DataTypeCatalog.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_CatchSignals.cxx, src/Utils/Utils_CatchSignals.h,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_ExceptHandlers.cxx,
+ src/Utils/Utils_ExceptHandlers.hxx, src/Utils/Utils_Identity.cxx,
+ src/Utils/Utils_Identity.hxx, src/Utils/Utils_Identity.py,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx,
+ src/Utils/Utils_SignalsHandler.cxx,
+ src/Utils/Utils_SignalsHandler.h, src/Utils/Utils_Timer.cxx,
+ src/Utils/duplicate.cxx, src/Utils/utilities.h:
+
+ Integration of PAL/SALOME V2.1.0c from OCC
+
+2004-10-19 13:26 smh
+
+ * INSTALL:
+
+ Integration of PAL/SALOME V2.1.0c from OCC
+
+2004-10-07 09:40 dutka
+
+ * src/Makefile.in:
+
+ Bibliothèque de classes Batch (new)
+
+2004-10-07 09:21 dutka
+
+ * salome_adm/unix/: config_files/check_openpbs.m4,
+ config_files/check_boost.m4, make_commence.in:
+
+ Bibliothèque de classes Batch (new)
+
+2004-10-07 09:17 dutka
+
+ * configure.in.base:
+
+ Modification de l'option de install (-C -> -c)
+
+2004-10-05 20:36 prascle
+
+ * src/SALOMELocalTrace/: LocalTraceBufferPool.cxx,
+ LocalTraceBufferPool.hxx, LocalTraceCollector.cxx,
+ LocalTraceCollector.hxx:
+
+ PR: thread safe singleton
+
+2004-09-29 07:55 prascle
+
+ * src/: Makefile.in, Container/SALOME_Container.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ Registry/SALOME_Registry_Server.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.cxx,
+ SALOMELocalTrace/LocalTraceBufferPool.hxx,
+ SALOMELocalTrace/LocalTraceCollector.cxx,
+ SALOMELocalTrace/LocalTraceCollector.hxx,
+ SALOMELocalTrace/Makefile.in, SALOMELocalTrace/utilities.h,
+ Utils/Makefile.in, Utils/duplicate.cxx, Utils/utilities.h:
+
+ PR: multithreaded trace, part 1 (without logger)
+
+2004-09-24 13:42 ageay
+
+ * salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4, configure.in.base:
+
+ [no log message]
+
+2004-09-22 15:04 ageay
+
+ * src/Communication/: ReceiverFactory.cxx, Receivers.cxx,
+ Receivers.hxx, SALOME_Comm_i.cxx:
+
+ ajout du codage standard xdr avec les sockets.
+
+2004-09-22 14:57 ageay
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ [no log message]
+
+2004-09-17 15:32 ageay
+
+ * salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_lam.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIObject_i.cxx, src/MPIContainer/Makefile.in:
+
+ [no log message]
+
+2004-09-17 15:29 ageay
+
+ * src/Makefile.in, src/Communication/Makefile.in,
+ src/Communication/ReceiverFactory.cxx,
+ src/Communication/SenderFactory.cxx, src/Container/Makefile.in,
+ configure.in.base:
+
+ [no log message]
+
+2004-09-03 14:13 ageay
+
+ * salome_adm/unix/make_commence.in:
+
+ [no log message]
+
+2004-09-03 14:09 ageay
+
+ * src/Container/Makefile.in, src/Communication/Makefile.in,
+ configure.in.base:
+
+ [no log message]
+
+2004-08-19 13:09 ageay
+
+ * src/Communication/: Makefile.in, MultiCommException.cxx,
+ MultiCommException.hxx, Receiver.cxx, Receiver.hxx,
+ ReceiverFactory.cxx, ReceiverFactory.hxx, Receivers.cxx,
+ Receivers.hxx, SALOMEMultiComm.cxx, SALOMEMultiComm.hxx,
+ SALOME_Comm_i.cxx, SALOME_Comm_i.hxx, SenderFactory.cxx,
+ SenderFactory.hxx:
+
+ [no log message]
+
+2004-08-19 13:07 ageay
+
+ * src/Container/SALOME_Container.cxx:
+
+ If MPI2 is available container launches MPI_Init et MPI_Finalize for the future use of MPI methods.
+
+2004-08-19 13:04 ageay
+
+ * src/Makefile.in:
+
+ Directory Communication added.
+
+2004-08-19 11:07 ageay
+
+ * salome_adm/unix/config_files/check_sockets.m4:
+
+ Check if sockets can been used to transmit data between processes. Used by src/Communication.
+
+2004-08-19 11:04 ageay
+
+ * salome_adm/unix/config_files/check_omniorb.m4:
+
+ Check the compatibility between double CORBA::Double et int CORBA::Long for transfert optimization in src/Communication.
+
+2004-08-19 11:03 ageay
+
+ * salome_adm/unix/config_files/check_lam.m4:
+
+ Check the MPI2 functions in lam_mpi.
+
+2004-08-19 10:55 ageay
+
+ * idl/Makefile.in:
+
+ Addition of SALOME_Comm.idl
+
+2004-08-19 10:54 ageay
+
+ * idl/SALOME_Comm.idl:
+
+ New interface for senders used by src/Communication.
+
+2004-08-19 10:53 ageay
+
+ * configure.in.base:
+
+ Check LAM and check SOCKET have been added for src/Communication.
+
+2004-07-20 11:36 yfr
+
+ * bin/: runSalome.csh, salome.launch:
+
+ DCQ:prepare 2.0.0
+
+2004-07-20 09:26 yfr
+
+ * bin/runSalome.py:
+
+ DCQ:prepare 2.0.0
+
+2004-07-19 13:15 yfr
+
+ * src/: Makefile.in, TestContainer/Makefile.in,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestMPIContainer/Makefile.in,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.in,
+ Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils/Utils_Identity.cxx,
+ Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
+ Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/duplicate.cxx, Utils/utilities.h:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 13:12 yfr
+
+ * src/SALOMELocalTrace/: Makefile.in, SALOME_Log.cxx,
+ SALOME_Log.hxx:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 12:59 yfr
+
+ * src/SALOMEDS/:
+ Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ Handle_SALOMEDS_DrawableAttribute.hxx,
+ Handle_SALOMEDS_ExpandableAttribute.hxx,
+ Handle_SALOMEDS_IORAttribute.hxx,
+ Handle_SALOMEDS_LocalIDAttribute.hxx,
+ Handle_SALOMEDS_OCAFApplication.hxx,
+ Handle_SALOMEDS_OpenedAttribute.hxx,
+ Handle_SALOMEDS_PersRefAttribute.hxx,
+ Handle_SALOMEDS_PixMapAttribute.hxx,
+ Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ Handle_SALOMEDS_SelectableAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ Handle_SALOMEDS_TargetAttribute.hxx,
+ Handle_SALOMEDS_TextColorAttribute.hxx,
+ Handle_SALOMEDS_TextHighlightColorAttribute.hxx, Makefile.in,
+ README_attributes, SALOMEDS_AttLong_i.cxx,
+ SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
+ SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeIOR_i.hxx, SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS_Client.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS_FileType.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IORAttribute.cxx,
+ SALOMEDS_IORAttribute.hxx, SALOMEDS_IORAttribute.ixx,
+ SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS_LocalIDAttribute.ixx, SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS_OCAFApplication.ixx, SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS_PersRefAttribute.hxx, SALOMEDS_PersRefAttribute.ixx,
+ SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS_PixMapAttribute.ixx, SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS_PythonObjectAttribute.jxx, SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SComponent_i.hxx, SALOMEDS_SObject_i.cxx,
+ SALOMEDS_SObject_i.hxx, SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS_SequenceOfRealAttribute.jxx, SALOMEDS_Server.cxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS_TableOfRealAttribute.jxx, SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS_TargetAttribute.hxx, SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS_TargetAttribute.jxx, SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS_TextColorAttribute.hxx, SALOMEDS_TextColorAttribute.ixx,
+ SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS_TextHighlightColorAttribute.ixx,
+ Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.jxx:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 12:55 yfr
+
+ * src/Registry/: Makefile.in, RegistryConnexion.cxx,
+ RegistryConnexion.hxx, RegistryService.cxx, RegistryService.hxx,
+ SALOME_Registry_Server.cxx:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:55 yfr
+
+ * src/: ModuleCatalog/Makefile.in, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleGenerator/Makefile.in, NOTIFICATION_SWIG/Makefile.in,
+ NamingService/Makefile.in,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/ServiceUnreachable.hxx, Notification/Makefile.in:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:52 yfr
+
+ * src/: HDFPersist/Makefile.in, LifeCycleCORBA/LifeCycleCORBA.py,
+ LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
+ MPIContainer/Makefile.in:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:48 yfr
+
+ * idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/SALOME_TestMPIComponent.idl,
+ salome_adm/Makefile.in, salome_adm/unix/make_conclude.in,
+ salome_adm/unix/make_omniorb.in,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:32 yfr
+
+ * doc/salome/: Makefile.in, OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:13 yfr
+
+ * doc/: DevelopersGuide.pdf, DevelopersGuide.ps, Makefile.in,
+ Utilitaires_SALOME.doc, Utilitaires_SALOME.pdf,
+ Utilitaires_SALOME.ps, kernel_resources.pdf, kernel_resources.ps:
+
+ DCQ: prepare V2.0.0
+
+2004-07-19 11:10 yfr
+
+ * INSTALL, Makefile.in, build_configure, configure.in.base,
+ bin/launchConfigureParser.py, bin/runIDLparser.in,
+ bin/runSalome.csh, bin/runSalome.py, bin/salome.launch:
+
+ DCQ: prepare V2.0.0
+
+2004-07-01 14:02 yfr
+
+ * bin/: runSalome.csh, salome.launch:
+
+ DCQ : Add DATA during SALOME launch.
+
+2004-06-28 12:09 yfr
+
+ * doc/salome/: OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
+
+ DCQ : Remove PAL files.
+
+2004-06-28 10:50 yfr
+
+ * doc/: OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
+
+ DCQ : Remove PAL files.
+
+2004-06-17 17:25 yfr
+
+ * doc/salome/tui/Makefile.in:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 17:12 yfr
+
+ * doc/salome/gui/Makefile.in:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 17:07 yfr
+
+ * doc/salome/: DevelopersGuide.pdf, DevelopersGuide.ps,
+ KERNEL_index.html, Makefile.in, OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw,
+ Utilitaires_SALOME.doc, Utilitaires_SALOME.pdf,
+ Utilitaires_SALOME.ps, kernel_resources.pdf, kernel_resources.ps:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 15:44 yfr
+
+ * doc/Makefile.in:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 14:08 yfr
+
+ * salome_adm/unix/config_files/: ac_cxx_bool.m4,
+ ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4, ac_cxx_mutable.m4,
+ ac_cxx_namespaces.m4, ac_cxx_partial_specialization.m4,
+ ac_cxx_typename.m4, check_pthreads.m4, enable_pthreads.m4,
+ mkinstalldirs, production.m4:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 13:16 yfr
+
+ * src/: TestContainer/Makefile.in,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ TestMPIContainer/Makefile.in,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx, Utils/Makefile.in,
+ Utils/Utils_CatchSignals.cxx, Utils/Utils_CatchSignals.h,
+ Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ Utils/Utils_ExceptHandlers.cxx, Utils/Utils_ExceptHandlers.hxx,
+ Utils/Utils_Identity.cxx, Utils/Utils_Identity.hxx,
+ Utils/Utils_Identity.py, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_ORB_INIT.hxx, Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/duplicate.cxx, Utils/utilities.h:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 13:13 yfr
+
+ * src/: SALOMELocalTrace/Makefile.in,
+ SALOMELocalTrace/SALOME_Log.cxx, SALOMELocalTrace/SALOME_Log.hxx,
+ TOOLSDS/SALOMEDS_Tool.cxx:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 12:00 yfr
+
+ * src/SALOMEDS/: Handle_SALOMEDS_ExpandableAttribute.hxx,
+ Handle_SALOMEDS_IORAttribute.hxx,
+ Handle_SALOMEDS_LocalIDAttribute.hxx,
+ Handle_SALOMEDS_OCAFApplication.hxx,
+ Handle_SALOMEDS_OpenedAttribute.hxx,
+ Handle_SALOMEDS_PixMapAttribute.hxx,
+ Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ Handle_SALOMEDS_SelectableAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ Handle_SALOMEDS_TargetAttribute.hxx,
+ Handle_SALOMEDS_TextColorAttribute.hxx, Makefile.in,
+ README_attributes, SALOMEDS_AttLong_i.cxx,
+ SALOMEDS_AttLong_i.hxx, SALOMEDS_AttReal_i.cxx,
+ SALOMEDS_AttReal_i.hxx, SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS_AttributeFileType_i.hxx, SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS_AttributeLocalID_i.hxx, SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS_AttributeName_i.hxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS_AttributePixMap_i.cxx, SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS_AttributeReal_i.hxx, SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.hxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS_BasicAttribute_i.hxx, SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS_ChildIterator_i.hxx, SALOMEDS_Client.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS_DrawableAttribute.hxx, SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS_DrawableAttribute.jxx, SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS_ExpandableAttribute.jxx, SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS_FileType.cxx, SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS_GenericAttribute_i.hxx, SALOMEDS_IORAttribute.cxx,
+ SALOMEDS_IORAttribute.hxx, SALOMEDS_IORAttribute.ixx,
+ SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS_LocalIDAttribute.ixx, SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS_OCAFApplication.cxx, SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS_OCAFApplication.ixx, SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS_OpenedAttribute.hxx, SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS_OpenedAttribute.jxx, SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS_PersRefAttribute.ixx, SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS_PixMapAttribute.ixx, SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS_PythonObjectAttribute.ixx, SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS_SComponentIterator_i.hxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS_SequenceOfRealAttribute.jxx, SALOMEDS_Server.cxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS_StudyManager_i.cxx, SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS_StudyPropertiesAttribute.jxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_Study_i.hxx, SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS_TargetAttribute.cxx, SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS_TargetAttribute.ixx, SALOMEDS_TargetAttribute.jxx,
+ SALOMEDS_TextColorAttribute.cxx, SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS_TextColorAttribute.ixx, SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS_TextHighlightColorAttribute.jxx,
+ SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseIterator_i.cxx,
+ Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ Handle_SALOMEDS_DrawableAttribute.hxx,
+ Handle_SALOMEDS_PersRefAttribute.hxx,
+ Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS_AttributeExpandable_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeLocalID_i.cxx, SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS_BasicAttribute_i.cxx, SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS_ExpandableAttribute.ixx, SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS_PythonObjectAttribute.jxx,
+ SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.hxx,
+ SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.hxx:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:56 yfr
+
+ * src/Registry/: Makefile.in, RegistryConnexion.cxx,
+ RegistryConnexion.hxx, RegistryService.cxx, RegistryService.hxx,
+ SALOME_Registry_Server.cxx:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:52 yfr
+
+ * src/: NamingService/Makefile.in,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx, Notification/Makefile.in,
+ Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Supplier.cxx:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:49 yfr
+
+ * src/: ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.in,
+ ModuleGenerator/README, NOTIFICATION_SWIG/Makefile.in,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:46 yfr
+
+ * src/: LifeCycleCORBA/LifeCycleCORBA.py,
+ LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/MPIObject_i.cxx, MPIContainer/MPIObject_i.hxx,
+ MPIContainer/Makefile.in, MPIContainer/SALOME_MPIContainer.cxx,
+ ModuleCatalog/Makefile.in, ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleCatalog/SALOME_TestModuleCatalog.py:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:42 yfr
+
+ * src/: Container/SALOME_Container_i.hxx,
+ GenericObj/SALOME_GenericObj_i.cc, HDFPersist/HDFascii.cc,
+ HDFPersist/HDFattribute.cc, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFconvert.cc, HDFPersist/HDFconvert.hxx,
+ HDFPersist/HDFdataset.cc, HDFPersist/HDFexception.hxx,
+ HDFPersist/HDFexplorer.cc, HDFPersist/HDFfile.cc,
+ HDFPersist/HDFgroup.cc, HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFobject.cc, HDFPersist/Makefile.in:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:39 yfr
+
+ * idl/MPIContainer.idl, idl/MPIObject.idl, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Component.idl, idl/SALOME_DataTypeCatalog.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_RessourcesCatalog.idl,
+ idl/SALOME_Session.idl, idl/SALOME_TestComponent.idl,
+ idl/SALOME_TestMPIComponent.idl,
+ idl/SALOME_TestModuleCatalog.idl, idl/TypeData.idl,
+ src/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:32 yfr
+
+ * salome_adm/unix/config_files/: ac_cxx_bool.m4,
+ ac_cxx_depend_flag.m4, ac_cxx_have_sstream.m4, ac_cxx_mutable.m4,
+ ac_cxx_namespaces.m4, ac_cxx_partial_specialization.m4,
+ ac_cxx_typename.m4, check_Kernel.m4, check_boost.m4,
+ check_cas.m4, check_htmlgen.m4, check_mpich.m4,
+ check_pthreads.m4, check_qt.m4, check_sip.m4, check_vtk.m4,
+ enable_pthreads.m4, mkinstalldirs, production.m4, python.m4:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:25 yfr
+
+ * salome_adm/: Makefile.in, unix/depend.in, unix/make_commence.in,
+ unix/make_conclude.in, unix/make_module.in, unix/make_omniorb.in:
+
+ DCQ : Merge with Ecole_ete_a6.
+
+2004-06-17 11:18 yfr
+
+ * bin/: VERSION, killSalome.py, killSalomeWithPort.py,
+ launchConfigureParser.py, orbmodule.py, runNS.sh, runSalome,
+ runSalome.csh, runSalome.py, salome.launch, showNS.py:
+
+ DCQ : Merge with Ecole_Ete_a6.
+
+2004-06-17 11:14 yfr
+
+ * INSTALL, Makefile.in, build_configure, configure.in.base:
+
+ [no log message]
+
+2004-06-08 12:54 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ minor changes
+
+2004-06-07 10:28 smh
+
+ * src/SALOMEDS/SALOMEDS_TargetAttribute.cxx:
+
+ Fix on
+ KERNEL6040, if there already has been appended the given reference then nothing to do
+
+2004-05-28 17:24 prascle
+
+ * src/: LifeCycleCORBA/LifeCycleCORBA.py,
+ Container/SALOME_ComponentPy.py:
+
+ PR : hostname must be without domain extensions (as in hostname -s)
+
+2004-05-24 03:45 tajchman
+
+ * bin/runSalome.py:
+
+ petite correction d'orthographe
+
+2004-05-24 02:41 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
+
+ Remove debug output
+
+2004-05-21 13:10 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx:
+
+ remove test printing
+
+2004-05-18 13:37 smh
+
+ * idl/SALOMEDS.idl, src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx:
+
+ BUG 5885, Added a RemoveReference method as a pair to Addreference in SALOMEDS_StudyBuilder. Author: SRN
+
+2004-05-17 11:44 smh
+
+ * src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx:
+
+ KERNEL5894
+
+2004-05-14 15:54 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx:
+
+ Add a default constructor in ParserService structure
+
+2004-05-13 08:13 smh
+
+ * src/Utils/: Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils_ORB_INIT.hxx:
+
+ Fix on Bug KERNEL5829
+ - Error message when quitting Salome
+
+2004-05-12 15:58 prascle
+
+ * src/Container/Component_i.cxx:
+
+ PR: strings given in setProperties are set in environment in beginService
+
+2004-05-12 08:48 smh
+
+ * src/SALOMEDS/SALOMEDS_SObject_i.cxx:
+
+ PAL5845
+
+2004-05-07 00:00 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+
+ Add datastream ports handling
+
+2004-05-06 18:32 nri
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Handler.cxx, SALOME_ModuleCatalog_impl.cxx:
+
+ NRI : Fixed bug SUPERV5830.
+
+2004-05-06 09:29 smh
+
+ * src/ModuleCatalog/Makefile.in:
+
+ SMH: Put new depth for templates, KERNEL5825
+
+2004-04-30 14:37 nri
+
+ * src/Makefile.in:
+
+ NRI : Merge from Event_Server.
+
+2004-04-29 22:13 prascle
+
+ * src/TestContainer/SALOME_TestComponent_i.cxx:
+
+ PR: test setProperties
+
+2004-04-28 21:32 prascle
+
+ * idl/SALOME_Component.idl, idl/SALOME_TestComponent.idl,
+ src/Container/Component_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestContainer.cxx:
+
+ PR: setProperties ans getProperties methods on SALOMRE_component
+
+2004-04-20 14:26 smh
+
+ * bin/launchConfigureParser.py:
+
+ Merge from Ecole_Ete_a1
+
+2004-04-20 10:23 smh
+
+ * src/Makefile.in:
+
+ Merge from QT_EVENT branch
+
+2004-04-19 12:06 prascle
+
+ * src/ModuleCatalog/Makefile.in:
+
+ PR: workaround to compile on gcc 2.94.4 (Debian Woody)
+
+2004-04-19 08:55 prascle
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ PR: on Debian Woody, fail on check compilation of cascade
+
+2004-04-19 08:50 prascle
+
+ * bin/: killSalome.py, killSalomeWithPort.py, runSalome:
+
+ PR: bug when calling killSalome from shell
+
+2004-04-19 08:48 prascle
+
+ * bin/: launchConfigureParser.py, runSalome.py:
+
+ PR: bug 5668 correction
+
+2004-04-19 08:35 prascle
+
+ * src/Utils/Utils_CatchSignals.cxx:
+
+ PR: bug 5721 correction
+
+2004-04-18 23:25 tajchman
+
+ * src/ModuleCatalog/: Makefile.in, PathPrefix.hxx,
+ SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Client.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx,
+ SALOME_ModuleCatalog_Parser_IO.cxx,
+ SALOME_ModuleCatalog_Parser_IO.hxx,
+ SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
+ SALOME_ModuleCatalog_impl.hxx, SALOME_TestModuleCatalog.py:
+
+ add DataStreams to ModuleCatalog implementation
+
+2004-04-18 23:24 tajchman
+
+ * idl/: Makefile.in, SALOME_ModuleCatalog.idl,
+ SALOME_TestModuleCatalog.idl:
+
+ add DataStreams to ModuleCatalog idl
+
+2004-04-18 23:22 tajchman
+
+ * bin/launchConfigureParser.py:
+
+ initialize args["containers"] to empty list
+
+2004-04-17 15:23 tajchman
+
+ * bin/launchConfigureParser.py, idl/Makefile.in,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_TestModuleCatalog.idl:
+
+ [no log message]
+
+2004-04-16 20:03 tajchman
+
+ * src/ModuleCatalog/: Makefile.in, PathPrefix.hxx,
+ SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Client.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx,
+ SALOME_ModuleCatalog_Parser_IO.cxx,
+ SALOME_ModuleCatalog_Parser_IO.hxx,
+ SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
+ SALOME_ModuleCatalog_impl.hxx, SALOME_TestModuleCatalog.py:
+
+ Partial merge between the 1.4.1a Kernel version and
+ the BRANCH_Kernel_DataStream version (into a temporary
+ branch)
+
+2004-04-16 09:49 tajchman
+
+ * bin/runIDLparser.in:
+
+ option -K added to omniidl
+ (do not ignore comments)
+
+2004-04-16 09:45 tajchman
+
+ * bin/runIDLparser.in:
+
+ option -K added to omniidl
+ (do not ignore comments)
+
+2004-04-16 09:26 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ [no log message]
+
+2004-04-14 16:55 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ parse DataStreams in IDL files (correction)
+
+2004-04-14 16:42 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ parse DataStreams in IDL files (correction)
+
+2004-04-14 16:42 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ parse DataStreams in IDL files
+
+2004-04-14 10:25 prascle
+
+ * configure.in.base:
+
+ PR: bug 5680 correction
+
+2004-04-14 09:47 prascle
+
+ * src/Utils/: Utils_SALOME_Exception.cxx,
+ Utils_SALOME_Exception.hxx:
+
+ PR: bug 5693 correction
+
+2004-04-08 17:59 tajchman
+
+ * idl/SALOME_ModuleCatalog.idl:
+
+ [no log message]
+
+2004-04-08 17:49 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx:
+
+ Removing commented lines
+
+2004-04-08 17:34 tajchman
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Server.cxx, SALOME_ModuleCatalog_impl.cxx,
+ SALOME_ModuleCatalog_impl.hxx:
+
+ Correcting a bug in the path prefixes treatment
+
+2004-04-08 15:34 prascle
+
+ * bin/: killSalome.py, killSalomeWithPort.py,
+ launchConfigureParser.py, runSalome, runSalome.py, salome.launch:
+
+ PR: modif run and kill salome, for colocalisation
+
+2004-04-07 16:16 prascle
+
+ * bin/runSalome.py:
+
+ PR: title for xterm
+
+2004-04-07 13:01 prascle
+
+ * bin/runSalome.py, salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/Registry/Makefile.in, src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/utilities.h:
+
+ PR: manual merge from tag V1_4_0 and QT_THREAD branch (without modifs from BSEC_br1 branch)
+
+2004-04-07 12:22 tajchman
+
+ * idl/Makefile.in, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_TestModuleCatalog.idl, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleCatalog/SALOME_TestModuleCatalog.py:
+
+ Update of the ModuleCatalog server
+
+2004-04-06 16:14 prascle
+
+ * src/Utils/utilities.h:
+
+ PR: to avoid confusion with QThread.exit()
+
+2004-04-06 16:12 prascle
+
+ * bin/runSalome.py:
+
+ PR: colocalisation prototype 3
+
+2004-04-06 10:16 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx:
+
+ [no log message]
+
+2004-04-06 10:04 tajchman
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Parser_IO.cxx,
+ SALOME_ModuleCatalog_impl.cxx, SALOME_ModuleCatalog_impl.hxx,
+ SALOME_TestModuleCatalog.py:
+
+ [no log message]
+
+2004-04-06 10:01 tajchman
+
+ * idl/: SALOME_ModuleCatalog.idl:
+
+ Add an IDL method to dynamically import a new
+ catalog file
+
+2004-04-02 16:43 tajchman
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx:
+
+ [no log message]
+
+2004-04-02 16:16 smh
+
+ * bin/killSalomeWithPort.py, bin/launchConfigureParser.py,
+ bin/runSalome.csh, bin/salome.launch, bin/showNS.py,
+ doc/salome/DevelopersGuide.pdf, doc/salome/DevelopersGuide.ps,
+ doc/salome/KERNEL_index.html, doc/salome/Makefile.in,
+ doc/salome/OrganisationProduction_PAL.pdf,
+ doc/salome/OrganisationProduction_PAL.ps,
+ doc/salome/OrganisationProduction_PAL.sxw,
+ doc/salome/Utilitaires_SALOME.doc,
+ doc/salome/Utilitaires_SALOME.pdf,
+ doc/salome/Utilitaires_SALOME.ps,
+ doc/salome/kernel_resources.pdf, doc/salome/kernel_resources.ps,
+ doc/salome/gui/Makefile.in, doc/salome/tui/Makefile.in,
+ salome_adm/unix/config_files/check_boost.m4:
+
+ SALOME PAL V1_4_1
+
+2004-04-02 15:47 smh
+
+ * src/Utils/: Utils_CatchSignals.cxx, Utils_CatchSignals.h,
+ Utils_ExceptHandlers.cxx, Utils_ExceptHandlers.hxx:
+
+ SALOME PAL V1_4_1
+
+2004-04-02 15:11 smh
+
+ * bin/VERSION, bin/killSalome.py, bin/orbmodule.py, bin/runNS.sh,
+ bin/runSalome, bin/runSalome.py, doc/Makefile.in,
+ idl/Makefile.in, idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Component.idl, idl/SALOME_ModuleCatalog.idl,
+ salome_adm/Makefile.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/HDFPersist/HDFconvert.hxx, src/HDFPersist/HDFexception.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/Logger/SALOME_Trace.py, src/MPIContainer/MPIContainer_i.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleGenerator/IDLparser.py, src/ModuleGenerator/README,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_CorbaException.hxx, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/utilities.h:
+
+ SALOME PAL V1_4_1
+
+2004-04-02 14:41 smh
+
+ * INSTALL, LICENCE, Makefile.in, build_configure,
+ configure.in.base:
+
+ SALOME PAL V1_4_1
+
+2004-04-02 13:43 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ [no log message]
+
+2004-04-02 13:36 tajchman
+
+ * bin/runIDLparser.in:
+
+ use option -k to keep comments when parsing
+ idl files
+
+2004-04-02 10:44 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx:
+
+ [no log message]
+
+2004-04-02 08:53 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ DataStream ports treatment
+ (idl file -> xml catalogs)
+
+2004-04-02 08:50 tajchman
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Parser_IO.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx:
+
+ [no log message]
+
+2004-04-02 08:30 smh
+
+ * src/Makefile.in:
+
+ make salome compilable
+
+2004-03-31 13:46 tajchman
+
+ * idl/SALOME_ModuleCatalog.idl, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser_IO.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx:
+
+ [no log message]
+
+2004-03-30 19:33 tajchman
+
+ * src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx:
+
+ [no log message]
+
+2004-03-30 16:51 smh
+
+ * src/Makefile.in:
+
+ Library for SALOME_Event object added
+
+2004-03-30 16:33 tajchman
+
+ * src/ModuleCatalog/: PathPrefix.hxx,
+ SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Client.cxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
+
+ Revision of the Salome ModuleCatalog
+ Adding DataStreamPorts
+ (this version needs debugging)
+
+2004-03-29 17:15 prascle
+
+ * bin/runSalome.py, src/Registry/Makefile.in,
+ src/SALOMEDS/Makefile.in:
+
+ PR: Server Colocalisation : prototype for test
+
+2004-03-25 09:15 prascle
+
+ * bin/runSalome.py:
+
+ PR: 5525 correction proposal
+
+2004-03-22 08:28 prascle
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ PR: with gcc 2.95.4 (DEBIAN Woody) use "" instead of <> for dependancies
+
+2004-03-22 08:25 prascle
+
+ * salome_adm/unix/config_files/check_pyqt.m4:
+
+ PR: qt.py could be in $PYQTLIB or in $PYQTLIB/qt
+
+2004-03-22 08:23 prascle
+
+ * bin/runSalome.py:
+
+ PR: On DEBIAN Woody, need to give LD_LIBRARY_PATH in args for xterm
+
+2004-03-19 16:38 rahuel
+
+ * src/LifeCycleCORBA/LifeCycleCORBA.py:
+
+ [no log message]
+
+2004-03-19 16:32 rahuel
+
+ * bin/runSalome.py, idl/ResourcesManager.idl:
+
+ [no log message]
+
+2004-03-17 10:19 prascle
+
+ * idl/: MPIContainer.idl, MPIObject.idl, TypeData.idl:
+
+ PR: remove idl files no longer needed
+
+2004-03-17 09:13 prascle
+
+ * Makefile.in, configure.in.base, bin/runSalome.py,
+ idl/Makefile.in, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_TestMPIComponent.idl,
+ salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_mpi.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/python.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/Makefile.in, src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFexception.hxx,
+ src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFobject.cc,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/TOOLSDS/SALOMEDS_Tool.cxx,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/TestContainer.cxx,
+ src/TestContainer/TestLogger.cxx,
+ src/TestMPIContainer/Makefile.in,
+ src/TestMPIContainer/TestMPIComponentEngine.cxx,
+ src/TestMPIContainer/TestMPIComponentEngine.hxx,
+ src/TestMPIContainer/TestMPIContainer.cxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx, src/Utils/Utils_Timer.cxx,
+ src/Utils/utilities.h:
+
+ PR: mergefrom_BSEC_br1_14Mar04
+
+2004-03-16 16:04 rahuel
+
+ * bin/killSalome.py:
+
+ [no log message]
+
+2004-03-16 14:45 prascle
+
+ * idl/SALOME_Component.idl,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx, src/Logger/SALOME_Trace.py,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx,
+ src/Utils/Utils_ORB_INIT.cxx, src/Utils/utilities.h:
+
+ merge from trunk tag mergeto_BSEC_br1_14Mar04
+
+2004-03-15 10:39 prascle
+
+ * idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx:
+
+ PR: mergefrom_KLOSS_br1_13Mar04
+
+2004-03-15 10:30 prascle
+
+ * salome_adm/unix/config_files/check_omniorb.m4,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
+
+ PR: merge from trunk tag mergeto_KLOSS_br1_13Mar04
+
+2004-03-15 09:48 prascle
+
+ * salome_adm/unix/config_files/check_omniorb.m4,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
+
+ PR: mergefrom_ADAM_br1_12Mar04
+
+2004-03-12 20:55 prascle
+
+ * INSTALL, bin/VERSION, bin/orbmodule.py, bin/runSalome,
+ bin/runSalome.py, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_GenericObj.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_sip.m4, src/Makefile.in,
+ src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/LifeCycleCORBA/Makefile.in,
+ src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleGenerator/IDLparser.py,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Notification/Makefile.in, src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/utilities.h:
+
+ PR: merge from head (tag mergeto_ADAM_br1_12Mar04)
+
+2004-03-11 09:24 rahuel
+
+ * src/LifeCycleCORBA/LifeCycleCORBA.py:
+
+ Remove of internal/private method GetComputerPath
+
+2004-03-10 13:32 rahuel
+
+ * idl/ContainersManager.idl, bin/killSalome.py, bin/runSalome.py,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx:
+
+ [no log message]
+
+2004-03-10 13:28 rahuel
+
+ * src/: Container/Component_i.cxx, Container/Container_i.cxx,
+ Container/SALOME_ComponentPy.py, Container/SALOME_ContainerPy.py,
+ NamingService/SALOME_NamingServicePy.py:
+
+ [no log message]
+
+2004-03-10 12:30 secher
+
+ * src/: MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
+ Container/Container_i.cxx:
+
+ mise a jour suite a test de composants NP
+
+2004-03-08 09:44 rahuel
+
+ * src/Container/: Container_i.cxx, SALOME_ComponentPy.py:
+
+ [no log message]
+
+2004-03-05 16:10 rahuel
+
+ * src/: ResourcesManager/ResourcesManager_Server.cxx,
+ TestContainer/TestContainer.cxx:
+
+ [no log message]
+
+2004-03-05 16:07 rahuel
+
+ * resources/ResourcesCatalog.xml, idl/ContainersManager.idl,
+ idl/SALOME_Component.idl, src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx:
+
+ [no log message]
+
+2004-03-03 09:47 rahuel
+
+ * bin/startContainer.py:
+
+ [no log message]
+
+2004-03-03 09:42 rahuel
+
+ * src/ResourcesManager/ResourcesManager_Impl.cxx,
+ src/ResourcesManager/ResourcesManager_Impl.hxx,
+ resources/ResourcesCatalog.xml:
+
+ [no log message]
+
+2004-03-02 17:06 rahuel
+
+ * src/ResourcesManager/: ResourcesManager_Handler.cxx,
+ ResourcesManager_Impl.cxx, ResourcesManager_Impl.hxx:
+
+ [no log message]
+
+2004-03-02 17:02 rahuel
+
+ * idl/: ContainersManager.idl, ResourcesManager.idl:
+
+ [no log message]
+
+2004-03-02 16:41 rahuel
+
+ * idl/: Makefile.in, SALOME_Component.idl:
+
+ [no log message]
+
+2004-03-02 16:00 rahuel
+
+ * src/ResourcesManager/ResourcesManager_Impl.cxx:
+
+ [no log message]
+
+2004-03-02 15:46 rahuel
+
+ * src/LifeCycleCORBA/: LifeCycleCORBA.py,
+ SALOME_LifeCycleCORBA.cxx, SALOME_LifeCycleCORBA.hxx:
+
+ [no log message]
+
+2004-03-02 09:51 rahuel
+
+ * resources/ResourcesCatalog.xml:
+
+ [no log message]
+
+2004-03-01 10:36 rahuel
+
+ * src/: Container/Container_i.cxx, Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_i.hxx, SALOMEDS/Makefile.in:
+
+ Use of ContainersManager and ResourcesManager
+
+2004-03-01 10:33 rahuel
+
+ * Makefile.in, bin/runSalome, bin/runSalome.py,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx:
+
+ Use of ContainersManager and ResourcesManager
+
+2004-03-01 10:30 rahuel
+
+ * src/ResourcesManager/: ResourcesManager_Impl.cxx,
+ ResourcesManager_Impl.hxx:
+
+ Use of ContainersManager and ResourcesManager
+
+2004-02-26 17:15 rahuel
+
+ * src/LifeCycleCORBA/: Makefile.in, SALOME_LifeCycleCORBA.cxx,
+ SALOME_LifeCycleCORBA.hxx, TestLifeCycleCORBA.cxx:
+
+ Use of ContainersManager and ResourcesManager
+
+2004-02-26 17:13 rahuel
+
+ * src/Makefile.in:
+
+ New servers : ContainersManager and ResourcesManager
+
+2004-02-26 17:12 rahuel
+
+ * src/ResourcesManager/: Makefile.in, ResourcesComputer_Impl.cxx,
+ ResourcesComputer_Impl.hxx, ResourcesManager_Handler.cxx,
+ ResourcesManager_Handler.hxx, ResourcesManager_Impl.cxx,
+ ResourcesManager_Impl.hxx, ResourcesManager_Parser.hxx,
+ ResourcesManager_Server.cxx:
+
+ New server : ResourcesManager (Computers)
+
+2004-02-11 12:12 fkl
+
+ * src/Container/: SALOME_Container_i.hxx, Container_i.cxx:
+
+ new functionnalities for colocalisation optimization in GEOMClient
+
+2004-02-11 12:11 fkl
+
+ * idl/SALOME_Component.idl:
+
+ new functionnalities for colocalisation performance in GEOMClient
+
+2004-02-08 23:11 prascle
+
+ * src/Container/SALOME_ComponentPy.py:
+
+ PR: error in machine name (missing split HOSTNAME)
+
+2004-02-08 22:59 prascle
+
+ * src/Logger/SALOME_Trace.py:
+
+ PR: merge from trunk 07Feb04
+
+2004-02-08 22:56 prascle
+
+ * src/: SALOMELocalTrace/SALOME_Log.cxx,
+ SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
+
+ PR: merge from trunk 07Feb04
+
+2004-02-08 19:47 prascle
+
+ * src/SALOMELocalTrace/SALOME_Log.cxx:
+
+ PR: error in last commit
+
+2004-02-07 17:09 prascle
+
+ * src/: SALOMELocalTrace/SALOME_Log.cxx,
+ SALOMELocalTrace/SALOME_Log.hxx, Utils/utilities.h:
+
+ PR: Garbage text in local trace or crash, in optimized mode : KERNEL 5125
+
+2004-02-06 09:37 secher
+
+ * salome_adm/unix/: depend.in, make_commence.in:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:20 secher
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:17 secher
+
+ * salome_adm/unix/: make_module.in, config_files/check_cas.m4:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:13 secher
+
+ * src/: TOOLSDS/Makefile.in, TestContainer/Makefile.in,
+ TestContainer/TestContainer.cxx, TestMPIContainer/Makefile.in,
+ Utils/Makefile.in, Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_SALOME_Exception.cxx, Utils/Utils_SINGLETON.hxx,
+ Utils/utilities.h:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:07 secher
+
+ * src/: Registry/Makefile.in, Registry/SALOME_Registry_Server.cxx,
+ SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/Handle_SALOMEDS_FileType.hxx, SALOMEDS/Makefile.in,
+ SALOMEDS/README_attributes,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ SALOMEDS/SALOMEDS_FileType.cdl, SALOMEDS/SALOMEDS_FileType.cxx,
+ SALOMEDS/SALOMEDS_FileType.hxx, SALOMEDS/SALOMEDS_FileType.ixx,
+ SALOMEDS/SALOMEDS_FileType.jxx, SALOMEDS/SALOMEDS_SObject_i.cxx,
+ SALOMEDS/SALOMEDS_Server.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMELocalTrace/Makefile.in, SALOMELocalTrace/SALOME_Log.cxx,
+ SALOMELocalTrace/SALOME_Log.hxx:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:04 secher
+
+ * src/: Logger/SALOME_Logger_Server.cxx,
+ Logger/SALOME_Logger_Server.hxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py,
+ MPIContainer/Makefile.in, ModuleCatalog/Makefile.in,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleGenerator/IDLparser.py,
+ NamingService/SALOME_NamingServicePy.py,
+ Notification/Makefile.in:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 09:00 secher
+
+ * src/: Makefile.in, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Makefile.in,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerPy.py, GenericObj/Makefile.in,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, HDFPersist/HDFattrCreate.c,
+ HDFPersist/HDFattrRead.c, HDFPersist/HDFattrWrite.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetType.c,
+ HDFPersist/HDFdatasetRead.c, HDFPersist/HDFdatasetWrite.c,
+ HDFPersist/Makefile.in, LifeCycleCORBA/Makefile.in:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 08:57 secher
+
+ * idl/: Logger.idl, Makefile.in, SALOMEDS.idl,
+ SALOMEDS_Attributes.idl, SALOME_Component.idl,
+ SALOME_Exception.idl, SALOME_GenericObj.idl,
+ SALOME_ModuleCatalog.idl, SALOME_Session.idl:
+
+ merge avec la version V1_4_0b1
+
+2004-02-06 08:54 secher
+
+ * bin/VERSION, bin/orbmodule.py, bin/runSalome, bin/runSalome.py,
+ INSTALL, LICENCE, Makefile.in, configure.in.base:
+
+ merge avec la version V1_4_0b1
+
+2004-02-03 16:39 prascle
+
+ * src/Logger/SALOME_Trace.py:
+
+ PR: more robust (from Mikhail PONIKAROV)
+
+2004-02-03 14:16 tajchman
+
+ * bin/: orbmodule.py, runNS.sh, runSalome.py:
+
+ Modify access permissions for log files
+
+2004-02-01 21:10 prascle
+
+ * INSTALL, bin/VERSION, bin/runSalome.py, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Session.idl, src/Makefile.in,
+ src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/Utils/Utils_SINGLETON.hxx:
+
+ PR: merge from trunk, tag mergefrom_trunk_01Feb04
+
+2004-01-30 14:28 prascle
+
+ * INSTALL, bin/VERSION, bin/runSalome.py, idl/Makefile.in,
+ idl/SALOMEDS.idl, idl/SALOMEDS_Attributes.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_GenericObj.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Session.idl, src/Makefile.in,
+ src/Container/SALOME_ContainerPy.py, src/GenericObj/Makefile.in,
+ src/GenericObj/SALOME_GenericObj_i.cc,
+ src/GenericObj/SALOME_GenericObj_i.hh,
+ src/Logger/SALOME_Logger_Server.cxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/SALOMEDS/Makefile.in,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/Utils/Utils_SINGLETON.hxx:
+
+ PR: merge SalomePro 1_2d = mergefrom_BRANCH_MergeV1_2d
+
+2004-01-28 15:51 secher
+
+ * src/: MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIObject_i.cxx,
+ MPIContainer/SALOME_MPIContainer.cxx,
+ TestMPIContainer/TestMPIComponentEngine.cxx:
+
+ gestion parallelisme sur CCRT
+
+2004-01-28 14:37 smh
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ MPV: Merge V1.2c - correction
+
+2004-01-28 14:36 secher
+
+ * salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_mpi.m4, configure.in.base,
+ src/Makefile.in, src/MPIContainer/Makefile.in:
+
+ gestion parallelisme sur CCRT
+
+2004-01-27 10:22 smh
+
+ * src/Utils/utilities.h:
+
+ MPV: Merge V1.2c
+
+2004-01-26 15:18 smh
+
+ * src/: Makefile.in, GenericObj/Makefile.in,
+ GenericObj/SALOME_GenericObj_i.cc,
+ GenericObj/SALOME_GenericObj_i.hh, SALOMEDS/Makefile.in:
+
+ MPV: Merge V1.2c
+
+2004-01-26 15:15 smh
+
+ * src/Utils/utilities.h:
+
+ MPV: Merge V1.2c
+
+2004-01-26 15:03 smh
+
+ * src/Utils/Utils_SINGLETON.hxx:
+
+ MPV: Merge V1.2c
+
+2004-01-26 14:51 smh
+
+ * src/SALOMEDS/: SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS_StudyBuilder_i.hxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_Study_i.cxx, SALOMEDS_Study_i.hxx,
+ SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfStringAttribute.cxx:
+
+ MPV: Merge V1.2c
+
+2004-01-26 14:42 smh
+
+ * src/NamingService/SALOME_NamingServicePy.py:
+
+ MPV: Merge V1.2c
+
+2004-01-26 14:36 smh
+
+ * src/: Container/SALOME_ContainerPy.py,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, Logger/SALOME_Trace.py:
+
+ MPV: Merge V1.2c
+
+2004-01-26 14:30 smh
+
+ * idl/: Makefile.in, SALOMEDS.idl, SALOMEDS_Attributes.idl,
+ SALOME_Component.idl, SALOME_Exception.idl,
+ SALOME_ModuleCatalog.idl, SALOME_Session.idl:
+
+ MPV: Merge V1.2c
+
+2004-01-26 14:21 smh
+
+ * idl/SALOME_GenericObj.idl:
+
+ MPV: merge V1.2c
+
+2004-01-26 10:54 secher
+
+ * salome_adm/unix/config_files/: ac_cxx_option.m4,
+ ac_cxx_template_options.m4, ac_cxx_warnings.m4,
+ ac_linker_options.m4, check_cas.m4, check_pthreads.m4:
+
+ renommage ax_cxx_option en ac_cxx_option
+
+2004-01-26 09:51 secher
+
+ * salome_adm/unix/config_files/ac_cxx_template_options.m4:
+
+ portage sur Alpha/osf
+
+2004-01-23 09:44 tajchman
+
+ * bin/runSalome.py:
+
+ Use a SALOME_USER_COMPONENTS environment variable in runSalome.py
+ (correction)
+
+2004-01-22 14:25 tajchman
+
+ * bin/runSalome.py:
+
+ Use a SALOME_USER_COMPONENTS environment variable in runSalome.py
+
+2004-01-21 15:47 tajchman
+
+ * bin/runIDLparser.in:
+
+ Correct parser arguments and help message
+
+2004-01-21 10:12 secher
+
+ * src/SALOMEDS/SALOMEDS_StudyManager_i.cxx:
+
+ portage CCRT : alpha/osf
+
+2004-01-21 09:55 secher
+
+ * src/Makefile.in:
+
+ portage CCRT alpha/osf
+
+2004-01-21 09:52 secher
+
+ * salome_adm/unix/config_files/ac_cxx_template_options.m4,
+ salome_adm/unix/config_files/ac_cxx_warnings.m4,
+ salome_adm/unix/config_files/ac_linker_options.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/ac_cxx_option.m4,
+ salome_adm/unix/config_files/ac_cxx_template_depth.m4,
+ configure.in.base:
+
+ portage CCRT alpha/osf
+
+2004-01-21 09:48 secher
+
+ * salome_adm/unix/make_commence.in:
+
+ portage CCRT alpha/osf
+
+2004-01-15 09:13 prascle
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ PR: mergefrom_DEBUG_V1_3_15Jan04
+
+2004-01-15 09:09 prascle
+
+ * salome_adm/unix/config_files/: check_pyqt.m4, check_sip.m4:
+
+ PR: mergefrom_DEBUG_V1_3_15Jan04
+
+2004-01-14 17:04 prascle
+
+ * bin/runSalome.py, idl/SALOMEDS_Attributes.idl, src/Makefile.in,
+ src/Container/Makefile.in, src/Container/SALOME_Container.cxx,
+ src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/Notification/Makefile.in, src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_SALOME_Exception.cxx, src/Utils/utilities.h:
+
+ PR: mergefrom_PRAS_br2_14Jan04
+
+2004-01-13 17:30 prascle
+
+ * bin/orbmodule.py, bin/runSalome,
+ src/ModuleGenerator/IDLparser.py:
+
+ PR: mergefrom_trunk_13Jan04
+
+2004-01-13 16:48 prascle
+
+ * bin/orbmodule.py, bin/runSalome,
+ src/ModuleGenerator/IDLparser.py:
+
+ PR: Merge from MTAJ_br1 13 janvier 2004 (mergefrom_MTAJ_br1_13Jan04)
+
+2004-01-13 08:51 prascle
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ PR: BUG KERNEL4780
+
+2004-01-13 08:50 prascle
+
+ * salome_adm/unix/config_files/check_pyqt.m4:
+
+ PR: BUG KERNEL4781
+
+2004-01-09 16:32 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ Using specified component name and username
+
+2004-01-09 15:27 prascle
+
+ * idl/SALOMEDS_Attributes.idl,
+ src/SALOMEDS/Handle_SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_FileType.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/README_attributes,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExternalFileDef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeFileType_i.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cdl,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.cxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.hxx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.ixx,
+ src/SALOMEDS/SALOMEDS_ExternalFileDef.jxx,
+ src/SALOMEDS/SALOMEDS_FileType.cdl,
+ src/SALOMEDS/SALOMEDS_FileType.cxx,
+ src/SALOMEDS/SALOMEDS_FileType.hxx,
+ src/SALOMEDS/SALOMEDS_FileType.ixx,
+ src/SALOMEDS/SALOMEDS_FileType.jxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx:
+
+ PR: Bug Kernel4564 (add attributes)
+
+2004-01-06 14:32 secher
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ debuggage of core dump on exit
+
+2004-01-06 11:35 secher
+
+ * src/: TOOLSDS/SALOMEDS_Tool.cxx,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ Utils/Utils_CommException.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx, Utils/Utils_ORB_INIT.cxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_Timer.cxx:
+
+ portage sur processeur alpha/osf
+
+2004-01-06 11:31 secher
+
+ * src/SALOMEDS/: SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS_AttributeExpandable_i.cxx, SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS_AttributeInteger_i.cxx, SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS_AttributeName_i.cxx, SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS_AttributeReal_i.cxx, SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS_AttributeTreeNode_i.cxx, SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS_ChildIterator_i.cxx, SALOMEDS_Client.cxx,
+ SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS_DrawableAttribute.cxx, SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS_GenericAttribute_i.cxx, SALOMEDS_IORAttribute.cxx,
+ SALOMEDS_LocalIDAttribute.cxx, SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS_OpenedAttribute.cxx, SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS_PixMapAttribute.cxx, SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS_SComponentIterator_i.cxx, SALOMEDS_SComponent_i.cxx,
+ SALOMEDS_SObject_i.cxx, SALOMEDS_SObject_i.hxx,
+ SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS_SequenceOfRealAttribute.cxx, SALOMEDS_Server.cxx,
+ SALOMEDS_StudyBuilder_i.cxx, SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS_StudyPropertiesAttribute.cxx, SALOMEDS_Study_i.cxx,
+ SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS_TargetAttribute.cxx, SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS_UseCaseBuilder_i.cxx, SALOMEDS_UseCaseIterator_i.cxx:
+
+ portage sur processeur alpha/osf
+
+2004-01-06 11:27 secher
+
+ * src/: Notification/NOTIFICATION.cxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Registry/RegistryConnexion.cxx, Registry/RegistryService.cxx,
+ Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx:
+
+ portage sur processeur alpha/osf
+
+2004-01-06 10:31 secher
+
+ * src/: Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Trace.cxx,
+ Logger/SALOME_Trace.hxx, ModuleCatalog/Makefile.in,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/ServiceUnreachable.cxx:
+
+ portage sur processeur alpha/osf
+
+2004-01-06 10:28 secher
+
+ * salome_adm/unix/depend.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, Makefile.in, configure.in.base,
+ src/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFascii.cc,
+ src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFexception.hxx,
+ src/HDFPersist/HDFexplorer.cc, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFobject.cc,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx:
+
+ portage sur processeur alpha/osf
+
+2004-01-06 10:24 secher
+
+ * salome_adm/unix/config_files/: ac_cxx_depend_flag.m4,
+ ac_cxx_template_depth.m4, ac_cxx_use_std_iostream.m4,
+ ac_cxx_warnings.m4, ac_linker_options.m4, check_cas.m4,
+ check_htmlgen.m4, check_pthreads.m4, check_pyqt.m4, check_qt.m4,
+ check_vtk.m4, production.m4, python.m4:
+
+ portage sur processeur alpha/osf
+
+2003-12-16 16:47 tajchman
+
+ * src/ModuleGenerator/IDLparser.py:
+
+ [no log message]
+
+2003-12-15 15:34 adam
+
+ * salome_adm/unix/config_files/check_omniorb.m4,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx, src/Utils/Utils_ORB_INIT.cxx:
+
+ compatibility omniorb 4.x
+
+2003-12-11 17:49 prascle
+
+ * bin/runSalome.py, src/Makefile.in, src/Container/Makefile.in,
+ src/Container/SALOME_Container.cxx,
+ src/LifeCycleCORBA/Makefile.in, src/ModuleCatalog/Makefile.in,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/Notification/Makefile.in, src/Registry/Makefile.in,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMELocalTrace/Makefile.in,
+ src/SALOMELocalTrace/SALOME_Log.cxx,
+ src/SALOMELocalTrace/SALOME_Log.hxx, src/TOOLSDS/Makefile.in,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/Utils_SALOME_Exception.cxx, src/Utils/utilities.h:
+
+ PR: Bug KERNEL4778 : first step
+
+2003-12-08 09:57 tajchman
+
+ * bin/: orbmodule.py, runSalome:
+
+ [no log message]
+
+2003-11-27 10:20 prascle
+
+ * src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx:
+
+ PR: Bug KERNEL4561 core dump at SALOME_Session_loader ends (from J. Roy)
+
+2003-11-24 18:48 prascle
+
+ * INSTALL, LICENCE, Makefile.in, bin/VERSION, bin/runSalome,
+ bin/runSalome.py, idl/Logger.idl, idl/SALOMEDS.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
+ salome_adm/unix/make_commence.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
+
+ PR: included tag V1_3_0
+
+2003-11-20 09:37 nri
+
+ * bin/runSalome.py:
+
+ NRI : Splash is launched only if --gui option is defined.
+
+2003-11-06 12:31 nri
+
+ * LICENCE:
+
+ NRI : add LICENCE file
+
+2003-11-04 10:49 nri
+
+ * salome_adm/unix/make_commence.in:
+
+ NRI : Remove "make doc". It's not necessary to build doc for each compilation.
+ To generate documentation, go into doc directory and type make;make install.
+
+2003-11-04 10:27 nri
+
+ * bin/runSalome:
+
+ NRI : Remove environment variables.
+
+2003-11-04 10:27 nri
+
+ * bin/VERSION:
+
+ NRI : 1.3.0 version.
+
+2003-11-04 10:22 nri
+
+ * INSTALL:
+
+ NRI : 1.3.0 version.
+
+2003-11-03 21:05 prascle
+
+ * Makefile.in, idl/Logger.idl, idl/SALOMEDS.idl,
+ idl/SALOME_Component.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Session.idl,
+ salome_adm/unix/make_commence.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
+
+ PR : merge branch V1_2c dans branche principale pour V1_3_0_b1
+
+2003-11-03 17:11 prascle
+
+ * idl/Logger.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Exception.idl, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx:
+
+ PR: retour au tag V1_2_1_debug2 (pb dans la branche de merge V1_2c)
+
+2003-11-03 16:16 prascle
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ PR: -Wno_deprecated needed in mandrake 9.0 for check ok
+
+2003-10-24 16:22 secher
+
+ * idl/Makefile.in, idl/SALOME_MPIContainer.idl,
+ idl/SALOME_MPIObject.idl, idl/SALOME_TestMPIComponent.idl,
+ idl/TypeData.idl, idl/MPIContainer.idl, idl/MPIObject.idl,
+ salome_adm/unix/config_files/check_mpich.m4,
+ src/Container/Container_i.cxx,
+ src/Container/SALOME_Container_i.hxx,
+ src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx:
+
+ mise a jour containers paralleles
+
+2003-10-22 09:42 nri
+
+ * salome_adm/unix/make_module.in:
+
+ NRI : Add data and doc targets.
+
+2003-10-22 09:41 nri
+
+ * Makefile.in:
+
+ NRI : Add examples into SUBDIRS.
+
+2003-10-21 16:39 secher
+
+ * src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx:
+
+ mise a jour provisoire liee a la disparition de runSession et en attendant le gestionnaire de resources
+
+2003-10-16 15:18 secher
+
+ * configure.in.base:
+
+ mise a jour pour container MPI
+
+2003-10-15 11:53 secher
+
+ * src/TestMPIContainer/Makefile.in:
+
+ mise a jour pour gestion des container MPI
+
+2003-10-15 11:49 secher
+
+ * src/: Container/Container_i.cxx,
+ Container/SALOME_Container_i.hxx,
+ LifeCycleCORBA/LifeCycleCORBA.py,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ MPIContainer/MPIContainer_i.cxx, MPIContainer/MPIContainer_i.hxx,
+ MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.in,
+ MPIContainer/SALOME_MPIContainer.cxx, Makefile.in,
+ TestContainer/TestContainer.cxx, TestMPIContainer/Makefile.in,
+ TestMPIContainer/TestMPIComponentEngine.cxx,
+ TestMPIContainer/TestMPIComponentEngine.hxx,
+ TestMPIContainer/TestMPIContainer.cxx:
+
+ mise a jour pour gestion des container MPI
+
+2003-10-14 17:36 prascle
+
+ * idl/Logger.idl, idl/SALOMEDS.idl, idl/SALOME_Component.idl,
+ idl/SALOME_Exception.idl, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Session.idl, salome_adm/unix/make_commence.in,
+ salome_adm/unix/config_files/check_cas.m4, src/Makefile.in,
+ src/Container/Component_i.cxx, src/Container/Container_i.cxx,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/HDFPersist/HDFattrCreate.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c, src/HDFPersist/Makefile.in,
+ src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/TOOLSDS/Makefile.in, src/TestContainer/TestContainer.cxx:
+
+ PR: Merge V1_2c etape 1
+
+2003-10-14 14:10 prascle
+
+ * resources/SALOMEDS_Resources:
+
+ import SalomePro v1.2c
+
+2003-10-14 13:51 prascle
+
+ * resources/CatalogModuleGeneral.xml:
+
+ import SalomePro v1.2c
+
+2003-10-14 13:34 prascle
+
+ * idl/: Logger.idl, Makefile.in, SALOMEDS.idl,
+ SALOME_Component.idl, SALOME_Exception.idl,
+ SALOME_ModuleCatalog.idl, SALOME_Session.idl:
+
+ import SalomePro v1.2c
+
+2003-10-13 18:48 prascle
+
+ * src/: TOOLSDS/Makefile.in, TestContainer/TestContainer.cxx,
+ Utils/Utils_Timer.hxx:
+
+ import SalomePro v1.2c
+
+2003-10-13 18:44 prascle
+
+ * src/: Makefile.in, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ HDFPersist/HDFattrCreate.c, HDFPersist/HDFattrRead.c,
+ HDFPersist/HDFattrWrite.c, HDFPersist/HDFdatasetCreate.c,
+ HDFPersist/HDFdatasetGetType.c, HDFPersist/HDFdatasetRead.c,
+ HDFPersist/HDFdatasetWrite.c, HDFPersist/Makefile.in,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Trace.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ NamingService/SALOME_NamingServicePy.py,
+ Registry/SALOME_Registry_Server.cxx, SALOMEDS/Makefile.in,
+ SALOMEDS/SALOMEDS_Server.cxx:
+
+ import SalomePro v1.2c
+
+2003-09-29 11:05 prascle
+
+ * INSTALL, bin/VERSION:
+
+ included V1_2_1_debug2
+
+2003-09-26 16:12 nri
+
+ * INSTALL:
+
+ NRI : INSTALL file defined SALOME2_PRODUCTION_CYCLE document.
+
+2003-09-26 16:08 nri
+
+ * bin/VERSION:
+
+ NRI : Set right version.
+
+2003-09-15 11:12 prascle
+
+ * bin/: runSalome, runSalome.py:
+
+ PR : Embedded C++ Container in Session Server (Engines and Clients in a single process) --- first stage of development
+
+2003-07-16 17:52 nri
+
+ * src/TestContainer/TestContainer.cxx:
+
+ NRI : path correction for library.
+
+2003-07-11 09:28 nri
+
+ * src/Utils/Utils_Timer.hxx:
+
+ NRI : Merge from V1_2.
+
+2003-07-11 09:22 nri
+
+ * salome_adm/unix/make_commence.in, bin/VERSION:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 20:53 nri
+
+ * src/Utils/utilities.py:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 15:02 nri
+
+ * salome_adm/unix/make_commence.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 14:54 nri
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 14:37 nri
+
+ * salome_adm/unix/config_files/check_pyqt.m4:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:27 nri
+
+ * salome_adm/unix/: make_omniorb.in, make_conclude.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:24 nri
+
+ * src/MPIContainer/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:21 nri
+
+ * src/: ModuleGenerator/Makefile.in, Logger/Makefile.in,
+ Container/Makefile.in, LifeCycleCORBA/Makefile.in,
+ HDFPersist/Makefile.in, ModuleCatalog/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:18 nri
+
+ * src/: Registry/Makefile.in, Notification/Makefile.in,
+ NamingService/Makefile.in, NOTIFICATION_SWIG/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:14 nri
+
+ * src/: TOOLSDS/Makefile.in, SALOMEDS/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-10 10:09 nri
+
+ * src/: Utils/Makefile.in, TestContainer/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 19:36 nri
+
+ * src/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 19:28 nri
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 19:15 nri
+
+ * salome_adm/unix/toto:
+
+ NRI : bad merge.
+
+2003-07-09 19:11 nri
+
+ * configure.in.base:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 19:08 nri
+
+ * build_configure:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 19:01 nri
+
+ * salome_adm/unix/: make_commence.in, make_conclude.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 18:47 nri
+
+ * build_configure:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 18:39 nri
+
+ * build_configure, configure.in.base:
+
+ sources v1.2
+
+2003-07-09 18:16 nri
+
+ * salome_adm/unix/: make_commence.in, make_conclude.in,
+ config_files/check_cas.m4, config_files/check_pyqt.m4,
+ config_files/check_sip.m4, config_files/check_vtk.m4:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 18:13 nri
+
+ * salome_adm/unix/toto:
+
+ Initial revision
+
+2003-07-09 18:13 nri
+
+ * salome_adm/unix/: Doxyfile, F77config.h.in, SALOMEconfig.h.in,
+ depend.in, envScript.in, make_commence.in, make_conclude.in,
+ make_omniorb.in, toto, config_files/ac_cc_warnings.m4,
+ config_files/ac_cxx_bool.m4, config_files/ac_cxx_depend_flag.m4,
+ config_files/ac_cxx_have_sstream.m4,
+ config_files/ac_cxx_mutable.m4,
+ config_files/ac_cxx_namespaces.m4,
+ config_files/ac_cxx_partial_specialization.m4,
+ config_files/ac_cxx_typename.m4, config_files/check_Salome.m4,
+ config_files/check_cas.m4, config_files/check_corba.m4,
+ config_files/check_f77.m4, config_files/check_hdf5.m4,
+ config_files/check_htmlgen.m4, config_files/check_java.m4,
+ config_files/check_med2.m4, config_files/check_mico.m4,
+ config_files/check_mpich.m4, config_files/check_omniorb.m4,
+ config_files/check_opengl.m4, config_files/check_pthreads.m4,
+ config_files/check_pyqt.m4, config_files/check_qt.m4,
+ config_files/check_qwt.m4, config_files/check_sip.m4,
+ config_files/check_swig.m4, config_files/check_vtk.m4,
+ config_files/enable_pthreads.m4, config_files/production.m4,
+ config_files/pyembed.m4, config_files/python.m4:
+
+ sources v1.2
+
+2003-07-09 18:09 nri
+
+ * idl/: SALOMEDS_Attributes.idl, SALOME_Component.idl,
+ SALOME_DataTypeCatalog.idl, TestNotif.idl, Logger.idl,
+ MPIContainer.idl, MPIObject.idl, SALOMEDS.idl,
+ SALOME_Exception.idl, SALOME_ModuleCatalog.idl,
+ SALOME_Registry.idl, SALOME_RessourcesCatalog.idl,
+ SALOME_Session.idl, SALOME_TestComponent.idl, TypeData.idl:
+
+ sources v1.2
+
+2003-07-09 18:07 nri
+
+ * src/TOOLSDS/Makefile.in, idl/SALOME_ModuleCatalog.idl,
+ idl/SALOME_Session.idl:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 18:02 nri
+
+ * src/: Utils/SALOME_utilities.py, Utils/utilities.py, Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 17:39 nri
+
+ * src/SALOMEDS/Makefile.in:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 17:35 nri
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
+
+ NRI : Merge from V1_2.
+
+2003-07-09 17:22 nri
+
+ * src/: HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
+ TOOLSDS/Makefile.in, TOOLSDS/SALOMEDS_Tool.cxx,
+ TOOLSDS/SALOMEDS_Tool.hxx, TestContainer/TestLogger.cxx,
+ Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx:
+
+ Initial revision
+
+2003-07-09 17:22 nri
+
+ * src/: Makefile.in, Container/Component_i.cxx,
+ Container/Container_i.cxx, Container/Makefile.in,
+ Container/SALOME_ComponentPy.py,
+ Container/SALOME_Component_i.hxx, Container/SALOME_Container.cxx,
+ Container/SALOME_ContainerPy.py,
+ Container/SALOME_Container_i.hxx, HDFPersist/HDFOI.hxx,
+ HDFPersist/HDFascii.cc, HDFPersist/HDFascii.hxx,
+ HDFPersist/HDFattrClose.c, HDFPersist/HDFattrCreate.c,
+ HDFPersist/HDFattrGetSize.c, HDFPersist/HDFattrGetType.c,
+ HDFPersist/HDFattrOpen.c, HDFPersist/HDFattrRead.c,
+ HDFPersist/HDFattrWrite.c, HDFPersist/HDFattribute.cc,
+ HDFPersist/HDFattribute.hxx, HDFPersist/HDFcontainerObject.cc,
+ HDFPersist/HDFcontainerObject.hxx, HDFPersist/HDFconvert.cc,
+ HDFPersist/HDFconvert.hxx, HDFPersist/HDFdataset.cc,
+ HDFPersist/HDFdataset.hxx, HDFPersist/HDFdatasetClose.c,
+ HDFPersist/HDFdatasetCreate.c, HDFPersist/HDFdatasetGetDim.c,
+ HDFPersist/HDFdatasetGetSize.c, HDFPersist/HDFdatasetGetType.c,
+ HDFPersist/HDFdatasetGetnDim.c, HDFPersist/HDFdatasetOpen.c,
+ HDFPersist/HDFdatasetRead.c, HDFPersist/HDFdatasetWrite.c,
+ HDFPersist/HDFerrorModeLock.c, HDFPersist/HDFexception.hxx,
+ HDFPersist/HDFexplorer.cc, HDFPersist/HDFexplorer.hxx,
+ HDFPersist/HDFfile.cc, HDFPersist/HDFfile.hxx,
+ HDFPersist/HDFfileClose.c, HDFPersist/HDFfileCreate.c,
+ HDFPersist/HDFfileMount.c, HDFPersist/HDFfileOpen.c,
+ HDFPersist/HDFfileUmount.c, HDFPersist/HDFgroup.cc,
+ HDFPersist/HDFgroup.hxx, HDFPersist/HDFgroupClose.c,
+ HDFPersist/HDFgroupCreate.c, HDFPersist/HDFgroupOpen.c,
+ HDFPersist/HDFinternalObject.cc,
+ HDFPersist/HDFinternalObject.hxx, HDFPersist/HDFnObjects.c,
+ HDFPersist/HDFobject.cc, HDFPersist/HDFobject.hxx,
+ HDFPersist/HDFobjectIdentify.c, HDFPersist/HDFobjectType.c,
+ HDFPersist/HDFtypes.h, HDFPersist/Makefile.in, HDFPersist/hdfi.h,
+ HDFPersist/test1.c, HDFPersist/test2.c, HDFPersist/test3.cxx,
+ HDFPersist/test4.cxx, HDFPersist/test5.cxx, HDFPersist/test6.cxx,
+ HDFPersist/test7.cxx, HDFPersist/test8.cxx, HDFPersist/test9.cxx,
+ LifeCycleCORBA/LifeCycleCORBA.py, LifeCycleCORBA/Makefile.in,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ LifeCycleCORBA/TestLifeCycleCORBA.cxx, Logger/Makefile.in,
+ Logger/SALOME_Logger_Server.cxx, Logger/SALOME_Logger_Server.hxx,
+ Logger/SALOME_Trace.cxx, Logger/SALOME_Trace.hxx,
+ Logger/SALOME_Trace.py, MPIContainer/MPIContainer_i.cxx,
+ MPIContainer/MPIContainer_i.hxx, MPIContainer/MPIObject_i.cxx,
+ MPIContainer/MPIObject_i.hxx, MPIContainer/Makefile.in,
+ MPIContainer/SALOME_MPIContainer.cxx, ModuleCatalog/Makefile.in,
+ ModuleCatalog/PathPrefix.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ ModuleGenerator/IDLparser.py, ModuleGenerator/Makefile.in,
+ ModuleGenerator/tests/Truc2Component.idl,
+ ModuleGenerator/tests/TrucComponent.idl,
+ ModuleGenerator/tests/test1.sh, ModuleGenerator/tests/test1b.sh,
+ ModuleGenerator/tests/test2.sh, ModuleGenerator/tests/test3.sh,
+ ModuleGenerator/tests/test4.sh, ModuleGenerator/tests/test5.sh,
+ NOTIFICATION_SWIG/Makefile.in, NOTIFICATION_SWIG/NOTIFICATION.i,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ NamingService/Makefile.in,
+ NamingService/SALOME_NamingService.cxx,
+ NamingService/SALOME_NamingService.hxx,
+ NamingService/SALOME_NamingService.i,
+ NamingService/SALOME_NamingServicePy.py,
+ NamingService/ServiceUnreachable.cxx,
+ NamingService/ServiceUnreachable.hxx,
+ Notification/CosNotifyShorthands.h, Notification/Makefile.in,
+ Notification/NOTIFICATION.cxx, Notification/NOTIFICATION.hxx,
+ Notification/NOTIFICATION_Consumer.cxx,
+ Notification/NOTIFICATION_Consumer.hxx,
+ Notification/NOTIFICATION_Supplier.cxx,
+ Notification/NOTIFICATION_Supplier.hxx, Registry/Makefile.in,
+ Registry/RegistryConnexion.cxx, Registry/RegistryConnexion.hxx,
+ Registry/RegistryService.cxx, Registry/RegistryService.hxx,
+ Registry/SALOME_Registry_Server.cxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/Makefile.in, SALOMEDS/SALOMEDS.cdl,
+ SALOMEDS/SALOMEDS_AttLong_i.cxx, SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ SALOMEDS/SALOMEDS_AttReal_i.cxx, SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ SALOMEDS/SALOMEDS_Client.cxx,
+ SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_Callback_i.hxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ SALOMEDS/SALOMEDS_Server.cxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ SALOMEDS/SALOMEDS_SObject_i.cxx, SALOMEDS/SALOMEDS_SObject_i.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ SALOMEDS/SALOMEDS_Study_i.cxx, SALOMEDS/SALOMEDS_Study_i.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ SALOMEDS/SALOMEDS_Tool.cxx, SALOMEDS/SALOMEDS_Tool.hxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx, TOOLSDS/Makefile.in,
+ TOOLSDS/SALOMEDS_Tool.cxx, TOOLSDS/SALOMEDS_Tool.hxx,
+ TestContainer/Makefile.in,
+ TestContainer/SALOME_TestComponentPy.py,
+ TestContainer/SALOME_TestComponent_i.cxx,
+ TestContainer/SALOME_TestComponent_i.hxx,
+ TestContainer/TestComponentPy.py,
+ TestContainer/TestContainer.cxx, TestContainer/TestLogger.cxx,
+ Utils/Makefile.in, Utils/OpUtil.cxx, Utils/OpUtil.hxx,
+ Utils/SALOME_utilities.py, Utils/SalomeString.hxx,
+ Utils/Utils_CommException.cxx, Utils/Utils_CommException.hxx,
+ Utils/Utils_CorbaException.hxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx, Utils/Utils_Identity.cxx,
+ Utils/Utils_Identity.hxx, Utils/Utils_Identity.py,
+ Utils/Utils_ORB_INIT.cxx, Utils/Utils_ORB_INIT.hxx,
+ Utils/Utils_SALOME_Exception.cxx,
+ Utils/Utils_SALOME_Exception.hxx, Utils/Utils_SINGLETON.hxx,
+ Utils/Utils_Timer.cxx, Utils/Utils_Timer.hxx,
+ Utils/duplicate.cxx, Utils/utilities.h, Utils/utilities.py:
+
+ sources v1.2
+
+2003-07-09 17:18 nri
+
+ * resources/CatalogModuleGeneral.xml:
+
+ sources v1.2
+
+2003-07-09 14:38 yfr
+
+ * resources/: Application-About.png, Application-Logo.png,
+ Application-Splash.png:
+
+ yfr : Suppression su "PRO" dans les icones et splash
+
+2003-06-16 17:59 prascle
+
+ * idl/Makefile.in:
+
+ PR: preserves files dates when copying from sources and avoids unnecessary compilation of dependent modules after install. (idem for other includes)
+
+2003-06-16 17:54 prascle
+
+ * Makefile.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in:
+
+ PR: make_commence is available for other modules (no need of recheck what is done in kernel). Previous mode (recheck) still works.
+
+2003-06-16 16:09 prascle
+
+ * bin/runSalome.py:
+
+ PR: merge from branch CCAR_br1
+
+2003-06-16 15:58 prascle
+
+ * salome_adm/unix/config_files/check_pyqt.m4:
+
+ PR: merge branch CCAR_br1 + specific RedHat 8.0
+
+2003-06-16 15:57 prascle
+
+ * salome_adm/unix/config_files/check_sip.m4:
+
+ PR: merge branch CCAR_br1
+
+2003-06-06 09:14 prascle
+
+ * salome_adm/unix/config_files/check_cas.m4:
+
+ PR: suppress warnings with gcc 3.2 to check OK
+
+2003-06-06 09:09 prascle
+
+ * salome_adm/unix/config_files/check_vtk.m4:
+
+ PR: suppress warnings with gcc 3.2 to check OK
+
+2003-06-05 19:54 caremoli
+
+ * bin/runSalome.py, salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_sip.m4:
+
+ CCAR (EDF-RD):
+ - First modification : runSalome.py can be imported or exec'ed. I'm not sure
+ it's really possible to use startSalome or startGUI from another Python module
+ but it's a first step.
+ - Second modification : new import mechanism for shared python modules (CORBA, qt,..)
+ This mechanism implemented in the new module import_hook replaces the
+ standard import mechanism. New module kernel_shared_modules helps to define those modules
+ that must be imported only once. Other modules can have their own <module>_shared_modules
+ - 3rd : some minor improvments in Python interpretor (more error trace) and link to new import
+ mechanism.
+ - 4th : modification of check_sip and check_pyqt to recognize different versions 3.3, ..., 3.5
+
+2003-06-05 14:12 jroy
+
+ * doc/: OrganisationProduction_PAL.pdf,
+ OrganisationProduction_PAL.ps, OrganisationProduction_PAL.sxw:
+
+ Ajout du document OrganisationProduction_PAL (formats pdf, ps, sxw) dans la base KERNEL.
+
+2003-06-05 09:14 prascle
+
+ * src/Utils/: SALOME_utilities.py, utilities.py:
+
+ PR: force the transformation of message argument into string
+
+2003-06-03 15:53 nri
+
+ * bin/: runSalome, runSalome.py:
+
+ NRI : Update launch.
+
+2003-06-03 13:29 nri
+
+ * bin/: runSalome, runSalome.py:
+
+ NRI : Update launch.
+
+2003-06-03 11:07 nri
+
+ * src/Makefile.in:
+
+ NRI : Add Loader.
+
+2003-05-28 09:51 nri
+
+ * bin/VERSION:
+
+ NRI : Add MODULE version info.
+
+2003-05-27 09:59 prascle
+
+ * bin/killSalome.py:
+
+ PR : destruction of file listing SALOME process id after process kill :
+ no longer relevant, and dangerous
+
+2003-05-27 09:56 prascle
+
+ * Makefile.in:
+
+ PR : to avoid recompilation with gcc 3.2 when SALOMEconfig.h timestamp
+ is changed
+
+2003-05-26 17:42 nri
+
+ * bin/killSalome.py, bin/orbmodule.py, bin/runSalome,
+ bin/runSalome.py, Makefile.in:
+
+ NRI : Add new SALOME launch procedure.
+
+2003-05-26 17:39 nri
+
+ * bin/: README, allkill, allkillWithPort, config.in,
+ insertComputerRessourcesCatalog.sh.in, omniORB.cfg.in,
+ runClientDataTypeCatalog.in, runClientModuleCatalog.in,
+ runClientRessourcesCatalog.in, runDataTypeCatalog.in,
+ runLoader.in, runModuleCatalog.in, runMono.in, runNSWithPort.sh,
+ runNotify.sh, runRessourcesCatalog.in, runSALOMEDS_Client.in,
+ runSalome.in, runSalomeDesktop.in, runSalomeServers.in,
+ runSalomeWithPort.in, runSession.in, runTestContainer.in,
+ runTestContainerPy.in, runTestContainerPy2.in,
+ runTestLifeCycle.in, runTestMED.in, runTestNotification.in,
+ showNS.in:
+
+ NRI : Remove old files. We will add again if requested.
+
+2003-05-23 17:00 nri
+
+ * src/SALOMEDS/Makefile.in:
+
+ NRI : Explode OCC_LIBS.
+
+2003-05-23 14:44 nri
+
+ * salome_adm/unix/: make_commence.in, config_files/check_cas.m4:
+
+ NRI : Explode OCC_LIBS into different variables.
+
+2003-05-22 15:39 nri
+
+ * bin/runSalome.in:
+
+ NRI : Add KERNEL_ROOT_DIR in addition to SALOME_[ROOT, SITE]_DIR.
+
+2003-05-22 11:21 nri
+
+ * resources/CatalogModuleGeneral.xml, resources/KERNELCatalog.xml,
+ Makefile.in, bin/runSalome.in:
+
+ NRI : Rename Catalog according to rule (KERNELCatalog).
+
+2003-05-22 09:33 nri
+
+ * doc/Makefile.in:
+
+ NRI : Add documentation.
+
+2003-05-20 15:04 nri
+
+ * idl/SALOME_Session.idl:
+
+ NRI : VISU dependence.
+
+2003-05-20 12:23 nri
+
+ * resources/Resources, resources/SALOMEDS_Resources, Makefile.in,
+ bin/runSalome.in:
+
+ NRI : Update OCAF resources.
+
+2003-05-19 16:39 nri
+
+ * bin/runSalome.in:
+
+ NRI : Update.
+
+2003-05-19 14:48 nri
+
+ * bin/runSalome.in:
+
+ NRI : Correction Catalog.
+
+2003-05-19 13:58 nri
+
+ * bin/runSalome.in:
+
+ NRI : Temporary modification for reading catalog of modules.
+
+2003-05-19 13:57 nri
+
+ * resources/CatalogModuleGeneral.xml:
+
+ NRI : Remove modules declaration.
+
+2003-05-19 12:02 jroy
+
+ * salome_adm/unix/make_commence.in:
+
+ Correction sur l'emplacement des idl dans le repertoire d'install de KERNEL.
+
+2003-05-16 17:59 nri
+
+ * src/ModuleCatalog/: SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ SALOME_ModuleCatalog_Handler.cxx,
+ SALOME_ModuleCatalog_Handler.hxx,
+ SALOME_ModuleCatalog_Parser.hxx, SALOME_ModuleCatalog_impl.cxx:
+
+ NRI : Add componentusername.
+
+2003-05-16 17:55 nri
+
+ * idl/SALOME_ModuleCatalog.idl:
+
+ NRI : Add componentusername.
+
+2003-05-16 14:53 jroy
+
+ * build_configure, salome_adm/unix/make_commence.in:
+
+ Modification des options de l'appel à la commande aclocal.
+
+2003-05-16 12:27 secher
+
+ * resources/Plugin:
+
+ file Plugin was added on branch BR_V300_lcrm on 2005-07-19 09:01:58 +0000
+
+2003-05-16 12:27 cvsadmin
+
+ * Makefile.in, build_configure, configure.in.base, bin/README,
+ bin/VERSION, bin/allkill, bin/allkillWithPort, bin/config.in,
+ bin/insertComputerRessourcesCatalog.sh.in, bin/omniORB.cfg.in,
+ bin/runClientDataTypeCatalog.in, bin/runClientModuleCatalog.in,
+ bin/runClientRessourcesCatalog.in, bin/runDataTypeCatalog.in,
+ bin/runIDLparser.in, bin/runLoader.in, bin/runModuleCatalog.in,
+ bin/runMono.in, bin/runNS.sh, bin/runNSWithPort.sh,
+ bin/runNotify.sh, bin/runRessourcesCatalog.in,
+ bin/runSALOMEDS_Client.in, bin/runSalome.in,
+ bin/runSalomeDesktop.in, bin/runSalomeServers.in,
+ bin/runSalomeWithPort.in, bin/runSession.in,
+ bin/runTestContainer.in, bin/runTestContainerPy.in,
+ bin/runTestContainerPy2.in, bin/runTestLifeCycle.in,
+ bin/runTestMED.in, bin/runTestNotification.in, bin/showNS.in,
+ doc/DevelopersGuide.pdf, doc/DevelopersGuide.ps,
+ doc/Utilitaires_SALOME.doc, doc/Utilitaires_SALOME.pdf,
+ doc/Utilitaires_SALOME.ps, doc/kernel_resources.pdf,
+ doc/kernel_resources.ps, idl/Logger.idl, idl/MPIContainer.idl,
+ idl/MPIObject.idl, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, resources/Application-About.png,
+ resources/Application-Logo.png, resources/Application-Splash.png,
+ resources/CatalogDataType.xml,
+ resources/CatalogModuleGeneral.xml,
+ resources/CatalogModulePersonnel.xml_skel,
+ resources/CatalogRessources.xml, resources/Plugin,
+ resources/Resources, resources/SALOMEDS_Resources,
+ resources/Tools_en.xml, resources/Tools_fr.xml,
+ resources/back.xpm, resources/cascade.png, resources/channel.cfg,
+ resources/close.png, resources/config, resources/copy.png,
+ resources/default.png, resources/dl_delete.png,
+ resources/dl_insert.png, resources/dl_movedown.png,
+ resources/dl_moveup.png, resources/forward.xpm,
+ resources/help.png, resources/home.xpm, resources/new.png,
+ resources/open.png, resources/paste.png,
+ resources/plot2d_dump.png, resources/plot2d_fitall.png,
+ resources/plot2d_fitarea.png, resources/plot2d_legend.png,
+ resources/plot2d_linear.png, resources/plot2d_linear_y.png,
+ resources/plot2d_lines.png, resources/plot2d_log.png,
+ resources/plot2d_log_y.png, resources/plot2d_pan.png,
+ resources/plot2d_points.png, resources/plot2d_settings.png,
+ resources/plot2d_splines.png, resources/plot2d_zoom.png,
+ resources/print.png, resources/redo.png, resources/reset.png,
+ resources/salomeCommonModel.spml, resources/save.png,
+ resources/select1.png, resources/tile.png, resources/uc_add.png,
+ resources/uc_clear.png, resources/uc_current.png,
+ resources/uc_del.png, resources/uc_new.png, resources/undo.png,
+ resources/view_back.png, resources/view_bottom.png,
+ resources/view_camera_dump.png, resources/view_fitall.png,
+ resources/view_fitarea.png, resources/view_front.png,
+ resources/view_glpan.png, resources/view_left.png,
+ resources/view_pan.png, resources/view_reset.png,
+ resources/view_right.png, resources/view_rotate.png,
+ resources/view_top.png, resources/view_triedre.png,
+ resources/view_zoom.png, salome_adm/Makefile.in,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
+ salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4, src/A_LIRE_SALOME,
+ src/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
+ src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
+ src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
+ src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.in,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
+ src/Utils/Utils_Identity.py, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
+ src/Utils/utilities.h, src/Utils/utilities.py:
+
+ Initial revision
+
+2003-05-16 12:27 cvsadmin
+
+ * Makefile.in, build_configure, configure.in.base, bin/README,
+ bin/VERSION, bin/allkill, bin/allkillWithPort, bin/config.in,
+ bin/insertComputerRessourcesCatalog.sh.in, bin/omniORB.cfg.in,
+ bin/runClientDataTypeCatalog.in, bin/runClientModuleCatalog.in,
+ bin/runClientRessourcesCatalog.in, bin/runDataTypeCatalog.in,
+ bin/runIDLparser.in, bin/runLoader.in, bin/runModuleCatalog.in,
+ bin/runMono.in, bin/runNS.sh, bin/runNSWithPort.sh,
+ bin/runNotify.sh, bin/runRessourcesCatalog.in,
+ bin/runSALOMEDS_Client.in, bin/runSalome.in,
+ bin/runSalomeDesktop.in, bin/runSalomeServers.in,
+ bin/runSalomeWithPort.in, bin/runSession.in,
+ bin/runTestContainer.in, bin/runTestContainerPy.in,
+ bin/runTestContainerPy2.in, bin/runTestLifeCycle.in,
+ bin/runTestMED.in, bin/runTestNotification.in, bin/showNS.in,
+ doc/DevelopersGuide.pdf, doc/DevelopersGuide.ps,
+ doc/Utilitaires_SALOME.doc, doc/Utilitaires_SALOME.pdf,
+ doc/Utilitaires_SALOME.ps, doc/kernel_resources.pdf,
+ doc/kernel_resources.ps, idl/Logger.idl, idl/MPIContainer.idl,
+ idl/MPIObject.idl, idl/Makefile.in, idl/SALOMEDS.idl,
+ idl/SALOMEDS_Attributes.idl, idl/SALOME_Component.idl,
+ idl/SALOME_DataTypeCatalog.idl, idl/SALOME_Exception.idl,
+ idl/SALOME_ModuleCatalog.idl, idl/SALOME_Registry.idl,
+ idl/SALOME_RessourcesCatalog.idl, idl/SALOME_Session.idl,
+ idl/SALOME_TestComponent.idl, idl/TestNotif.idl,
+ idl/TypeData.idl, resources/Application-About.png,
+ resources/Application-Logo.png, resources/Application-Splash.png,
+ resources/CatalogDataType.xml,
+ resources/CatalogModuleGeneral.xml,
+ resources/CatalogModulePersonnel.xml_skel,
+ resources/CatalogRessources.xml, resources/Plugin,
+ resources/Resources, resources/SALOMEDS_Resources,
+ resources/Tools_en.xml, resources/Tools_fr.xml,
+ resources/back.xpm, resources/cascade.png, resources/channel.cfg,
+ resources/close.png, resources/config, resources/copy.png,
+ resources/default.png, resources/dl_delete.png,
+ resources/dl_insert.png, resources/dl_movedown.png,
+ resources/dl_moveup.png, resources/forward.xpm,
+ resources/help.png, resources/home.xpm, resources/new.png,
+ resources/open.png, resources/paste.png,
+ resources/plot2d_dump.png, resources/plot2d_fitall.png,
+ resources/plot2d_fitarea.png, resources/plot2d_legend.png,
+ resources/plot2d_linear.png, resources/plot2d_linear_y.png,
+ resources/plot2d_lines.png, resources/plot2d_log.png,
+ resources/plot2d_log_y.png, resources/plot2d_pan.png,
+ resources/plot2d_points.png, resources/plot2d_settings.png,
+ resources/plot2d_splines.png, resources/plot2d_zoom.png,
+ resources/print.png, resources/redo.png, resources/reset.png,
+ resources/salomeCommonModel.spml, resources/save.png,
+ resources/select1.png, resources/tile.png, resources/uc_add.png,
+ resources/uc_clear.png, resources/uc_current.png,
+ resources/uc_del.png, resources/uc_new.png, resources/undo.png,
+ resources/view_back.png, resources/view_bottom.png,
+ resources/view_camera_dump.png, resources/view_fitall.png,
+ resources/view_fitarea.png, resources/view_front.png,
+ resources/view_glpan.png, resources/view_left.png,
+ resources/view_pan.png, resources/view_reset.png,
+ resources/view_right.png, resources/view_rotate.png,
+ resources/view_top.png, resources/view_triedre.png,
+ resources/view_zoom.png, salome_adm/Makefile.in,
+ salome_adm/unix/Doxyfile, salome_adm/unix/F77config.h.in,
+ salome_adm/unix/SALOMEconfig.h.in, salome_adm/unix/depend.in,
+ salome_adm/unix/envScript.in, salome_adm/unix/make_commence.in,
+ salome_adm/unix/make_conclude.in, salome_adm/unix/make_module.in,
+ salome_adm/unix/make_omniorb.in, salome_adm/unix/sstream.in,
+ salome_adm/unix/config_files/ac_cc_warnings.m4,
+ salome_adm/unix/config_files/ac_cxx_bool.m4,
+ salome_adm/unix/config_files/ac_cxx_depend_flag.m4,
+ salome_adm/unix/config_files/ac_cxx_have_sstream.m4,
+ salome_adm/unix/config_files/ac_cxx_mutable.m4,
+ salome_adm/unix/config_files/ac_cxx_namespaces.m4,
+ salome_adm/unix/config_files/ac_cxx_partial_specialization.m4,
+ salome_adm/unix/config_files/ac_cxx_typename.m4,
+ salome_adm/unix/config_files/check_Kernel.m4,
+ salome_adm/unix/config_files/check_Salome.m4,
+ salome_adm/unix/config_files/check_cas.m4,
+ salome_adm/unix/config_files/check_corba.m4,
+ salome_adm/unix/config_files/check_f77.m4,
+ salome_adm/unix/config_files/check_hdf5.m4,
+ salome_adm/unix/config_files/check_htmlgen.m4,
+ salome_adm/unix/config_files/check_java.m4,
+ salome_adm/unix/config_files/check_med2.m4,
+ salome_adm/unix/config_files/check_mico.m4,
+ salome_adm/unix/config_files/check_mpich.m4,
+ salome_adm/unix/config_files/check_omniorb.m4,
+ salome_adm/unix/config_files/check_opengl.m4,
+ salome_adm/unix/config_files/check_pthreads.m4,
+ salome_adm/unix/config_files/check_pyqt.m4,
+ salome_adm/unix/config_files/check_qt.m4,
+ salome_adm/unix/config_files/check_qwt.m4,
+ salome_adm/unix/config_files/check_sip.m4,
+ salome_adm/unix/config_files/check_swig.m4,
+ salome_adm/unix/config_files/check_vtk.m4,
+ salome_adm/unix/config_files/config.guess,
+ salome_adm/unix/config_files/config.sub,
+ salome_adm/unix/config_files/enable_pthreads.m4,
+ salome_adm/unix/config_files/install-sh,
+ salome_adm/unix/config_files/libtool.m4,
+ salome_adm/unix/config_files/ltconfig,
+ salome_adm/unix/config_files/ltmain.sh,
+ salome_adm/unix/config_files/missing,
+ salome_adm/unix/config_files/mkinstalldirs,
+ salome_adm/unix/config_files/production.m4,
+ salome_adm/unix/config_files/pyembed.m4,
+ salome_adm/unix/config_files/python.m4, src/A_LIRE_SALOME,
+ src/Makefile.in, src/Container/Component_i.cxx,
+ src/Container/Container_i.cxx, src/Container/Makefile.in,
+ src/Container/SALOME_ComponentPy.py,
+ src/Container/SALOME_Component_i.hxx,
+ src/Container/SALOME_Container.cxx,
+ src/Container/SALOME_ContainerPy.py,
+ src/Container/SALOME_Container_i.hxx, src/HDFPersist/HDFOI.hxx,
+ src/HDFPersist/HDFattrClose.c, src/HDFPersist/HDFattrCreate.c,
+ src/HDFPersist/HDFattrOpen.c, src/HDFPersist/HDFattrRead.c,
+ src/HDFPersist/HDFattrWrite.c, src/HDFPersist/HDFattribute.cc,
+ src/HDFPersist/HDFattribute.hxx,
+ src/HDFPersist/HDFcontainerObject.cc,
+ src/HDFPersist/HDFcontainerObject.hxx,
+ src/HDFPersist/HDFconvert.cc, src/HDFPersist/HDFconvert.hxx,
+ src/HDFPersist/HDFdataset.cc, src/HDFPersist/HDFdataset.hxx,
+ src/HDFPersist/HDFdatasetClose.c,
+ src/HDFPersist/HDFdatasetCreate.c,
+ src/HDFPersist/HDFdatasetGetDim.c,
+ src/HDFPersist/HDFdatasetGetSize.c,
+ src/HDFPersist/HDFdatasetGetType.c,
+ src/HDFPersist/HDFdatasetGetnDim.c,
+ src/HDFPersist/HDFdatasetOpen.c, src/HDFPersist/HDFdatasetRead.c,
+ src/HDFPersist/HDFdatasetWrite.c,
+ src/HDFPersist/HDFerrorModeLock.c,
+ src/HDFPersist/HDFexception.hxx, src/HDFPersist/HDFexplorer.cc,
+ src/HDFPersist/HDFexplorer.hxx, src/HDFPersist/HDFfile.cc,
+ src/HDFPersist/HDFfile.hxx, src/HDFPersist/HDFfileClose.c,
+ src/HDFPersist/HDFfileCreate.c, src/HDFPersist/HDFfileMount.c,
+ src/HDFPersist/HDFfileOpen.c, src/HDFPersist/HDFfileUmount.c,
+ src/HDFPersist/HDFgroup.cc, src/HDFPersist/HDFgroup.hxx,
+ src/HDFPersist/HDFgroupClose.c, src/HDFPersist/HDFgroupCreate.c,
+ src/HDFPersist/HDFgroupOpen.c,
+ src/HDFPersist/HDFinternalObject.cc,
+ src/HDFPersist/HDFinternalObject.hxx,
+ src/HDFPersist/HDFnObjects.c, src/HDFPersist/HDFobject.cc,
+ src/HDFPersist/HDFobject.hxx, src/HDFPersist/HDFobjectIdentify.c,
+ src/HDFPersist/HDFobjectType.c, src/HDFPersist/HDFtypes.h,
+ src/HDFPersist/Makefile.in, src/HDFPersist/hdfi.h,
+ src/HDFPersist/test1.c, src/HDFPersist/test2.c,
+ src/HDFPersist/test3.cxx, src/HDFPersist/test4.cxx,
+ src/HDFPersist/test5.cxx, src/HDFPersist/test6.cxx,
+ src/HDFPersist/test7.cxx, src/HDFPersist/test8.cxx,
+ src/HDFPersist/test9.cxx, src/LifeCycleCORBA/LifeCycleCORBA.py,
+ src/LifeCycleCORBA/Makefile.in,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.cxx,
+ src/LifeCycleCORBA/SALOME_LifeCycleCORBA.hxx,
+ src/LifeCycleCORBA/TestLifeCycleCORBA.cxx,
+ src/Logger/Makefile.in, src/Logger/SALOME_Logger_Server.cxx,
+ src/Logger/SALOME_Logger_Server.hxx, src/Logger/SALOME_Trace.cxx,
+ src/Logger/SALOME_Trace.hxx, src/Logger/SALOME_Trace.py,
+ src/MPIContainer/MPIContainer_i.cxx,
+ src/MPIContainer/MPIContainer_i.hxx,
+ src/MPIContainer/MPIObject_i.cxx,
+ src/MPIContainer/MPIObject_i.hxx, src/MPIContainer/Makefile.in,
+ src/MPIContainer/SALOME_MPIContainer.cxx,
+ src/ModuleCatalog/Makefile.in, src/ModuleCatalog/PathPrefix.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Handler.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Parser.hxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_Server.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx,
+ src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx,
+ src/ModuleGenerator/IDLparser.py,
+ src/ModuleGenerator/Makefile.in, src/ModuleGenerator/README,
+ src/ModuleGenerator/testIDLparser.in,
+ src/ModuleGenerator/tests/Truc2Component.idl,
+ src/ModuleGenerator/tests/TrucComponent.idl,
+ src/ModuleGenerator/tests/test1.sh,
+ src/ModuleGenerator/tests/test1b.sh,
+ src/ModuleGenerator/tests/test2.sh,
+ src/ModuleGenerator/tests/test3.sh,
+ src/ModuleGenerator/tests/test4.sh,
+ src/ModuleGenerator/tests/test5.sh,
+ src/NOTIFICATION_SWIG/Makefile.in,
+ src/NOTIFICATION_SWIG/NOTIFICATION.i,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.cxx,
+ src/NOTIFICATION_SWIG/NOTIFICATION_Swig.hxx,
+ src/NamingService/Makefile.in,
+ src/NamingService/SALOME_NamingService.cxx,
+ src/NamingService/SALOME_NamingService.hxx,
+ src/NamingService/SALOME_NamingService.i,
+ src/NamingService/SALOME_NamingServicePy.py,
+ src/NamingService/ServiceUnreachable.cxx,
+ src/NamingService/ServiceUnreachable.hxx,
+ src/Notification/CosNotifyShorthands.h,
+ src/Notification/Makefile.in, src/Notification/NOTIFICATION.cxx,
+ src/Notification/NOTIFICATION.hxx,
+ src/Notification/NOTIFICATION_Consumer.cxx,
+ src/Notification/NOTIFICATION_Consumer.hxx,
+ src/Notification/NOTIFICATION_Supplier.cxx,
+ src/Notification/NOTIFICATION_Supplier.hxx,
+ src/Registry/Makefile.in, src/Registry/RegistryConnexion.cxx,
+ src/Registry/RegistryConnexion.hxx,
+ src/Registry/RegistryService.cxx,
+ src/Registry/RegistryService.hxx,
+ src/Registry/SALOME_Registry_Server.cxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/Handle_SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/Makefile.in, src/SALOMEDS/SALOMEDS.cdl,
+ src/SALOMEDS/SALOMEDS_AttLong_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttLong_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeComment_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeDrawable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeExpandable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeIOR_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeLocalID_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeName_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePersistentRef_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePixMap_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributePythonObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSelectable_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeSequenceOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeStudyProperties_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfInteger_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfReal_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTableOfString_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTarget_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTextHighlightColor_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.hxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.cxx,
+ src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttributeFactory.hxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_BasicAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_Callback_i.hxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_ChildIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_Client.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapIteratorOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapNodeOfDataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapOfIntegerString_0.cxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel.hxx,
+ src/SALOMEDS/SALOMEDS_DataMapStringLabel_0.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_DrawableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_ExpandableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.cxx,
+ src/SALOMEDS/SALOMEDS_GenericAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_IORAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_IORAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_LocalIDAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cdl,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.cxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.hxx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.ixx,
+ src/SALOMEDS/SALOMEDS_OCAFApplication.jxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_OpenedAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PersRefAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PixMapAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_PythonObjectAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SAttribute_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponentIterator_i.hxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.cxx,
+ src/SALOMEDS/SALOMEDS_SComponent_i.hxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.cxx,
+ src/SALOMEDS/SALOMEDS_SObject_i.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SelectableAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_SequenceOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Server.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.cxx,
+ src/SALOMEDS/SALOMEDS_StudyManager_i.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_StudyPropertiesAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Study_i.cxx,
+ src/SALOMEDS/SALOMEDS_Study_i.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfIntegerAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfRealAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TableOfStringAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TargetAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cdl,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.cxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.hxx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.ixx,
+ src/SALOMEDS/SALOMEDS_TextHighlightColorAttribute.jxx,
+ src/SALOMEDS/SALOMEDS_Tool.cxx, src/SALOMEDS/SALOMEDS_Tool.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseBuilder_i.hxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.cxx,
+ src/SALOMEDS/SALOMEDS_UseCaseIterator_i.hxx,
+ src/TestContainer/Makefile.in,
+ src/TestContainer/SALOME_TestComponentPy.py,
+ src/TestContainer/SALOME_TestComponent_i.cxx,
+ src/TestContainer/SALOME_TestComponent_i.hxx,
+ src/TestContainer/TestComponentPy.py,
+ src/TestContainer/TestContainer.cxx, src/Utils/Makefile.in,
+ src/Utils/OpUtil.cxx, src/Utils/OpUtil.hxx,
+ src/Utils/SALOME_utilities.py, src/Utils/SalomeString.hxx,
+ src/Utils/Utils_CommException.cxx,
+ src/Utils/Utils_CommException.hxx,
+ src/Utils/Utils_CorbaException.hxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.cxx,
+ src/Utils/Utils_DESTRUCTEUR_GENERIQUE.hxx,
+ src/Utils/Utils_Identity.cxx, src/Utils/Utils_Identity.hxx,
+ src/Utils/Utils_Identity.py, src/Utils/Utils_ORB_INIT.cxx,
+ src/Utils/Utils_ORB_INIT.hxx,
+ src/Utils/Utils_SALOME_Exception.cxx,
+ src/Utils/Utils_SALOME_Exception.hxx,
+ src/Utils/Utils_SINGLETON.hxx, src/Utils/duplicate.cxx,
+ src/Utils/utilities.h, src/Utils/utilities.py:
+
+ Initialisation de la base KERNEL avec la version operationnelle de KERNEL_SRC issue de SalomePro1.1a.
+